/*
Theme Name: monkey-fruits
Description: 2025-05-22
Version: 1.0.0
*/

@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
#concept,
#commitment,
#system,
#buyers {
  scroll-margin-top: 110px;
}
html, body {
  overflow-x: hidden;
}
body {
  background: #FFEEE3 url(images/pc_bg.png) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}
.wapper {
  max-width: 853px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: clamp(112px, 5vw, 190px);
  flex-direction: row-reverse;
}

/* === ▼ ボタン === */
.btn {
  display: inline-block;
  width: 100%;
  padding: 25px 23px;
  border-radius: 16px;
  font-size: 1.7rem;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}
.btn--primary {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 25px 10px;
  font-weight: 900;
}
.btn--product {
  background: #333;
  color: #fff !important;
  text-align: left;
}
.btn--product::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(images/arrow_wh@2x.png);
    background-size: contain;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.btn--white {
  background: #fff;
  color: #333 !important;
  text-align: left;
  font-weight: 700;
}
.btn--white::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(images/arrow_bl@2x.png);
    background-size: contain;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.btn--producers {
  background: #fff;
  text-align: left;
  border-radius: 0;
  font-weight: 700;
}
.btn--producers::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(images/arrow_bl@2x.png);
    background-size: contain;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.btn--back {
  background: #fff;
  text-align: right;
  font-weight: 700;
}
.btn--back::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(images/arrow_bl02@2x.png);
    background-size: contain;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}


/* === ▼ 共通タイトル === */
 .com_title {
  display: flex;
  align-items: flex-start;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 40px;
  text-align: left;
}
.com_title-icon {
  width: 34px;
  height: 40px;
  background: url(images/icon01@2x.png) no-repeat;
  background-size: contain;
  margin-right: 10px;
  flex-shrink: 0;
}
.com_title-text {
  display: inline-block;
  transform: translateY(-7px);
}
.com_title-sub {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

/* === ▼ 共通画像（角丸） === */
.img_round {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 0.623;
  border-radius: 80px 80px 12px 12px;
}
.img_round_02 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 0.623;
  border-radius: 20px;
}


/* === ▼ PC用サイドナビ=== */
.side_nav_pc {
  width: 260px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}s
.side_nav_pc.hide {
  display: none;
}
.side_nav_inner {
  position: fixed;
}
.pc_logo {
  margin-bottom: 40px;
}
.side_nav_title {
  font-size: 1.5rem;
  font-family: 'General Sans', sans-serif;
  font-weight: 700;
  font-style: oblique;
  margin-bottom: 16px;
}
ul.side_menu_list {
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 40px;
}
ul.side_menu_list li {
  border-bottom: 1px solid #E5E5E5;
}
ul.side_menu_list li:last-child {
  border-bottom: none;
}
ul.side_menu_list li a {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  padding: 16px;
  position: relative;
}
ul.side_menu_list li a:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(images/arrow_bl@2x.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.content_wrap {
  position: relative;
  max-width: 409px;
  width: 100%;
  background: #fff;
}
.content_inner {
  padding: 0 8px;
}
.box_shadow {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
}
/* === ▼ 固定ヘッダー（ロゴ・カート・ハンバーガー）=== */
.l-header {
  position: fixed;
  top: 0;
  width: 409px;
  height: 111px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: transparent;
  z-index: 1000;
}

.l-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  pointer-events: none;
}

.header-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;

  /* 上から下へのグラデーションマスクを適用 */
  mask-image: linear-gradient(to bottom, 
    black 50%,     /* 上から50%までは完全に表示(黒) */
    transparent 100% /* 100%の位置で完全に非表示(透明) */
  );
  
  /* Safariなどベンダープレフィックス対応 */
  -webkit-mask-image: linear-gradient(to bottom, 
    black 50%, 
    transparent 100%
  );
}
.l-header.scrolled .header-blur-overlay {
  display: block;
}
.header-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: transparent;
  transition: background 0.3s ease;
}
.l-header.scrolled .header-gradient-overlay {
   background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 80%);
}
.l-header_inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-header.bg_white {
  background-color: #fff;
}

.logo {
  width: 81px;
  height: 81px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.header_fade_layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0));
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

body.scrolled .header_fade_layer {
  opacity: 1;
}


.cart_wrap {
  position: absolute;
  top: 25px;
  right: 85px;
}
#drawer_toggle {
  z-index: 200;
  box-sizing: border-box;
  position: absolute;
  top: 11px;
  right: 10px;
  display: inline-block;
  width: 60px;
  height: 60px;
}
#drawer_toggle span {
  position: absolute;
  top: 19px;
  left: 17px;
  display: inline-block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background-color: #333;
}
#drawer_toggle span:nth-child(2) {
  margin-top: 10px;
}
#drawer_toggle span:last-child {
  margin-top: 20px;
}
#drawer_toggle.open span {
  top: 29px;
  left: 14px;
  width: 35px;
  margin: 0;
}
#drawer_toggle.open span:first-child {
  transform: rotate(45deg);
}
#drawer_toggle.open span:nth-child(2) {
  display: none;
}
#drawer_toggle.open span:last-child {
  transform: rotate(-45deg);
}

/* メニューオープン時 */
#drawer_nav {
  position: fixed;
  top: 0;
  height: 100vh;
  background: #fff;
  display: none;
  z-index: 300;
  overflow-y: auto;
  padding: 0 8px;
}

/* オープン　PRODUCTS */
#drawer_nav .drawer_nav_wrap {
  margin-top: 110px;
}
.drawer_nav_wrap {
  position: relative;
  background: url(images/dr_kv_bg.png) no-repeat;
  background-size: cover;
  background-position: center var(--bg-offset, -118px);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.drawer_nav_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}
.drawer_nav_wrap .cont_box {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}
.drawer_nav_title {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'General Sans', sans-serif;
  font-style: oblique;
  color: #fff;
  margin-bottom: 20px;
}
/* アコーディオンメニュー */
.accordion-title {
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 25px;
  background-color: #fff;
  border-bottom: 1px solid #E5E5E5;
}

/* タイトルの背景の角丸 */
.accordion-item.is-first .accordion-title {
  border-radius: 16px 16px 0 0;
}
/* アコーディオンが閉じてるとき（デフォルト） */
.accordion-item.is-last .accordion-title {
  border-radius: 0 0 16px 16px;
  border-bottom: none;
}
/* アコーディオンが開いたときは角丸を消す（下だけ） */
.accordion-item.is-last.open .accordion-title {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.accordion-item.is-last.open .accordion-content {
  border-radius: 0 0 16px 16px;
}

/* 矢印 */
.accordion-title {
  position: relative;
}
.accordion-title::after {
  border-right: solid 2px #333;
  border-top: solid 2px #333;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 35px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 8px;
}
.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

.accordion-content {
  display: none;
  padding: 12px;
  background-color: #F0F0F0;
}
ul.ac_menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  /* grid-auto-rows: 1fr; */
}
ul.ac_menu li {
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  height: 100%;
}
ul.ac_menu li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  padding: 16px;
  position: relative;
  width: 100%;
  height: 100%;
  white-space: normal;
  line-height: 1.4;
  padding-right: 40px;
  min-width: 0;
}
ul.ac_menu li a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(images/arrow_bl@2x.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.btn_producers_wrap {
  border-bottom: 1px solid #E5E5E5;
}
.drawer_nav_wrap .btn_wrap {
  margin-top: 20px;
}

/* オープン　SPECIAL */
.drawer_nav_wrap02 {
  background-color: #D8FF92;
  padding: 40px 0;
}
.drawer_nav_wrap02 .cont_box {
  padding-bottom: 0;
}
.drawer_nav_wrap02 .drawer_nav_title,
.drawer_nav_wrap03 .drawer_nav_title {
  color: #333;
}
.drawer_nav_wrap02 .spc_banner img {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.drawer_nav_wrap02 .spc_banner:nth-of-type(2) img {
  margin-bottom: 0;
}
/* オープン　ABOUT */
.drawer_nav_wrap03 {
  background-color: #FFF2E7;
  padding: 40px 0 0;
}

.banner_about {
  position: relative;
  min-height: 184px;
  background: url(images/about_kv@2x.jpg) no-repeat center / cover;
  overflow: hidden;
  border-radius: 16px 16px 0 0 ;
}
.banner_about_icon {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
.banner_about a {
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.banner_about a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(images/arrow_wh@2x.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 2em;
}

ul.about_list li {
  background: #fff;
  padding: 0 24px;
}
ul.about_list li a {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 20px 0;
  border-top: 1px solid #E5E5E5;
  text-align: left;
}
ul.about_list li:last-of-type {
  border-radius: 0 0 16px 16px;
}

.drawer_nav_wrap03 .btn_wrap {
  margin-bottom: 8px;
}
.drawer_nav_wrap03 .btn_wrap:last-of-type {
  margin-bottom: 0;
}
.btn_wrap.first-btn {
  margin-top: 20px;
}
/* オープン フッター */
.drawer_foot {
  background-color: #444;
}



header nav ul li a {
  display: block;
  padding: 25px;
  border-radius: 5px;
  color: #666;
  font-size: 1.8rem;
  text-align: center;
  text-decoration: none;
}

/* === ▼ キービジュアル === */
.kv.no_bg {
  background-image: none !important;
  background-color: #fff !important;
}
.kv_heading {
  padding-top: 264px;
  margin-left: 27px;
  margin-bottom: 235px;
  text-align: left;
}
.kv_heading img {
  margin-bottom: 20px;
}
.kv_heading p {
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 800;
}
.kv_foot {
  width: 93%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 23px;
  padding: 28px 32px;
   backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.kv_foot p:first-of-type {
  font-size: 3.2rem;
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  font-style: oblique;
  display: inline-block;
  line-height: 1.2;
  color: #FEFF73;
  margin-bottom: 24px;
}
.kv_foot p:nth-of-type(2) {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  font-feature-settings: "palt";
  margin-bottom: 24px;
}
/* トップKVアニメーション */
.kv {
  position: relative;
  min-height: 793px;
  overflow: hidden;
  background-color: #FEF0E7;
  padding-bottom: 55px;
}
.kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/kv_bg.png) no-repeat center top / contain;
  animation: bounceIn 1s ease-out forwards;
  z-index: 0;
}

@keyframes bounceIn {
  0%   { transform: scale(1.5) translateY(60px); opacity: 0; }
  30%  { transform: scale(0.95) translateY(-30px); opacity: 1; }
  50%  { transform: scale(1.05) translateY(10px); }
  70%  { transform: scale(0.98) translateY(-5px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* ロゴとコピーだけフェードイン */
.kv_logo,
.kv_copy {
  opacity: 0;
  transition: opacity 0.8s ease;
  position: relative;
  z-index: 1;
}

.kv_logo.show,
.kv_copy.show {
  opacity: 1;
}

/* .kv_foot */
.kv_foot {
  position: relative;
  z-index: 1;
  width: 93%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 23px;
  padding: 28px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* === ▼ セクション見出し === */
.ttl {
  height: 65px;
  margin-bottom: 40px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background-size: cover;
}
.ttl01 {
  background-image: url(images/ttl01@2x.png);
}
.ttl02 {
  background-image: url(images/ttl02@2x.png);
}
.ttl03 {
  background-image: url(images/ttl03@2x.png);
}
.cont_box {
  width: 89%;
  margin: 0 auto;
  padding-bottom: 40px;
}

/* === ▼ 特集 === */
.section_special {
  background-color: #D8FF92;
}
.spc_banner img {
  border-radius: 20px;
  margin-bottom: 20px;
}
.spc_banner:last-child img {
  margin-bottom: 0;
}
/* スクロールタイトル */
 .scroll-banner {
  overflow: hidden;
  position: relative;
  height: 65px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.scroll-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.scroll-content {
  font-size: 3.2rem;
  font-weight: 700;
  display: inline-block;
  white-space: nowrap;
  padding-right: 130px;
}
.scroll-content span {
  font-size: 3.6rem;
  font-weight: 600;
  font-family: 'General Sans', sans-serif;
  font-style: oblique;
}
.scroll-content img {
  vertical-align: middle;
  transform: translateY(-5px);
}
.s-b-1 {
  background: #FF5E3A url(images/bg_orange_a.png) no-repeat left top;
  background-size: cover;
  height: 65px;
  color: #D8FF92;
}
.s-b-2 {
  background: #5753E8 url(images/bg_blue_a.png) no-repeat left top;
  background-size: cover;
  height: 65px;
  color: #FFF2E7;
}
.s-b-3 {
  background: #01B360 url(images/bg_green_a.png) no-repeat left top;
  background-size: cover;
  height: 65px;
  color: #D6F8FF
}

/* === ▼ 注目商品 === */
.section_picup {
  background-color: #FFF2E7;
}
.item_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 20px;
  margin-bottom: 40px;
}
.item {
  width: calc((100% - 20px) / 2);
  color: inherit;
  display: block;
  position: relative;
}
.icon_picup {
  position: absolute;
  top: -10px;
  left: 0;
  width: 55px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ring_spin {
  position: absolute;
  width: 54px;
  height: 54px;
  animation: rotateRing 6s linear infinite;

  image-rendering: auto;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.icon_center {
  position: relative;
  width: 26px;
  height: 26px;
  z-index: 1;
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ft_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 1.179;
  border-radius: 20px;
  margin-bottom: 15px;
}
.ft_text {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: left;
}
.ft_toot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cate {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  width: 61px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 61px;
}
.cate01 {
  background-color: #01B360;
}
.cate02 {
  background-color: #9D53E8;
}
.ft_price {
    font-size: 2rem;
    font-family: 'General Sans', sans-serif;
    font-weight: 600;
}

/* === ▼ 契約生産者 === */
.section_producers {
  background-color: #D7F8FF;
}
.pro_box {
  margin-bottom: 56px;
}
.pro_img_wrap {
  position: relative;
  margin-bottom: 20px;
}
.pro_img_wrap .img_round{
  margin-bottom: 15px;
}

/* ▼画像ズームインアニメーション */
.pro_img_outer {
  position: relative;
  width: 100%;
}
.pro_img_wrap02 {
  margin-bottom: 40px;
}
.pro_img_wrap02 img {
  aspect-ratio: 1 / 0.623;
  object-fit: cover;
  object-position: center;
  border-radius: 80px 80px 12px 12px;
  background: #fff;
}
/* 最初はアニメーション未適用 */
.pro_img_wrap02 .zoomin {
  opacity: 0;
  transform: scale(0.5);
  transition: none;
}
/* スクロールで表示されたときにアニメーション開始 */
.pro_img_wrap02 .zoomin.show {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.banana_point02 {
  position: absolute;
  left: 0;
  bottom: -12px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  background-color: #333;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px 24px 24px 24px;
  overflow: hidden;
}
.banana_point02 span {
  margin-left: 8px;
}
/* ▲マスク+スライドアニメーション */

.banana_point {
  position: absolute;
  left: 0;
  bottom: 0px;
  display: inline-flex;
  align-items: center;
  background-color: #333;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px 24px 24px 24px;
  overflow: hidden;
}
.banana_point span {
  margin-left: 8px;
}
.banana_icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.pro_foot {
  display: flex;
  gap: 0 8px;
}
.producing_area {
  min-width: 65px;
  white-space: nowrap;
  min-height: 32px;
  background-color: #FEFF73;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-self: flex-start;
}
.pro_text_wrap {
  flex: 1;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 14px 14px;
}
.pro_text_wrap .subject {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2px;
}
.pro_text {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 10px;
}
.btn_pro_detal {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #F0F0F0;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}
.btn_banner {
  position: relative;
  min-height: 435px;
  background: url(images/btn_effort_bg@2x.png) no-repeat center / cover;
  overflow: hidden;
}
.btn_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

 .btn_banner a {
  display: flex;
  flex-direction: column;
  align-items: center;
   justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.btn_banner a::before {
  content: "";
  display: block;
  width: 136px;
  height: 89px;
  background: url(images/logo_icon_wh.png) no-repeat;
  background-size: contain;
  margin: 0 auto 40px;
}
.btn_banner a span::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(images/arrow_wh@2x.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 8px;
}

/* フッター */
.footer_wrap {
  background-color: #333;
  color: #fff;
  text-align: left;
  padding: 40px 0;
}
.foot_heading {
  padding: 0 16px;
  margin-bottom: 40px;
}
.foot_heading img {
  margin-bottom: 16px;
}
.copyright {
  font-size: 11px;
}
ul.footer_nav {
  border-top: 1px solid #444;
}
ul.footer_nav > li > a {
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  border-bottom: 1px solid #444;
  padding: 20px 0;
  color: #fff;
}
/* 子リストのスタイル */
ul.footer_nav .sub_nav {
  padding-left: 45px;
}
ul.footer_nav .sub_nav {
  border-bottom: 1px solid #444;
  padding-top: 28px;
}
ul.footer_nav .sub_nav li a {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  padding: 0 0 28px;
  display: block;
  border-bottom: none;
}
.sns_wrap {
  background-color: #444;
  padding: 20px 0;
}
.sns_wrap .inner_box {
  width: 89%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sns_title {
  font-size: 1.5rem;
  font-family: 'General Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
ul.sns_list {
  display: flex;
  gap: 0 12px;
}
ul.footer_menu {
  width: 89%;
  margin: 0 auto;
  padding: 40px 0 0;
}
ul.footer_menu li {
  display: inline-block;
  margin-right: 40px;
}
ul.footer_menu li a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
}

/* === ▼ ABOUT モンキーフルーツとは === */
.kv_about {
  background: url(images/about_kv@2x.jpg) no-repeat center top /cover;
  min-height: 360px;
  position: relative;
}
.kv_about .kv_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.kv_about .page_title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.kv_about .page_title span {
  font-family: 'General Sans', sans-serif;
  font-weight: 700;
}
/* ABOUT_コンセプト */
.section_concept {
  background: #FFF2E7 url(images/about_heading_bg.png) no-repeat;
  background-size: cover;
  min-height: 1220px;
}
.section_concept .cont_box {
  padding: 105px 0;
}
.title_about {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 64px;
  margin-bottom: 64px;
}
.section_concept .text {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2;
  text-align: left;
  margin-bottom: 52px;
  width: 230px;
}
.text_foot {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  margin-left: 80px;
}
.concept01 {
  margin-left: 10px;
}
.concept02 {
  margin-left: 114px;
}
.concept03,
.concept04 {
  margin-left: 80px;
}

/* ABOUT_モンキーフルーツの約束 */
.section_commitment {
  background-color: #fff;
}
.section_commitment .cont_box {
  padding-top: 40px;
}

.section_commitment .item_block {
  margin-bottom: 40px;
}
.section_commitment .item_block_img {
  margin-bottom: 40px;
  position: relative;
}
.section_commitment .item_block_img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 0.623;
}
.section_commitment .number {
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 50%;
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.3rem;
  font-weight: 600;
  font-family: 'General Sans', sans-serif;
  font-style: oblique;
  line-height: 1;
  text-align: center;
}
.number-inner {
  display: inline-block;
  transform: translateX(-2px);
  font-variant-numeric: tabular-nums;
}
.section_commitment .number-1 {
  background-color: #D8FF92;
  color: #FF5B23;
}
.section_commitment .number-2 {
  background-color: #FFF2E7;
  color: #5753E8;
}
.section_commitment .number-3 {
  background-color: #D7F8FF;
  color: #01B360;
}
.section_commitment .subject {
  padding: 0 12px;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
}
.section_commitment p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2;
  text-align: left;
  padding: 0 12px;
}

/* ABOUT_バナナポイント（システム） */
.section_system {
  background: #FEFF73;
}
.section_system .cont_box {
  padding-top: 40px;
}
.system_heading {
  margin-bottom: 40px;
}
.section_system p {
  font-size: 1.3rem;
  font-weight: 500px;
  line-height: 2;
  text-align: left;
  margin-bottom: 24px;
}
.section_system p:last-child {
  margin-bottom: 0;
}
/* ABOUT_バイヤー紹介 */
.section_buyers {
  background: #F6CFC8;
}
.section_buyers .cont_box {
  padding-top: 40px;
}
.buyers_box {
  margin-bottom: 40px;
}
.buyers_img_wrap {
  position: relative;
  margin-bottom: 28px;
}


.buyers_box:last-child {
  margin-bottom: 0;
}
.buyers_name {
  position: absolute;
  left: 0;
  bottom: 39px;
  display: inline-block;
  font-size: 3.4rem;
  font-weight: 600;
  padding:10px 20px;
  background-color: #fff;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  text-align: center;
}
.buyer-1 {
  background-color: #FFF2E7;
  color: #9D53E8;
}
.buyer-2 {
  background-color: #D7F8FF;
  color:#FF6446;
}
.buyers_name span {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  margin-top: 4px;
}
.buyers_box .text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}
.foot_banner_wrap {
  display: flex;
  align-items: flex-end;
  height: 270px;
}
.foot_banner-1 {
  background: url(images/banner_bg01@2x.jpg) no-repeat;
  background-size: cover;
  min-height: 270px;
}
.foot_banner-2 {
  background: url(images/banner_bg02@2x.jpg) no-repeat;
  background-size: cover;
  min-height: 270px;
}
.foot_banner_wrap .cont_box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}
.foot_banner_wrap .btn_wrap {
  width: 100%;
}

/* === ▼ PRODUCERS 生産者一覧 === */
.kv_producers {
  background: url(images/producers_kv@2x.jpg) no-repeat center top /cover;
  min-height: 360px;
  position: relative;
}
.kv_producers .kv_inner {
  width: 72%;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.kv_producers .page_title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
.kv_producers .page_title span {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  margin-top: 9px;
}
.kv_producers p {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 2;
  text-align: center;
}
/* 絞り込み・並び替え */
.section_filter_sort {
  background: url(images/bg_green.png) no-repeat center top;
  background-size: cover;
  min-height: 117px;
  position: relative;
}
.filter_sort_wrap {
  width: 89%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}
.filter_sort_col {
  width: 100%;
  text-align: left;
}
.filter_sort_col .text-sm {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 9px;
}
.filter_sort_col .selectbox {
  width:100%;
  position:relative;
}
.filter_sort_col .selectbox select{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height: 56px;
  padding: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  background:#fff;
  color:#333;
}
.filter_sort_col .selectbox::after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  position:absolute;
  right:20px;
  top:40%;
  border-bottom:#333 2px solid;
  border-right:#333 2px solid;
  transform:rotate(45deg)translateY(-30%);
  pointer-events: none;
}

/* section_producers_list_wrap */
.section_producers_list_wrap {
  background-color: #D7F8FF;
}
.section_producers_list_wrap .cont_box {
  padding-top: 20px;
  text-align: left;
}
.deco_border {
  border-top: 2px solid #01B360;
  border-bottom: 2px solid #01B360;
}
.icon_about {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 56px;
}
.icon_banana_s {
  width: 20px;
  height: 20px;
  background: url(images/icon02@2x.png) no-repeat;
  background-size: contain;
  margin-right: 5px;
  flex-shrink: 0;
}
.icon_about_text {
  font-size: 1.3rem;
  font-weight: 500;
}
/* モーダルウインドウカスタマイズ */
/* .remodal p {
	font-size: 1.6rem;
	line-height: 1.8;
	text-align: left;
} */
.remodal {
  padding: 0;
}

/* 飾り罫 */
.deco_border_2 {
  border-top: 2px solid #01B360;
  border-bottom: 2px solid #01B360;
  background-color: #D7F8FF;
  padding: 10px 0 10px 10px;
  display: block;
  overflow: hidden;
  line-height: 1;
  height: auto;
}
.deco_scroll_wrapper {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.deco_scroll_2 {
  display: flex;
}
.item_icon_2 {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #01B360;
  font-weight: bold;
  white-space: nowrap;
  margin-right: 8px;
  gap: 6px;
}
.label {
  line-height: 1;
  display: inline-block;
  height: 18px;
}
.icon3-bg {
  display: inline-block;
  width: 56px;
  height: 16px;
  background-image: url(images/line_icon3.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}


/* 生産者詳細 */
.producers_detail_wrap {
  background-color: #D7F8FF;
}
.section_producers_custom_wrap .cont_box {
  padding-top: 80px;
}
body.admin-bar .section_producers_custom_wrap .cont_box,
body.customize-support .section_producers_custom_wrap .cont_box {
  padding-top: 25px !important;
}
.section_producers_custom_wrap.custom_foot .cont_box {
  padding-top: 40px;
}
.section_producers_custom_wrap .img_round {
  aspect-ratio: 1 / 1.02;
}
.section_producers_custom_wrap .pro_detail_heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section_producers_custom_wrap .subject {
  font-size: 2.6rem;
  margin-bottom: 0;
}
.section_producers_custom_wrap .pro_text {
  font-size: 1.5rem;
  line-height: 2.3;
  margin-bottom: 28px;
}

/* サマリーテキスト */
.summary_box {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 28px;
}
ul.summary_list li {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  padding: 16px 0;
  border-bottom: 1px dotted #CECECE;
}
ul.summary_list li:first-child {
  padding-top: 0;
}
ul.summary_list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* 投稿エリア */
.section_producers_post_wrap .cont_box {
  padding-top: 40px;
}
/* 投稿タイトル */
.section_producers_post_wrap .entry-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
  padding: 0 12px;
  text-align: left;
}
.section_producers_post_wrap .entry-content .wp-block-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
  padding: 0 12px;
  text-align: left;
}
/* 投稿画像 */
 .section_producers_post_wrap .entry-content .wp-block-image img {
  border-radius: 20px;
  margin-bottom: 8px;
 }
 /* 投稿画像キャプション */
.section_producers_post_wrap .entry-content .wp-element-caption {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  padding: 0 12px;
  margin-bottom: 28px;
}
/* 投稿テキスト */
.section_producers_post_wrap .entry-content p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2;
  padding: 0 12px;
  text-align: left;
}
/* 投稿区切り線 */
.section_producers_post_wrap .entry-content hr {
  border-top: 1px dashed #333;
  margin: 48px 0;
}
/* 投稿ムービー */
.section_producers_post_wrap .entry-content .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
}
.section_producers_post_wrap .entry-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
/* 投稿リスト */
.section_producers_post_wrap .entry-content ul.wp-block-list {
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px 12px 32px;
  list-style: disc;
  list-style-position: outside;
  text-align: left;
  margin-top: 28px;
}
.section_producers_post_wrap .entry-content ul.wp-block-list li {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 0.5em;
  padding-left: 0.5em;
}
.section_producers_post_wrap .entry-content ul.wp-block-list li:last-child {
  margin-bottom: 0;
}

/* 投稿carousel　スライド（swaiper スワイパー） */
.carousel-block {
  margin-top: 28px;
}
.mySwiper {
  width: 100%;
  padding: 20px 0;
}
.swiper-slide {
  width: 300px !important;
  height: 200px!important;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom_foot .btn_wrap {
  margin-top: 28px;
}


.title_other {
  font-size: 2.4rem;
  font-weight: 700;
  color: #D7F8FF;
  background: url(images/bg_green.png) no-repeat center top / cover;
  height: 64px;
  line-height: 64px;
  text-align: center;
  margin-bottom: 40px;
}

/* === ▼ SUSTAINA サスティナ === */
.kv_sustaina {
  background: url(images/sustna_kv@2x.jpg) no-repeat center top /cover;
  min-height: 360px;
  position: relative;
}
.kv_sustaina .page_title {
  width: 89%;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  text-align: left;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.section_vision {
  background: url(images/bg_yellow.png) no-repeat center top / cover;
  min-height: 373px;
  position: relative;
}
.section_vision .cont_box {
  padding-top: 40px;
}
.section_vision p {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 2.2;
  text-align: left;
  width: 82%;
  margin: 0 auto;
}
.monkey_img {
  position: absolute;
  right: 13%;
  bottom: 61px;
  width: 100px;
  z-index: 2;
}

.section_mission .cont_box {
  padding-top: 40px;
}
.section_mission .subject {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  padding: 0 12px;
  margin-bottom: 32px;
}
.section_mission p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2;
  text-align: left;
  padding: 0 12px;
  margin-bottom: 20px;
}
.section_mission .btn_wrap {
  margin-top: 32px;
}
.section_mission .img_wrap {
  margin: 32px 0;
}
.text_bold {
  font-weight: 900;
}
.text_em {
  color: #F44C2C;
}
.instagram-media {
  min-height: 600px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  box-shadow: none !important;
  height: auto !important;
}
@media screen and (max-width: 375px) {
  .instagram-media {
    min-height: 630px !important;
  }
}

/* === ▼ スマホ対応 === */
@media (max-width: 767px) {
  .wapper {
    width: 100%;
    flex-direction: column;
  }
  .content_wrap {
    margin: 0 auto;
  }
  .content_inner {
    padding: 0;
  }
  .side_nav_pc {
    display: none;
  }
  .l-header {
    right: 0;
    transform: none;
    width: 100%;
  }
  header nav {
    width: 100%;
  }
  /* メニューオープン時 */
  #drawer_nav {
    padding: 0;
  }
}
