@charset "UTF-8";

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

body {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif; /* Mincho font for a traditional/premium look */
  background-color: #fff;
  color: #333;
  width: 100%;
  overflow-x: hidden;
}

/* Main Container with Yellow Background and Curve */
.main-bg {
  background-color: #F4D01E; /* Estimated yellow from image0 */
  width: 100%;
  min-height: 80vh;
  /* border-bottom-left-radius: 50% 60px; 
  border-bottom-right-radius: 50% 60px; */
  padding-bottom: 60px; /* Space for the curve */
  position: relative;
  overflow: hidden; /* Ensure slider respects the curve */
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align to top */
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000; /* Above slider and other content */
  transition: background-color 0.3s;
  background-color: rgba(255, 255, 255, 0.95);
}

.product-list-page {
  padding-top: 120px;
}

.logo-area {
  margin-top: 10px;
}

.logo-area img {
  height: 40px; /* Adjust based on actual SVG size */
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 15px;
}

.nav-btn {
  display: block;
  width: 60px; /* Adjust size to match image */
  height: auto;
  transition: opacity 0.3s;
}

.nav-btn:hover {
  opacity: 0.8;
}

.nav-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 10; /* Above slider */
}

.hero-text img {
  display: inline-block;
  width: 70px;
  height: auto;
}

.nav-btn {
  display: block;
  width: 60px; /* Adjust size to match image */
  height: auto;
  transition: opacity 0.3s;
}

.nav-btn:hover {
  opacity: 0.8;
}

.nav-btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }
  
  .logo-area img {
    height: 25px;
  }
  
  .nav-btn {
    width: 45px;
  }
}

/* News Section */
.news-section {
  background-color: #fff;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  position: relative;
  z-index: 5;
}

.news-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.news-label {
  color: #C5A059;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: "Times New Roman", serif;
}

.news-text {
  color: #333;
}

.news-arrow {
  color: #C5A059;
  text-decoration: none;
  font-weight: bold;
  font-family: monospace;
}

/* Ranking Section */
.ranking-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 10px;
  font-family: "Yu Mincho", serif;
  letter-spacing: 2px;
}

.section-header .subtitle {
  color: #C5A059;
  font-family: "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
  margin-bottom: 60px;
  align-items: start;
}

.ranking-item {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ranking-badge {
  position: absolute;
  top: -15px;
  left: -10px;
  width: 45px;
  height: 50px;
  background-color: #C5A059;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", serif;
  font-size: 14px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 2;
  font-weight: bold;
}

.ranking-badge.badge-1 { background-color: #C5A059; }
.ranking-badge.badge-2 { background-color: #A8A8A8; }
.ranking-badge.badge-3 { background-color: #C48F6F; }
.ranking-badge.badge-4 { background-color: #D6C68B; }

.item-image {
  width: 100%;
  max-width: 220px;
  margin-bottom: 20px;
  position: relative;
}

.item-image img {
  width: 100%;
  height: auto;
  display: block;
}

.item-name {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: normal;
  color: #333;
}

.item-name .small-text {
  font-size: 12px;
  display: block;
  margin-top: 8px;
  color: #666;
  line-height: 1.5;
  text-align: left;
}

.item-price {
  color: #C5A059;
  font-size: 22px;
  font-family: "Times New Roman", serif;
  letter-spacing: 1px;
}

.item-price .tax {
  font-size: 12px;
  color: #C5A059;
  margin-left: 5px;
}

.item-note-top {
  font-size: 10px;
  color: #999;
  text-align: right;
  margin-bottom: 5px;
  width: 100%;
  max-width: 220px;
}

.view-all-btn-container {
  margin-top: 20px;
}

.view-all-btn {
  display: inline-block;
  padding: 15px 80px;
  border: 1px solid #C5A059;
  color: #C5A059;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.view-all-btn:hover {
  background-color: #C5A059;
  color: #fff;
}

/* Responsive adjustments for Ranking */
@media (max-width: 768px) {

.main-bg {
margin-top: 80px;}

  .ranking-grid {
    gap: 40px 15px;
  }
  
  .ranking-badge {
    left: 0;
    width: 40px;
    height: 45px;
    font-size: 12px;
  }
  
  .item-name {
    font-size: 13px;
  }
  
  .item-price {
    font-size: 18px;
  }
  
  .view-all-btn {
    padding: 12px 60px;
  }
}

/* About Section */
.about-section {
  background-color: #fff;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.about-image {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.about-vertical-text {
  position: absolute;
  top: 50px;
  right: 30px;
  writing-mode: vertical-rl;
  font-size: 32px;
  color: #C5A059;
  letter-spacing: 8px;
  font-family: "Yu Mincho", serif;
  font-weight: normal;
  line-height: 1.2;
}

.about-vertical-text span {
  display: inline-block;
}

.about-content {
  flex: 1;
  max-width: 500px;
}

.about-title {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 30px;
  line-height: 1.8;
  font-family: "Yu Mincho", serif;
  color: #333;
}

.about-text {
  font-size: 15px;
  line-height: 2;
  color: #333;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for About */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-image {
    max-width: 100%;
  }
  
  .about-vertical-text {
    font-size: 24px;
    right: 20px;
    top: 30px;
    letter-spacing: 6px;
  }
  
  .about-content {
    max-width: 100%;
  }
  
  .about-title {
    font-size: 22px;
  }
  
  .about-text {
    font-size: 14px;
  }
}

/* Honey Types Section */
.honey-types-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.honey-types-container {
  max-width: 900px;
  margin: 0 auto;
}

.honey-types-title {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 1.6;
  font-family: "Yu Mincho", serif;
  color: #333;
}

.honey-types-subtitle {
  color: #C5A059;
  font-family: "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 40px;
}

.honey-types-description {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 2;
  color: #333;
}

.honey-types-description p {
  margin-bottom: 15px;
}

.honey-types-description p:last-child {
  margin-bottom: 0;
}

.honey-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.honey-card {
  position: relative;
  padding: 60px 30px 30px;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.honey-card-bg-icon {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

.honey-card-bg-icon svg {
  width: 100%;
  height: 100%;
}

.honey-card-pink {
  background: linear-gradient(135deg, #E89BB5 0%, #D77A9A 100%);
}

.honey-card-yellow {
  background: linear-gradient(135deg, #F5C842 0%, #E8B520 100%);
}

.honey-card-coral {
  background: linear-gradient(135deg, #F0A49A 0%, #E88B7D 100%);
}

.honey-card-sage {
  background: linear-gradient(135deg, #B8C5B0 0%, #A0AE98 100%);
}

.honey-card-name {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 5px;
  font-family: "Yu Mincho", serif;
  letter-spacing: 2px;
}

.honey-card-name-en {
  font-size: 14px;
  font-family: "Times New Roman", serif;
  margin-bottom: 15px;
  opacity: 0.9;
  letter-spacing: 1px;
}

.honey-card-detail {
  font-size: 13px;
  opacity: 0.95;
  line-height: 1.6;
}

/* Responsive adjustments for Honey Types */
@media (max-width: 768px) {
  .honey-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .honey-types-title {
    font-size: 24px;
  }
  
  .honey-types-description {
    font-size: 14px;
  }
  
  .honey-card {
    min-height: 200px;
    padding: 50px 25px 25px;
  }
  
  .honey-card-name {
    font-size: 28px;
  }
}

/* Honey Life Blog Section */
.honey-life-section {
  background-color: #F5F0E8;
  padding: 80px 20px;
  text-align: center;
}

.honey-life-container {
  max-width: 800px;
  margin: 0 auto;
}

.honey-life-title {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 1.6;
  font-family: "Yu Mincho", serif;
  color: #333;
}

.honey-life-subtitle {
  color: #C5A059;
  font-family: "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 30px;
}

.honey-life-description {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 50px;
}

.blog-list-container {
  background-color: #fff;
  padding: 40px 50px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-list-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.blog-icon {
  width: 30px;
  height: 30px;
  fill: #C5A059;
}

.blog-list-title {
  font-size: 22px;
  font-weight: normal;
  color: #C5A059;
  font-family: "Yu Mincho", serif;
  letter-spacing: 1px;
}

.blog-posts {
  list-style: none;
  margin-bottom: 40px;
}

.blog-post-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dotted #ddd;
  text-align: left;
}

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

.blog-date {
  color: #C5A059;
  font-size: 14px;
  font-family: "Times New Roman", serif;
  min-width: 120px;
  letter-spacing: 0.5px;
}

.blog-title {
  color: #333;
  font-size: 15px;
  flex: 1;
}

.blog-btn-container {
  text-align: center;
}

.blog-btn {
  display: inline-block;
  padding: 12px 60px;
  border: 2px solid #C5A059;
  border-radius: 30px;
  color: #C5A059;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.blog-btn:hover {
  background-color: #C5A059;
  color: #fff;
}

/* Responsive adjustments for Honey Life */
@media (max-width: 768px) {
  .blog-list-container {
    padding: 30px 25px;
  }
  
  .blog-post-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .blog-date {
    min-width: auto;
    font-size: 13px;
  }
  
  .blog-title {
    font-size: 14px;
  }
  
  .blog-btn {
    padding: 10px 50px;
  }
}

/* Footer */
.footer {
  background-color: #fff;
  padding: 60px 20px 40px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-nav {
  margin-bottom: 40px;
}

.footer-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-nav-row:last-child {
  margin-bottom: 0;
}

.footer-link {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #C5A059;
}

.footer-separator {
  color: #999;
  font-size: 14px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #C5A059;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: #C5A059;
  transition: fill 0.3s;
}

.social-icon:hover {
  background-color: #C5A059;
}

.social-icon:hover svg {
  fill: #fff;
}

.footer-logo-section {
  margin-top: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-logo-text {
  font-size: 32px;
  font-family: "Times New Roman", serif;
  color: #C5A059;
  letter-spacing: 2px;
  font-weight: bold;
}

.footer-company {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.footer-phone {
  font-size: 28px;
  font-family: "Times New Roman", serif;
  color: #333;
  letter-spacing: 2px;
  font-weight: normal;
}

/* Responsive adjustments for Footer */
@media (max-width: 768px) {
  .footer-nav-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-separator {
    display: none;
  }
  
  .footer-link {
    font-size: 13px;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
  }
  
  .social-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .footer-logo img {
    height: 40px;
  }
  
  .footer-logo-text {
    font-size: 24px;
  }
  
  .footer-phone {
    font-size: 22px;
  }
}

/* Beekeeping Experience Section */
.experience-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.experience-container {
  max-width: 1000px;
  margin: 0 auto;
}

.experience-title {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 1.6;
  font-family: "Yu Mincho", serif;
  color: #333;
}

.experience-subtitle {
  color: #C5A059;
  font-family: "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 30px;
}

.experience-catchphrase {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 50px;
  font-family: "Yu Mincho", serif;
  color: #333;
}

.experience-highlight {
  color: #C5A059;
  font-weight: bold;
  font-size: 24px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.experience-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

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

.experience-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.experience-content {
  padding: 25px 20px;
  text-align: left;
  position: relative;
}

.experience-number {
  position: absolute;
  top: -25px;
  right: 20px;
  background-color: #C5A059;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", serif;
  font-size: 18px;
  font-weight: bold;
  border: 3px solid #fff;
}

.experience-name {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  font-family: "Yu Mincho", serif;
  padding-bottom: 10px;
  border-bottom: 2px solid #F5F0E8;
}

.experience-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

/* Responsive adjustments for Experience */
@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .experience-image {
    height: 220px;
  }
}

/* Honey Bee Owner Section */
.owner-section {
  background-color: #F9F9F9;
  padding: 80px 20px;
  text-align: center;
}

.owner-container {
  max-width: 1000px;
  margin: 0 auto;
}

.owner-title {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 1.6;
  font-family: "Yu Mincho", serif;
  color: #333;
}

.owner-subtitle {
  color: #C5A059;
  font-family: "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 40px;
}

.owner-intro {
  margin-bottom: 60px;
  line-height: 2.2;
  font-size: 15px;
  color: #333;
}

.owner-plans-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.owner-plan-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  width: 45%;
  min-width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}

.premium-plan {
  border: 2px solid #C5A059;
}

.premium-plan::before {
  content: "おすすめ";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #C5A059;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.standard-plan {
  border: 1px solid #ddd;
}

.plan-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.plan-title {
  font-size: 24px;
  font-family: "Yu Mincho", serif;
  color: #333;
  margin-bottom: 10px;
}

.plan-desc {
  font-size: 14px;
  color: #666;
}

.plan-price {
  margin-bottom: 30px;
  color: #C5A059;
  font-family: "Times New Roman", serif;
}

.price-label {
  font-size: 14px;
  color: #333;
  margin-right: 5px;
}

.price-amount {
  font-size: 36px;
  font-weight: bold;
}

.price-unit {
  font-size: 16px;
  margin-left: 5px;
}

.plan-benefits {
  text-align: left;
  margin-bottom: 30px;
  flex: 1;
}

.benefits-title {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
  font-weight: bold;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #C5A059;
  font-size: 12px;
  top: 2px;
}

.plan-btn-container {
  margin-top: auto;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 15px 0;
  background-color: #C5A059;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.plan-btn:hover {
  background-color: #b08d4d;
}

.standard-plan .plan-btn {
  background-color: #888;
}

.standard-plan .plan-btn:hover {
  background-color: #666;
}

/* Responsive adjustments for Owner Section */
@media (max-width: 768px) {
  .owner-plan-card {
    width: 100%;
  }
  
  .owner-intro {
    text-align: left;
    padding: 0 10px;
  }
}


/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex;
  justify-content: flex-end;
}

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

.menu-container {
  width: 300px;
  height: 100%;
  background-color: #fff;
  padding: 60px 40px;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.menu-overlay.active .menu-container {
  transform: translateX(0);
}

.menu-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.menu-list li {
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.menu-list li a {
  text-decoration: none;
  color: #333;
  font-family: "Yu Mincho", serif;
  font-size: 16px;
  display: block;
  transition: color 0.3s;
}

.menu-list li a:hover {
  color: #C5A059;
}
