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

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

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

/* 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;
  }
}

/* ハンバーガーアイコン */
.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);
}


/* ナビゲーション帯 */
.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;
}




/* ------------------------------
   Sections
------------------------------ */
.section {
  padding: 0px 0px 100px;
  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;
}

h3 {
    color: rgb(206, 184, 161);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
    margin-top: 50px;
    text-align: center;
}

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

/* ▼ TOPセクション 共通 */
/* ▼ PCデザイン */
.top-section {
  padding-top: 0;
  text-align: left;
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
}

.top-container01 {
  position: relative;
  margin-top: 80px;
  margin-right: 30px;
}

.SBR-logo-shikaku {
  position: absolute; /* 親コンテナ内で右上固定 */
  top: 0;
  right: 80px;
  max-width: 250px;   /* 画像サイズ調整 */
  height: auto;
}

.main-title,
.TOP_text {
  margin-top: 50px; /* 画像下にテキストがくるよう余白調整 */
}

.top-container02 {
  position: relative;
}

.top-container-sp {
  display: none;
}


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

/* タイトル下にブラウザ幅いっぱいの線 */
.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: 500px;
}

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

/* Section01 */

.section01 {
  max-width: 1100px;
}

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


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

.SC01-container01 {
  display: flex;
  justify-content: center; /* 横方向中央寄せ */
  align-items: center;     /* 縦方向中央寄せ（必要に応じて） */
  flex-direction: column;  /* 要素を縦に並べる */
}

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


.SC01-container02 {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}
.SC01-container03 {
    display: flex;
    margin-top: 70px;
    gap: 30px;
}
.SC01-container04 {
    display: flex;
    margin-top: 70px;
    gap: 30px;
}

.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: RGB(247, 235, 212);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left; /* ← テキストを左寄せに */
}

.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: bolder;
    font-size: 100px;
    text-align: center;
    color: black;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* 背景画像を追加 */
.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: 120px;
}

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



/* スライダー画像が全幅で綺麗に見えるように */
.mySwiper img {
  width: 100%;
  height: auto;
  display: block;
}

.mySwiper {
  width: 100%;
  max-width: 1100px; /* 必要に応じて調整 */
  margin: 0 auto;
}






.SC02-container02 ,.SC02-container03, .SC02-container04,.SC02-container05 {
    display: flex;
    margin-bottom: 80px;
    gap: 40px;
}

.SC02-container02 img,.SC02-container03 img, .SC02-container04 img,.SC02-container05 img {
    max-width: 550px;
    display: block;
    width: 550px;
}


.SC02-number {
  font-size: 55px;
  text-align: left;
  color: rgb(206,184,161);
  font-weight: 600;
  margin: 0px;
  line-height: 1.2;
}
.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;
}



/* Section03 */
.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 {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 30px;
      justify-content: center; /* 横方向中央寄せ */
}

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

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

.SC03-contents01-text {
  flex: 1;                 /* テキスト部分を残り幅いっぱいに */
}

.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: 16px;
    line-height: 2.2;
    margin: 0px 0px 40px 20px;
    color: RGB(51, 51, 51);
}

.SC03-contents02 {
    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-contents02-text {
  flex: 1;
}

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

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

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


.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: 440px;
}


/* テキスト部分 */
.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;
}



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

.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;          /* テキストは左揃えのまま */
}







/* セクション背景設定 */
.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: -1;
    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: 0;
    opacity: 0.4;
}

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






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

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

  .SC03-contents02-image img {
    max-width: 300px;
            margin-bottom: 30px;
  }

  .SC03-contents02-title {
    font-size: 28px;
    margin-bottom: 12px;
    color: rgb(206, 184, 161);
    margin-top: 20px;
}

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

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


.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);
}





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


.about-btn-wrap {
  text-align: center;
  margin-top: 20px;
}

.about-btn {
    background-color: black;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.about-btn:hover {
  background-color: #fff; /* ホバー時白背景 */
  color: #000; /* 黒文字 */
  border: 2px solid #000; /* 黒枠追加 */
  transform: translateY(-2px);
}

.okome-img {
  content: url("images/TOP_OkomeKouzou.png");
}





/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 768px) {
  .section {
        padding: 0px 40px 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 screen and (max-width: 768px) {
  .top-section {
    flex-direction: column;
    align-items: center;
  }

.top-container01 {
  margin: 0 auto;      /* 左右中央 */
  text-align: center;  /* 子要素中央 */
  position: relative;  /* 絶対配置の影響をリセット */
}

  .top-container02 {
    display: none; /* PC画像非表示 */
  }

  .top-container-sp {
    display: block;
    width: 100%;
    text-align: center;
  }

  .sp-bg {
    width: 100%;
    height: auto;
    display: block;
  }

  .sp-copy {
        width: 70%;
        height: auto;
        margin-top: 40px;
        display: none;
  }


.SBR-logo-shikaku {
        display: block;
        margin: 20px auto 0;
        max-width: 250px;
        width: 130px;
        height: auto;
        position: unset;
}



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

.main-title {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
    margin-top: 10px;
}

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

.main-title::after {
    content: "";
    position: absolute;
    left: 0;
    transform: translateX(0%);
    width: 100%;
    height: 7px;
    background-color: rgb(206, 184, 161);
    bottom: -25px;
    z-index: -1;
    pointer-events: none;
}
.TOP_text {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: left;
    color: RGB(51, 51, 51);
line-height: 1.6;
}

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

.SC01-container02 {
    display: flex
;
    margin-top: 30px;
    gap: 30px;
    flex-direction: column;
    padding: 0 0px;
}

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

.SC01-container03 {
    display: flex
;
    margin-top: 70px;
    gap: 30px;
    flex-direction: column-reverse;
}

.SC01-container03 {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    flex-direction: column-reverse;
    padding: 0 0px;
}

.SC01-container04 {
    display: flex
;
    margin-top: 30px;
    gap: 30px;
    flex-direction: column;
}

.SC01-container04 {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    flex-direction: column;
        padding: 0 0px 50px;
}


.SC02-container01 {
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}
.SC02-container01 img{
      width: 100%;
}

.SC02-title {
    font-weight: bolder;
    font-size: 5rem;
    text-align: center;
    color: black;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 1;
}

.SC02-h1 {
    font-size: 30px;
    text-align: center;
    color: black;
    font-weight: 600;
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
    margin-top: 0px;
    margin-top: 20px;
}
.SC02-h2 {
    font-size: 20px;
    text-align: center;
    color: RGB(51, 51, 51);
    margin-bottom: 30px;
    margin-top: 0px;
}

.SC02-h1::before {
  display: none;
}

.SC02-container03, .SC02-container05 {
    display: flex;
    margin-bottom: 40px;
    gap: 0px;
    flex-direction: column-reverse;

}

.SC02-container02, .SC02-container04 {
    display: flex;
    margin-bottom: 40px;
    gap: 0px;
    flex-direction: column;
}
.SC02-container02 img, .SC02-container03 img, .SC02-container04 img, .SC02-container05 img {
    max-width: 100%;
    display: block;
    width: 100%;
}

.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;
}
.h3 {
      margin-bottom: 0;
}

.section03 {
  padding: 0 0;
}

.SC03-contents01 {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 60px;
    justify-content: center;
    flex-direction: column;
}
.SC03-contents02-title {
    font-size: 28px;
    margin-bottom: 12px;
    color: rgb(206, 184, 161);
    margin-top: 10px;
    line-height: 1.3;
}
.SC03-contents03-image img {
        max-width: 300px;
        margin-bottom: 30px;
    }

.SC03-contents02 {
    border-radius: 0px;
        gap: 10px;
}

.SC03-contents03 {
    border-radius: 0px;
}

    .SC03-contents03 {
        flex-direction: column-reverse;
        text-align: center;
        padding: 0 40px;
        margin: 10px 30px 0;
                gap: 10px;
    }

    .SC03-contents01-description {
    font-size: 16px;
    line-height: 1.7;
    margin: 0px 0px 0px 0px;
    color: RGB(51, 51, 51);
    text-align: center;
}

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


.SC03-tx01 {
    background-color: rgb(206, 184, 161);
    color: #fff;
    font-size: 1.5rem;
    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: 1.5rem;
    margin: -5px -2px;
}
.section-title02 {
    font-size: 2.5rem;
    margin-top: 40px;
    line-height: 1.1;
    color: rgb(206, 184, 161);
    padding: 0 30px;
    margin-bottom: 10px;
}
.SC03-contents01-text {
    max-width: 440px;
    width: 100%;
}

h3 {
    color: rgb(206, 184, 161);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
    margin-top: 30px;
    text-align: center;
    margin-bottom: 0;
}

.SC02-number {
    font-size: 2.5rem;
  }

.SC03-contents01-text img {
    max-width: none;
    width: 100%;
    margin-top: 10px;
}
.about-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: column;
}
.about-box {
    border: 1px solid #555;
    padding: 40px 60px;
    max-width: 800px;
    margin: 40px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-btn-wrap {
  width: 200px;
}
  .okome-img {
    content: url("images/TOP_OkomeKouzou_sp.svg");
  }


}








/* レスポンシブ時（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;
}


