@charset "UTF-8";

/* フォントの読み込み（例: Google Fonts） */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500&display=swap'); */

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f3f2ed;
  /* background-color: #F3F1EC; */
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.mein{
    position:relative;
    
}
/* ヘッダー全体 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* 内側ラッパー */
.header-inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px; /* 左右の余白調整 */
  max-width: 1400px;
}

/* ロゴ */
.logo a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

/* ナビゲーションリスト（PC時） */
.nav {
  display: block;
}

.nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #4C9A2A;
}

/* ハンバーガーメニュー：最初は非表示 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ハンバーガーが active の時（×印） */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* スマホ対応：768px以下 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  text-align: center;
  padding: 0; /* 非表示時はパディングなし */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  z-index: 999;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
}

.nav.active {
  max-height: 300px; /* 中身の高さに応じて調整 */
  opacity: 1;
  padding: 20px 0; /* 表示時にパディング追加 */
}

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 769px){
  .nav{
    display: block !important;
  }
}
/*オーバーレイ背景(最初は非表示)*/
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 900;
    display: none;
}
/*表示状態*/
.overlay.active{
    display: block;
}

.fv {
  background-image: url("../img/soup4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* .fv::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 暗さはここで調整 */
  /*z-index: 0;
} */

.fv-inner {
  position: relative;
  z-index: 1; /* テキストを前面に出す */
}

.fv-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1400px;
  width: 100%;
}

.fv-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  color: #fff;
}

.fv-text .brand {
  font-size: 6rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #fff;
  /* text-shadow: 2px 2px 5px #888; */
}

@media(max-width:480px){
  .fv-text .brand{
    font-size: 3.5rem;
  }
}

.fv-text .catch {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.fv-text .sub {
  font-size: 1rem;
  margin-bottom: 50px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  /* background-color: #eea229; */
  background-color: #4C9A2A;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  opacity: 1;
}

.fv-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.fv-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.buy-button {
  display: inline-block;
  background-color: #4C9A2A;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.buy-button:hover {
  background-color: #3B7D20;
}

/* ポップアップ表示用 */
.buy-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4C9A2A;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 2000;
  font-size: 0.9rem;
}

.buy-popup.show {
  opacity: 1;
  pointer-events: auto;
}

/*ファーストビュー・スマホ版*/
@media (max-width: 768px) {
  .fv {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .fv-inner {
    flex-direction: column;
  }

  .fv-text {
    padding: 10px;
  }

  .fv-text .brand {
    font-size: 5rem;
  }
  

  .fv-image {
    padding: 10px;
  }

  .fv-image img {
    width: 100%;
    height: auto;
  }
}



.product {
  padding: 80px 20px;
 
}

.product-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.product-image {
  flex: 1;
  min-width: 300px;
}

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

.product-text {
  flex: 1;
  min-width: 300px;
}

.product-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 70px;
}

.product-price {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.product-price span {
  font-size: 0.9rem;
  color: #555;
}

.product-desc {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.product-info {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.product-info th,
.product-info td {
  text-align: left;
  padding: 8px 5px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

/* .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #7a9b76;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.8;
} */

/*商品セクション・スマホ版*/
@media (max-width: 768px) {
  .product-inner {
    flex-direction: column;
  }

  .product-text {
    text-align: center;
  }

  .product-info th {
    display: block;
    margin-top: 20px;
    font-weight: bold;
  }

  .product-info td {
    display: block;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  .product,
  .faq,
  .about,
  .story{
    padding: 60px 15px;
  }
}


.story {
  background-color: #F3F1EC;
  padding: 120px 20px;
  text-align: center;
}

.story-inner {
  max-width: 800px;
  margin: 0 auto;
}

.story-title {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.story-copy {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: #777;
  margin-bottom: 30px;
}

.story-text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #3a3a3a;
  margin-bottom: 50px;
}
.story-image{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    object-fit: cover;
}

.faq {

  padding: 100px 20px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  color: #2D2D2D;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #E8E6E1;
  border-radius: 6px;
}

.faq-q {
  font-weight: 500;
  margin-bottom: 10px;
  color: #444;
}

.faq-a {
  font-weight: 300;
  color: #555;
  line-height: 1.7;
}

.about {
  background-color: #F3F1EC;
  padding: 100px 20px;
  text-align: center;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: #2D2D2D;
  margin-bottom: 30px;
}

.about-text {
  font-size: 1rem;
  color: #444;
  line-height: 2;
  letter-spacing: 0.03em;
}

.footer {
  background-color: #E8E6E1;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.75rem;
  color: #777;
}


/*スムーズスクロール*/
html{
    scroll-behavior: smooth;
}