@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #fff;
  line-height: 1.8;
}

/* PC（769px以上）では pc-br 表示、sp-br 非表示 */
.pc-br {
  display: inline;
}
.sp-br {
  display: none;
  
}
    .sp5-br {
    display: none;
  }

/* スマホ（768px以下）では sp-br 表示、pc-br 非表示 */
@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
  .sp-br {
    display: inline;
  }

    .sp5-br {
    display: none;
  }
}

/* スマホ（500px以下）では sp-br 表示、pc-br 非表示 */
@media screen and (max-width: 500px) {
  .pc-br {
    display: none;
  }
  .sp5-br {
    display: inline;
  }
}


.fixed-logo {
    position: fixed;
    top: 0px;
    left: 20%;
    transform: translateX(calc(-50% - 100px));
    width: 100px;
    z-index: 1000;
}

/* ボタン画像の基本スタイル */
.scroll-btn {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* ホバー時：少し拡大＆発光 */
.scroll-btn:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 182, 193, 0.7)); /* ピンク光 */
}

/* 画像のサイズ指定（必要に応じて調整） */
.tokutyo-btn {
  width: 250px; /* 任意のサイズ */
  height: auto;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ホバー時に少し拡大＆ふわっと */
.tokutyo-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


/* ハンバーガーアイコン */
.menu-toggle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 60px;
  z-index: 2000;
  border: 2px solid rgb(206, 184, 161);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
  overflow: hidden; /* アニメ時にはみ出さないように */
}

.menu-toggle span {
  display: block;
  width: 60%;
  height: 2px;
  background-color: rgb(206, 184, 161);
  margin: 3px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ホバー時の各バーアニメーション */
.menu-toggle:hover span:nth-child(1) {
  transform: translateX(-5px);
}

.menu-toggle:hover span:nth-child(2) {
  transform: translateX(5px);
}

.menu-toggle:hover span:nth-child(3) {
  transform: translateX(-5px);
}

/* MOREボタン */
.more-btn {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.more-btn:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 182, 193, 0.6)); /* ピンクの光 */
}

.more_btn {
  width: 180px; /* サイズ調整可能 */
  height: auto;
  display: block;
  margin: 0 auto;
}


/* ナビゲーション帯 */
.top-nav {
  position: fixed;
  top: -100px; /* 非表示状態（上に隠す） */
  left: 0;
  width: 100%;
  background-color: black;
  color: #fff;
  transition: top 0.4s ease;
  z-index: 1500;
}

.top-nav.active {
  top: 0; /* 表示状態 */
}

.top-nav .nav-inner {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}


.nav-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  margin-right: 20px;
}

.top-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.top-nav ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 4px;
  transition: color 0.3s;
  font-weight: 100;
  letter-spacing: 0.05em;
}

.top-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.top-nav ul li a:hover::after {
  width: 100%; /* 左から右に線が伸びる */
}


/* オーバーレイ（クリックで閉じる用） */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1400;
}

.menu-overlay.active {
  display: block;
}

.tgr-container01 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 40px;
    margin-bottom: 40px;
}

.tgr-title {
      font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}

.top-tgr {
    border: 1px solid #000;
    padding: 30px;
    border-radius: 0;
    box-sizing: border-box;
    width: 80%;
}
#TGR {
  margin-top: 50px;
}


/* ------------------------------
   Sections
------------------------------ */
.section {
  padding: 0px 0px 0px;
  margin: 0 auto;
}

.section-title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.05em;
  color: rgb(206,184,161);
}

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

h2 {
    color: rgb(227, 168, 173);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3;
    margin-top: 10px;
    text-align: left;
}


h3 {
    color: rgb(227, 168, 173);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
    margin-top: 50px;
    text-align: center;
    margin-bottom: 0;
}

h4 {
    color: rgb(206,184,161);
    font-weight: 300;
    font-size: 20px;
    margin: 0px 0px;
}

/* TOP */
.top-section {
  padding-top: 0px;
  text-align: left;
}

.top-container01 {
  position: relative;
}

.top-container01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9px; /* ラインの太さ */
  background-color: rgb(227, 168, 173); /* ← C10 M40 Y30 K0 */
}

/* ===== スライダー設定 ===== */

.slider {
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  /* 高さを自動で画像に合わせる */
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active {
  opacity: 1;
}
/* 重要：擬似要素でスライダー高さを確保 */
.slider::before {
  content: "";
  display: block;
  padding-top: calc(719 / 1300 * 100%); /* 画像の縦横比比率で高さ確保 */
}


.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ドット */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #fff;
}



/* タイトル */
.main-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.3;
  margin-top: 90px;
}

/* タイトル下にブラウザ幅いっぱいの線 */
.main-title::after {
    content: "";
    position: absolute;
    left: 125%;
    transform: translateX(-50%);
    width: 101vw;
    height: 7px;
    background-color: rgb(206, 184, 161);
    bottom: -25px;
    z-index: -1;
    pointer-events: none;
}

.TOP_text {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: left;
    color: RGB(51, 51, 51);
    line-height: 2.5;
}

.text {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: left;
    color: RGB(51, 51, 51);
    width: 440px;
}

.img-main {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 1650px;
}

/* Section01 */

/* ▼ section01全体に背景画像を適用（ブラウザ全幅） */
.section01 {
  background: url("images/genmai_bg01.jpg") no-repeat;
  background-size: cover;
  background-position: center 740px; /* 上から200pxの位置を基準に */
  width: 100%;
  padding: 100px 0;
    position: relative; /* 疑似要素を配置するために必要 */
}

/* 下部少し上に横線 */
.section01::after {
content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: rgba(230, 184, 179, 0.6);
}

/* ▼ 内部コンテンツは1100pxで中央寄せ */
.section01 .SC01-container {
  max-width: 1100px;
  margin: 0 auto;
}


.section01 .image-area {
  max-width: 1100px;
}
.section01 .image-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.SC01-container01 .sbr {
    width: 80%;
}


.section01 .image {
  width: 530px;
  height: auto;
  margin: 0 0px;
}

.SC01-container01 {
  display: flex;
  flex-direction: column;   /* 縦並びを維持 */
  align-items: center;      /* 子要素（画像など）を左右中央寄せ */
  justify-content: center;  /* 必要に応じて縦方向も中央に */
  margin: 0 auto;           /* ブロック自体を中央に */
  text-align: center;       /* テキストがある場合に中央揃え */
}


.SC01-container01 .sty {
  display: block;
  margin-left: 0;          /* 左端揃え */
  margin-right: auto;      /* 自動で右側余白 */
}

.SC01-container01 .sbr {
  display: block;
  margin: 0 auto;          /* 中央揃え */
  width: 1000px;
}

.pink-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(227, 168, 173);
    color: white;
    padding: 17px 15px;
    border-radius: 2px;
    margin-right: 10px;
    font-weight: bold;
    line-height: 1;
}



.SC01-container01 .image {
  width: 80%;
  height: auto;
}

.OB_txt {
    display: flex;
    height: 55px;
    font-size: 25px;
}

.SC01-container02 {
    display: flex;
    margin-top: 80px;
    gap: 30px;
}
.SC01-container03 {
    display: flex;
    margin-top: 70px;
    gap: 30px;
}
.SC01-container04 {
  display: flex;
  justify-content: center; /* 横方向センター */
  align-items: flex-start;
  gap: 20px;               /* 要素の間の余白 */
  max-width: 1100px;       /* 横幅を制限（必要に応じて変更） */
  margin: 0 auto;          /* ページ中央寄せ */
}

.SC01-container04-01 {
  flex: 1;
  text-align: left;
}

.SC01-container04-02 {
  flex: 1;
  text-align: center;
}

.SC01-container04 .image {
  max-width: 100%;
  height: auto;
}

.SC01-container04 .text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}


.SC01-container04-03 {
  text-align: center; /* 親に中央寄せ指示 */
}

.genmai_meritto {
    margin-top: 70px;
    max-width: 950px;
    display: inline-block;
    height: auto;
}

.SC01-container04-01 img {
          margin-left: 150px;
}


.highlight {
  font-weight: bold;                  /* 太字 */
  color: rgb(230,184,179);            /* 指定カラー */
}

.rice-list {
  list-style: none;       /* デフォルトのリストマークを消す */
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #000000;         /* 文字は黒 */
  font-weight: 600;
}

.rice-list span {
  margin-right: 3px;      /* ■と文字の間隔 */
}

.rice-list li {
  margin-bottom: -7px;     /* 行間 */
}

/* 玄米 */
.brown-rice {
  color: rgb(206,184,161);
}

/* 白米 */
.white-rice {
  color: rgb(230,184,179);
}

/* Section02 */
.section02 {
    background-color: rgba(230, 184, 179, 0.6);
    background-image: url(images/ellipse-left_w.svg);
    background-repeat: no-repeat;
    background-position: -230px -300px;
    background-size: 60% auto;
    padding: 70px 0px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 40px 0;
  gap: 20px;
}

.feature-item {
  width: 30%;
  text-align: center;
}

.feature-item p {
  font-size: 0.95rem;
  margin-top: 10px;
}

.feature-item .image {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.SC02-title {
    font-weight: lighter;
    font-size: 40px;
    text-align: center;
    color: black;
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.SC02-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 200px;
  flex-wrap: wrap; /* 小さい画面で縦並び */
  margin-bottom: 0px; /* 下の画像との間隔 */
}

.SC02-left {
  flex: 1;
  min-width: 250px;
}

.SC02-left_p {
    font-size: 110px;
    font-weight: bold;
    line-height: 1;
    margin: 0 0;
}

.SC02-right {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.SC02-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgb(230,184,179);
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin-top: 70px;
  transition: all 0.3s ease; /* ホバーアニメーション */
}

.SC02-btn:hover {
  background-color: rgb(240,194,189); /* 少し明るく */
  transform: translateY(-2px);        /* ちょっと浮かせる */
  box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* 軽く影をつける */
}



.SC02-right-text {
  text-align: left;
  color: white;
  font-size: 30px;
  margin-top: 50px;
}

/* 画像 */
.SC02-image-wrapper {
  text-align: center; /* 画像を中央寄せ */
}

.SC02-image-wrapper .image {
  width: 100%;
  max-width: 1200px;
  height: auto;
}


/* 背景画像を追加 */
.SC02-h1::before {
    content: "";
    position: absolute;
    top: 220%;
    left: 90%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 250px;
    background: url(images/SC02_Komeimage.svg) no-repeat center;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
}

.SC02-h1 {
  font-size: 30px;
  text-align: left;
  color: black;
  font-weight: 600;
  margin-bottom: 0px;
  position: relative; 
  z-index: 1;
  margin-top: 0px;
  margin-top: 0px;
}

.SC02-h2 {
  font-size: 20px;
  text-align: left;
  color: RGB(51, 51, 51);
  margin-bottom: 70px;
  margin-top: 0px;
}

.SC02-container01 {
  display: flex;
  flex-direction: column;  /* 縦並び */
  align-items: center;     /* 子要素（文字ブロック）を左右中央に配置 */
  gap: 20px;               /* 画像と文字ブロックの間隔 */
  margin-top: 0px;
  padding-top: 70px;
}

.SC02-container01 img {
  max-width: 900px;
  width: 90%;
}

.SC02-tokutyo {
  margin: 0 0;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.SC02-text-block {
  text-align: left;        /* 文字は左揃え */
  max-width: 900px;        /* 好みで横幅制限 */
}



.SC02-container02 ,.SC02-container03, .SC02-container04,.SC02-container05 {
  display: flex;
  justify-content: center; /* 左右中央寄せ */
  align-items: center;     /* ←上から中央に変更 */
  margin-bottom: 0px;
  gap: 60px;
  width: 100%;
}

.SC02-container02 img,.SC02-container03 img, .SC02-container04 img,.SC02-container05 img {
    font-size: 55px;
    text-align: left;
    color: rgb(206, 184, 161);
    font-weight: 600;
    margin: 0px 0px 20px 0;
    line-height: 0.7;
}


.SC02-number {
    font-size: 55px;
    text-align: left;
    color: white;
    font-weight: 600;
    margin: 0px 0px 20px 0;
    line-height: 0.7;
}
.SC02-Midashi {
  font-size: 40px;
  text-align: left;
  color: black;
  font-weight: 600;
  margin: 0px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.SC02-KoMidashi { 
    font-size: 19px;
    text-align: left;
    color: rgb(230, 184, 179);
    font-weight: 600;
    margin: 0px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.SC02-text {
  font-size: 16px;
  text-align: left;
  color: RGB(51, 51, 51);
  font-weight: 300;
  margin: 0px;
}

.SC02-container02-02 {
  width: 35vw;
    display: flex;
  flex-direction: column;   /* 縦方向に並べる */
  justify-content: center;  /* 上下中央揃え */
  align-items: flex-start;  /* 左寄せ（中央寄せにしたいなら center） */
}

.SC02-more-btn {
  text-align: center;      /* 横方向中央揃え */
  margin-top: 30px;        /* 上との間隔（お好みで調整） */
}

.SC02-more-btn .more_btn {
  width: 180px;            /* ボタンサイズ調整（SVGなので自由に） */
  height: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.SC02-more-btn .more_btn:hover {
  opacity: 0.7;            /* ホバー時の軽い反応 */
}

.SC02-more-btn a {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.SC02-more-btn a:hover {
  transform: scale(1.05); /* 少し大きく */
  opacity: 0.9;           /* 少し薄く */
}

.more_btn {
  display: block;
  width: 180px; /* サイズ調整可 */
  height: auto;
}



/* Section03 */

.section03 {
  position: relative; /* 疑似要素を配置するために必要 */
}

/* 上部に横線 */
.section03::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-color: rgba(230, 184, 179, 0.6);
      z-index: 1;
}



.section03 .process {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.section03 .image {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 20px auto;
}

.SC03-container {
  display: flex;
  flex-direction: column;
  align-items: center;      /* 横方向中央揃え */
  justify-content: center;  /* 縦方向中央揃え（必要に応じて） */
  text-align: center;
}

.SC03-wrapper {
  display: flex;
  align-items: flex-end; /* 下揃え（ここがポイント） */
  gap: 8px;
      margin-top: 50px;
}

.SC03-tx01 {
    background-color: rgb(206, 184, 161);
    color: #fff;
    font-size: 40px;
    padding: 0px 5px 2px 15px;
    border-radius: 1px;
    margin: 0 0 0 -5px;
    line-height: 1.3;
}

.SC03-tx02 {
  color: rgb(206, 184, 161);
  font-size: 40px;
  margin: -5px -2px;
}

.section-title {
  font-size: 60px;
  margin-top: 8px; /* 見出しとの間隔を調整 */
  line-height: 0.9;
}

.section-title02 {
  font-size: 60px;
  margin-top: 60px; /* 見出しとの間隔を調整 */
  line-height: 1.1;
  color: rgb(206, 184, 161);
}

.SC03-contents01 {
  position: relative; /* ボックス重ねるため必須 */
  display: flex;      /* ←追加 */
  justify-content: center; /* 横方向中央寄せ */
}

.SC03-contents0101 {
  position: relative;      /* ボックス重ねるため必須 */
  display: flex;           /* 中の要素を横並び */
  justify-content: center; /* 中の要素は横並びのまま中央寄せ */
  gap: 40px;
  margin: 30px auto 0 auto; /* 上30px、左右自動で中央寄せ */
  max-width: 1000px;
}

.SC03-contents04-image img {
    width: 100%;
    max-width: 394px;
    height: auto;
    display: block;
    border-radius: 0;
}


.SC03-contents01-text {
    position: absolute;
    left: 20px;   /* 写真の左からの距離 */
    bottom: 20px; /* 写真の下からの距離 */
    background-color: rgb(230, 184, 179); /* ボックス背景 */
    outline: 2px solid rgb(230, 184, 179); /* 枠線 */
    outline-offset: 4px; /* 枠とボックスの間の隙間 */
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    max-width: 700px;
    box-sizing: border-box;
    margin-top: 20px;
}

.SC03-contents01-text02 {
    position: absolute;
    right: 20px;   /* 写真の左からの距離 */
    bottom: 20px; /* 写真の下からの距離 */
    background-color: rgb(230, 184, 179); /* ボックス背景 */
    outline: 2px solid rgb(230, 184, 179); /* 枠線 */
    outline-offset: 4px; /* 枠とボックスの間の隙間 */
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    max-width: 700px;
    box-sizing: border-box;
    margin-top: 20px;
}


.SC03-ct-RyouriMei {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.SC03-ct-Setumei {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.SC03-contents01-text img {
  max-width: 350px;
}

.SC03-contents01-title {
  font-size: 28px;
  margin-bottom: 12px;
  color: rgb(206, 184, 161);
  line-height: 1.3;
  margin-left: 20px;
}

.SC03-contents01-description {
    font-size: 15px;
    line-height: 2.2;
    margin: 0px 0px 50px 0px;
    color: RGB(51, 51, 51);
}

.SC03-contents01-text .more_btn {
    margin-left: 7vw;
}

.SC03-contents01-image {
  display: flex;       /* ←追加 */
  justify-content: center; /* 画像を中央寄せ */
}

.SC03-contents01-image img {
    width: 1000px;
    height: auto;
    display: block;
    max-width: 1300px;
    margin-top: 30px;
}



.SC03-ct-RyouriMei {
  color: white;
  font-size: 21px;
  font-weight: 600;
  margin: 0;
}

.SC03-ct-Setumei {
  color: #333333;  /* 濃いグレー */
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}



.SC03-contents02 {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1000px;
    margin: 10px auto;
    padding: 50px 0px;
    position: relative;
    border-radius: 350px;
    color: #000;
    box-sizing: border-box;
}

/* テキスト部分（左側） */
.SC03-contents02-text {
  flex: 1;
}

.SC03-contents02-title {
  font-size: 28px;
  margin-bottom: 12px;
  color: #000;
  text-align: center;
}

.SC03-contents02-description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* 画像部分（右側） */
.SC03-contents02-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: 0px;
}


.SC03-contents03 {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1000px;
    margin: 10px auto;
    padding: 50px 130px;
    position: relative;
    border: 2px solid rgb(206, 184, 161);
    border-radius: 350px;
    color: #000;
    box-sizing: border-box;
}

/* 画像部分 */
.SC03-contents03-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius:3px;
}

.SC03-contents01-text {
  max-width: 380px;
}


/* テキスト部分 */
.SC03-contents03-text {
  flex: 1;
}

.SC03-contents03-title {
  font-size: 28px;
  margin-bottom: 12px;
  color: rgb(206, 184, 161);
  line-height: 1.3;
}

.SC03-contents03-description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.section03 {
  padding: 0px 0px 0px;
}

.review-box {
    position: relative;
    background-color: rgba(230, 184, 179, 0.5);
    border-radius: 100px;
    padding: 40px 100px 20px 100px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    outline: 2px solid rgba(230, 184, 179, 0.5);
    outline-offset: 4px;
}

.review-title {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #333333;
    padding: 5px 15px;
    border-radius: 100px;
    border: 1.5px solid #333333;
    font-weight: bold;
    z-index: 1;
    letter-spacing: 1.5px;
    font-size: 25px;
}


.review-content {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.review-box .review-content img {
  width: 230px !important;
  height: auto;
  display: inline-block;
}


.review-content img {
  width: 80px;   /* SVGの大きさ調整 */
  height: auto;
}


.sbr-kome {
    font-size: 28px;
    margin-bottom: 12px;
    color: #000;
    text-align: center;
    font-weight: bold;
    line-height: 40px;
}


.sbr-kome p {
margin: 30px 0px 0px;
}




/* 商品画像（サムネイル） */
.modal-gallery {
  text-align: center; /* 画像を中央に配置 */
}

.modal-gallery img {
  width: 90%;      /* 画面幅に応じて自動調整 */
  max-width: 1000px; /* 最大幅1000px */
  cursor: pointer;
  margin: 0px 0;
  display: inline-block;
}
.modal-gallery img:hover {
  opacity: 0.8;
}

/* モーダル背景 */
.modal {
  display: none;
  position: fixed;
  z-index: 99999; /* ← さらに強く */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}


/* 拡大画像 */
.modal-content {
  max-width: 90%;      /* 横幅の最大値 */
  max-height: 90%;     /* 縦幅の最大値 */
  width: auto;         /* 自動で縦横比維持 */
  height: auto;        /* 自動で縦横比維持 */
  border-radius: 5px;
  object-fit: contain; /* 縦横比を保ちながら画像全体を表示 */
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    max-height: 95%;
  }
}


/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 40px;
  color: rgb(206, 184, 161);
  cursor: pointer;
}

.price-info-box {
    background-color: rgba(230, 184, 179, 0.5);
    padding: 20px 100px;
    margin-top: 20px;
    border-radius: 3px;
    line-height: 1.5;
    font-size: 16px;
}

.price-info-box p {
    margin: 0 0;
    letter-spacing: 1px;
}

.free-shipping {
  background-color: rgb(253, 178, 170);
  color: #fff;            /* 白文字 */
  padding: 2px 6px;       /* 少し余白 */
  border-radius: 4px;     /* 角丸（任意） */
  font-weight: bold;       /* 強調 */
  font-size: 0.9em;       /* 小さめに調整 */
}


.old-price {
  text-decoration: line-through;
  color: #777; /* 文字色を少し薄くすると見やすい（任意） */
}


/* price-info-box を相対配置にして上に重ねやすくする */
.price-info-box {
  position: relative;
}

.coming-soon-badge {
position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    font-size: 38px;
    font-weight: bold;
    color: #e60000;
    border: 2px solid #e60000;
  background: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
    z-index: 10;
}





.SC03cd-txts {
    font-size: 13px;
    letter-spacing: 0.5px;
    margin: 6px 0;
}



.about-box {
  border: 1px solid #555;    /* 枠線 */
  padding: 40px 60px;        /* 内側余白 */
  max-width: 800px;          /* 枠の最大幅 */
  margin: 60px auto;         /* ページ中央配置 */
  display: flex;
  justify-content: center;   /* 中身を左右中央寄せ */
  align-items: center;       /* 必要なら縦方向も中央寄せ */
}

.about-inner {
  display: flex;
  align-items: center;       /* ロゴとテキストを縦中央に */
  gap: 40px;                 /* ロゴとテキストの間隔 */
}

.about-logo {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: left;          /* テキストは左揃えのまま */
}


body {
  margin: 0;
  font-family: sans-serif;
  background: url('images/bg_rice.jpg') no-repeat center top;
  background-size: cover;
}

/* class から id に変更 */
#contact-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px 50px;
}

.contact-form-container {
  background-color: rgba(220, 180, 170, 0.9);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
}


.contact-form-container h2 {
    text-align: center;
    color: black;
    font-size: 22px;
    letter-spacing: 4px;
}

.contact-form-container label {
  display: block;
  margin-bottom: 0px;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.contact-form-container button {
  display: block;
  width: 100%;
  background-color: #555;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.company-info {
  text-align: center;
  margin: 20px auto;
  max-width: 600px;
}

/* テーブルに枠線 */
.company-info .company-table {
  width: 100%;
  border-collapse: collapse;  /* 枠線をきれいに表示 */
  border: 2px solid #999;    /* テーブル全体の外枠 */
  border-radius: 8px;        /* 角丸（角を丸く） */
  overflow: hidden;           /* 角丸を有効にする */
  background-color: rgba(255,255,255,0.9); /* 背景色 */
}

.company-info .company-table th,
.company-info .company-table td {
  padding: 10px 20px;
  text-align: left;
  border: none; /* 個別セルの枠線はなし */
      line-height: 20px;
}

/* 販売元と製造元の間に横線 */
.company-info .company-table .divider-row td {
  border-top: 1px solid #999;
  padding: 0;
}





/* セクション背景設定 */
.ellipse-background {
  position: relative;
  background-color: #f8f8f5;
  overflow: hidden;
  z-index: 0;
}

/* 左下の楕円 */
.ellipse-background::before {
    content: "";
    position: absolute;
    left: -110px;
    bottom: -50px;
    width: 650px;
    height: 650px;
    background: url(images/ellipse-left.svg) no-repeat left bottom;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* 右上の楕円 */
.ellipse-background::after {
    content: "";
    position: absolute;
    top: 600px;
    left: 50%;
    transform: translateX(-50%);
    width: 1700px;
    height: 1700px;
    background: url(images/ellipse-right.svg) no-repeat center top;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}











.to-top-container {
  display: flex;
  justify-content: center; /* 中央配置 */
  margin: 40px 0;          /* フッターとの余白 */
}

.to-top-button {
  background: none;
  border: none;
  cursor: pointer;
  opacity: 1;             /* 常に表示 */
  visibility: visible;    /* 常にクリック可能 */
  transition: transform 0.3s; /* hover用 */
}

.to-top-button img {
  width: 56px;
  height: auto;
  transition: transform 0.3s;
}

.to-top-button:hover img {
  transform: scale(1.1);
}

.company-info h2 {
    text-align: center;
    color: black;
    font-size: 22px;
    letter-spacing: 4px;
}

.page-wrapper {
  background-image: url('images/genmai_bg02.jpg');
  background-repeat: no-repeat;
  
  /* 下端から20px上にずらす、左右中央 */
  background-position: center calc(100% - -150px);
  
  /* 幅いっぱいに広げる場合 */
  background-size: 100% auto;
  
  padding: 30px 20px;
}





/* フォームのボックス背景を復活 */
#contact-section .contact-form-container {
  background-color: white ;
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 2px;
  margin: 0 auto 30px; /* セクション内で中央寄せと余白 */

  border: 30px solid rgb(230, 184, 179);
}

/* 会社情報ボックス */
.company-info {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9); /* 元の半透明 */
  padding: 30px 20px;
  border-radius: 2px;
  max-width: 600px;
  margin: 0 auto 30px; /* 中央寄せと余白 */
}

/* 会社情報テーブル */
.company-info table {
  width: 100%;
  border-collapse: collapse;
}

.email-link {
  color: inherit;        /* 親の文字色を継承 */
  text-decoration: none; /* 下線を消す */
  cursor: pointer;       /* マウスカーソルをリンクに */
}




/* Footer */
.footer {
    background-color: rgb(230, 184, 179);
    color: RGB(51, 51, 51);
    text-align: center;
    padding: 5px 0;
    font-size: 0.6rem;
}


/* モーダル基本 */
/* モーダル */
.modal { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); justify-content:center; align-items:center; }
.modal-content { background:#fff; padding:20px; border-radius:2px; max-width:1500px; width:90%; }
.modal-buttons { margin-top:20px; text-align:right; }
.modal-buttons button { margin-left:10px; }














/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 768px) {
  .section {
        padding: 0px 00px 0px;
  }

  .feature-item {
    width: 100%;
  }

  .section01 .image {
    width: 100%;
  }

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

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

  .menu-toggle {
    z-index: 1001;
  }
}

/* 📱 レスポンシブ対応 */
@media (max-width: 768px) {


  .tgr-container01 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 40px;
    margin-bottom: 40px;
    flex-direction: column;
    text-align: center;
}

.tgr-title {
      font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}

.top-tgr {
    border: 1px solid #000;
    padding: 30px;
    border-radius: 0;
    box-sizing: border-box;
    width: 80%;
}
#TGR {
  margin-top: 50px;
}

.tgr02 .about-text {
      font-size: 14px;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
}

.about-logo {
    width: 140px;
    height: auto;
    flex-shrink: 0;
    margin: 0 auto;
}

.dots {
display: none;
}

  .SC03-contents02 {
    flex-direction: column;
    text-align: center;
    padding: 0px 20px;
  }

  .SC03-contents02-image img {
    max-width: 100%;
  }

  .SC03-contents03 {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .SC03-contents03-image img {
    max-width: 100%;
  }

  .SC01-container01 .sbr {
    display: block;
    margin: 0 auto;
    width: 80%;
}

.SC01-container01 .sty {
    display: block;
    margin-left: 40px;
    margin-right: auto;
    width: 50%;
    margin-top: 50px;
}

.SC01-container02-01 {
  margin-left: auto;
  margin-right: auto;
  display: block; /* ブロック要素にする場合 */
}


.SC01-container04 {
  display: flex;             /* Flexboxにする */
  flex-direction: column;    /* 縦並びにする */
  align-items: center;       /* 子要素を横中央に揃える */
  gap: 20px;                 /* 上下の間隔 */
}

.SC01-container04-01,
.SC01-container04-02 {
  width: 100%;               /* 必要に応じて調整 */
  max-width: 600px;          /* 横幅制限、中央に見やすく */
  text-align: center;        /* テキストやボタンを中央揃え */
}

.SC01-container04-02 img {
  width: 100%;
  height: auto;
  display: block;
}
.SC01-container04 .text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    margin: 0 auto;
    max-width: 70%;
}
.SC01-container04-01 img {
    margin-left: 150px;
    margin: 20px auto 0;
}

h2 {
    color: rgb(227, 168, 173);
    font-weight: 600;
    font-size: 5vw;
    line-height: 1.3;
    margin-top: 10px;
    text-align: left;
}

.OB_txt {
    display: flex
;
    height: 55px;
    font-size: 3vw;
}

.genmai_meritto {
    margin-top: 70px;
    max-width: 950px;
    display: inline-block;
    height: auto;
    width: 80%;
}
.SC03-contents0101 {
    position: relative;
    display: flex
;
    justify-content: center;
    gap: 40px;
    margin: 30px auto 0 auto;
    max-width: 1000px;
    flex-direction: column-reverse;
}

.SC03-contents01-description {
    font-size: 2vw;
    line-height: 2.2;
    margin: 0px 0px 50px 0px;
    color: RGB(51, 51, 51);
    width: 70%;
    margin: 0 auto;
}

.SC03-contents01-description {
    font-size: 14px;
    line-height: 2.2;
    margin: 0px 0px 50px 0px;
    color: RGB(51, 51, 51);
    width: 70%;
            margin: 0 auto;
}

h3 {
        color: rgb(227, 168, 173);
        font-weight: 600;
        font-size: 25px;
        line-height: 1.3;
        margin-top: 50px;
        text-align: center;
        margin-bottom: 0;
        margin: 30px 40px 0 40px;
}

.SC03-contents01-image01 {
      width: 80%;
    margin: 0 auto;
}
.SC02-columns {
    display: flex
;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
    margin-bottom: 0px;
    flex-direction: column;
}
.SC02-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(230, 184, 179);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-top: 70px;
    transition: all 0.3s 
ease;
    display: none;
}

.SC03-contents01-image01 img {
  width: 100%;
}
.SC01-container02 {
    display: flex
;
    margin-top: 20px;
    gap: 30px;
}


.fixed-logo {
        position: fixed;
        top: 0px;
        left: 160px;
        /* transform: translateX(calc(-50% - 100px)); */
        width: 65px;
        z-index: 1000;
}

.SC02-left_p {
    font-size: 13vw;
    font-weight: bold;
    line-height: 1;
    margin: 0 0;
}

.SC02-right-text {
    text-align: left;
    color: white;
    font-size: 20px;
    margin-top: 20px;
}

 .SC02-container02 {
    flex-direction: column; /* 縦並び */
    align-items: center;    /* 中央揃え */
  }

  .SC02-container02-02 {   /* 文章部分を上に */
    order: 1;
    width: 90%;             /* 幅調整 */
    text-align: center;     /* 中央揃え */
    margin-bottom: 10px;    /* 下に余白 */
            margin-top: 20px;
  }

  .SC02-container02-01 {   /* 画像部分を下に */
    order: 2;
    width: 90%;
  }

  .SC02-container02-01 img {
    width: 100%;
    height: auto;
    display: block;
  }

  .SC02-title {
    font-weight: lighter;
    font-size: 30px;
    text-align: center;
    color: black;
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    line-height: 1.2;
}


  .SC02-container02 {
        gap: 10px;
  }

    .SC03-contents01-text02 {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;  /* 必要に応じて調整 */
    text-align: center;
  }

    .SC03-contents01-text {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;   /* 必要に応じて調整 */
    text-align: center;
  }

  .review-box {
    flex-direction: column; /* 縦並び */
    padding: 30px 20px 20px 20px; /* スマホ用に調整 */
    gap: 20px; /* 縦の間隔 */
  }

  .review-content {
    flex-direction: column; /* 縦並び */
    align-items: center;    /* 中央揃え */
    gap: 15px;              /* 画像間の縦の隙間 */
  }

  .review-content img {
    width: 80%;       /* スマホで画像幅調整 */
    max-width: 290px; /* 最大幅 */
    height: auto;
    display: block;
  }

  .review-box {
    position: relative;
    background-color: rgba(230, 184, 179, 0.5);
    border-radius: 100px;
    padding: 40px 100px 20px 100px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    outline: 2px solid rgba(230, 184, 179, 0.5);
    outline-offset: 4px;
    width: 30%;
    margin: 80px auto 0;
}
.review-box .review-content img {
    width: 290px !important;
    height: auto;
    display: inline-block;
}
.review-title {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: #333333;
    padding: 5px 15px;
    border-radius: 100px;
    border: 1.5px solid #333333;
    font-weight: bold;
    z-index: 1;
    letter-spacing: 1.5px;
    font-size: 25px;
    white-space: nowrap;
}
  .SC03-contents02 {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
        gap: 0px;
  }

  /* 画像が先にある場合でも文章を上に */
  .SC03-contents02-image {
    order: 2;  /* 下に表示 */
  }
  .SC03-contents02-text {
    order: 1;  /* 上に表示 */
  }

    .company-info table,
  .company-info thead,
  .company-info tbody,
  .company-info tr,
  .company-info th,
  .company-info td {
    display: block;
    width: 100%;
  }

  .company-info th {
    font-weight: bold;
    margin-top: 20px;
  }

  .company-info td {
    margin-bottom: 0px;
  }

  .divider-row {
    display: none; /* 横線の空行は非表示 */
  }



.top-nav ul {
    list-style: none;
    display: flex
;
    flex-wrap: wrap;
    gap: 25px;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
}

/* レスポンシブ時（768px以下） */
@media screen and (max-width: 768px) {
  .top-nav .nav-inner {
    position: fixed;      /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100vw;         /* 横幅いっぱい */
    height: 100vh;        /* 高さいっぱい */
    padding: 0px 0px;   /* 内側余白 */
    display: flex;
    flex-direction: column; /* 縦並び */
    justify-content: center;
    align-items: center;

    z-index: 9999;        /* 最前面に表示 */
    opacity: 0;           /* 初期非表示 */
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .top-nav.active .nav-inner {
    opacity: 1;
    pointer-events: auto;
  }

  .top-nav .nav-inner ul {
    flex-direction: column; /* メニュー縦並び */
    gap: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .top-nav.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #000; /* 黒背景 */
  }

  .top-nav.active ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .top-nav.active ul li a {
    font-size: 24px;
    color: #fff;
  }

  .top-nav.active .nav-close {
            display: block;
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 92px;
            color: #fff;
  }

  .menu-overlay.active {
    display: block;
  }
}

.menu-toggle {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 2000;
    border: 2px solid rgb(206, 184, 161);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    overflow: hidden;
}

.SC03-ct-RyouriMei {
    color: white;
    font-size: 21px;
    font-weight: 600;
    margin: 5px 0;
    line-height: 1.2;
}
.SC02-Midashi {
    font-size: 37px;
    text-align: left;
    color: black;
    font-weight: 600;
    margin: 0px;
    line-height: 1.2;
    margin-bottom: 15px;
}


}







/* スマホ対応（サイズを少し小さく） */
@media (max-width: 600px) {
  .ellipse-background::before {
    width: 200px;
    height: 200px;
  }
  .ellipse-background::after {
    width: 150px;
    height: 150px;
  }
    .about-logo {
        width: 90px;
        height: auto;
        flex-shrink: 0;
        margin: 0 auto;
    }

        .tgr-title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 0px;
        line-height: 36px;
    }

        .tgr-container01 {
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        margin-top: 10px;
        gap: 20px;
        margin-bottom: 10px;
        flex-direction: column;
        text-align: center;
    }

    .sbr-kome {
    font-size: 18px;
    margin-bottom: 12px;
    color: #000;
    text-align: center;
    font-weight: bold;
    line-height: 30px;
}

}