﻿/* ===== DCblock ===== */
.sec-dc{
  background:#dcdcd7;
  margin-top:-70px;
}

.dc-inner{
  width: min(88%, 1100px);
  margin: 0 auto;
  display: flex;
  gap: calc(3.5vw + 34px);
  align-items: flex-end;
}

/* 左 60% / 右 40%（gap分を差し引いた残り幅を 60:40 に配分） */
.dc-left{
  flex: 0 0 calc((100% - (3.5vw + 34px)) * 0.6);
}
.dc-right{
  flex: 0 0 calc((100% - (3.5vw + 34px)) * 0.4);
  box-sizing: border-box;
}

@media (max-width: 920px){
  .dc-left{
    padding-top:3vw!important;
  }
}

/* SPは縦並びなので gap/幅指定は無効化（保険） */
@media (max-width: 767px){
  .dc-inner{ gap: 0; }
  .dc-left,
  .dc-right{ flex: none; }
}


/* 左：見出しと本文 */
.dc-head{
  margin-bottom:2.1vw;
  color: #000;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  font-weight: 700;
  text-align:left;

}

/* 見出し下テキスト：左寄せ（指定） */
.dc-text{
  margin: 0 0 35px;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  text-align: left;
}

@media (min-width: 768px) and (max-width: 900px) {
  .dc-head{
    font-size: clamp(16px, 2.2vw, 28px);
    line-height: 1.5;
  }
  .dc-text{
    line-height: 1.5;
  }
}


/* 左：画像3枚（1列横並び） */
.dc-thumbs{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dc-thumbs img{
  width: 100%;
  height: auto;
  display: block;
}

/* 右：商品画像（中央寄せ） */
.dc-product{
  display: flex;
  justify-content: center;

  /* ★PCでアイコンを重ねるための基準 */
  position: relative;
}
.dc-product__img{
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin-right:5%;
}

/* 右：アイコン（PCは .dc-product 下部に重ねる） */
.dc-icon{
  width:90px;
  object-fit: contain;
  display: block;
  margin-bottom:20px!important;
}

/* ★PC：通販限定アイコンを商品画像の下部に重ねる */
@media (min-width: 768px){
  .dc-icon{
    position: absolute;
    left: 0;
    bottom: -8px;     /* ←ここで「下部に重ねる量」を調整 */
    margin: 0;        /* 絶対配置時は余白不要 */
    z-index: 2;
  }

  /* ★PC：アイコン以下のパーツを上に詰める（=上にずらす） */
  .dc-name{
    margin-top: -10px;
  }
}

/* 右：商品名 */
.dc-name{
  color: #000;
  font-size: clamp(14px, 1.9vw, 23px);
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  margin: 0 0 4px;
  letter-spacing: -0.05em;
}
.dc-name-en{
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  margin: 0 0 18px;
}

/* 右：価格（PCは右寄せ、円（税込）は小さく） */
.dc-price{
  text-align: right;
  color: #000;
  margin: 0 0 18px;
  line-height: 1;
}
.dc-price__main{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.dc-price__sub{
  font-size: 16px;
  font-weight: 700;
}

/* 購入ボタン：背景 #777059 / 文字 #fff ゴシック / 中身は横並び */
.dc-btn{
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  background: #777059;
  color: #fff;
  text-decoration: none;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    "Yu Gothic",
    "Yu Gothic Medium",
    "Meiryo",
    system-ui,
    sans-serif;

  box-sizing: border-box;
  padding: 12px 16px;
}

/* カート画像 */
.dc-btn__cart{
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

/* ラベル */
.dc-btn__label{
  font-size: 16px;
  line-height: 1;
}

/* 右矢印（CSSで構成） */
.dc-btn__arrow{
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  display: inline-block;
  margin-top:4px;
  margin-left:8px;
}



/* =========================
  SOLD状態
========================= */
.dc-btn.sold{
  background:#999;           /* グレー */
  pointer-events:none;       /* クリック不可 */
  cursor:default;
  display:flex;
  align-items:center;
  justify-content:center;    /* 中央寄せ */
}

/* テキスト変更 */
.dc-btn.sold .dc-btn__label{
  font-size:16px;
}

/* 「購入はこちら」を隠して「完売しました」を表示 */
.dc-btn.sold .dc-btn__label{
  visibility:hidden;
  position:relative;
}

.dc-btn.sold .dc-btn__label::after{
  content:"完売しました";
  visibility:visible;
  position:absolute;
  left:0;
  right:0;
  text-align:center;
}

/* 画像・矢印を非表示 */
.dc-btn.sold .dc-btn__cart,
.dc-btn.sold .dc-btn__arrow{
  display:none;
}







/* hover */
@media (hover:hover){
  .dc-btn:hover{ opacity: .88; }
}

/* ===== SP ===== */
@media (max-width: 767px){
  .sec-dc{
    padding: 90px 0 0;
  }

  .dc-inner{
    display: block;
    width: 90%;
  }

  .dc-right{
    margin-top: 35px;
    padding: 0;
    text-align: center;
  }


  .dc-head{
    margin: 0 0 22px;
    font-size: clamp(20px, 5vw, 22px);
    line-height: 1.5;
    font-weight: 700;
    text-align:left;
    letter-spacing: -0.05em;
  }

  .dc-text{
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }

  .dc-thumbs{
    gap: 10px;
  }

  /* ★SP：dc-product を中央 / 縦並び（画像→アイコン） */
  .dc-product{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: static; /* 重ねない */
  }

  /* ★SP：商品画像をちゃんと中央に */
  .dc-product__img{
    max-width: 55%;
    margin-right: 0;
  }

  /* ★SP：アイコンは dc-product の下で中央 */
  .dc-icon{
    position: static;
    width: 38%;
    height: 50px;
    margin: 0  auto 0;
  }

  /* 右：商品名 */
  .dc-name{

    font-size: clamp(20px, 4.5vw, 30px);
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    letter-spacing:0;
    margin-bottom:0;
  }
  .dc-name-en{
    font-size: clamp(15px, 3.5vw, 20px);
    line-height: 1.6;
    text-align: center;
  }

  .dc-price{
    text-align: center;
    margin-bottom:25px;
  }

  .dc-price__main{
    font-size: 30px;
  }
  .dc-price__sub{
    font-size: 20px;
  }


  .dc-btn__cart{
    width: 32px;
    height: 32px;
  }

  .dc-btn__label{
    font-size: 20px;
    line-height: 1;
  }

  .dc-btn__arrow{
    width: 8px;
    height: 8px;
    margin-top: 1px;
  }
}





/* ===== dc-extra-box（外枠） ===== */
.dc-extra-box{
  position: relative;

  width: min(88%, 1000px);
  background: #fff;
  margin: 90px auto 50px;
  padding: 5% 7%;
  border: 2px solid #777059;
  border-radius: 30px;
  box-sizing: border-box;

  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 1300px){
  .dc-extra-box{padding:65px;}
  .sp-only {display:none!important;}
  .dc-recipe{padding-right:20px;}
}


/* 四隅の〇 共通 */
.dc-extra-box .corner-dot{
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #777059;
  background: #dcdcd7;
  border-radius: 50%;
}

/* 配置（枠の内側） */
.dc-extra-box .tl{ top: 22px; left: 22px; }
.dc-extra-box .tr{ top: 22px; right: 22px; }
.dc-extra-box .bl{ bottom: 22px; left: 22px; }
.dc-extra-box .br{ bottom: 22px; right: 22px; }

@media (max-width: 767px){
  .dc-extra-box{
    margin: 70px auto 50px;
    width: 90%;
    padding: 60px 22px 80px;
  }
  .dc-extra-box .corner-dot{
    width: 12px;
    height: 12px;
  }
}

/* ===== 中身：左右 50%（PCは左の高さに右を合わせる） ===== */
.dc-extra-inner{
  display: flex;

  /* ★ここが肝：右が高さを作らない／左の高さに右が追従する */
  align-items: stretch;

  gap: clamp(14px, 2.2vw, 26px);

  /* 子要素が横に押し広げる事故防止 */
  min-width: 0;
}

/* 左右 50% */
.dc-extra-left,
.dc-extra-right{
  flex: 1 1 0;     /* 50/50 + gapぶん自動で縮む */
  min-width: 0;    /* テキストや画像で押し広げない */
}

/* 左：レシピ（中央寄せ） */
.dc-recipe{
  text-align: center;
  padding: 0 8% 0 0;
}

/* キャッチ */
.dc-recipe__catch{
  margin: 0;
  color: #000;
  font-weight: 800;
  line-height: 1.6;
  font-size: 18px;
  letter-spacing: -0.1em;
}

/* ===== 仕切り線：画像に変更（dc-recipe__line） ===== */
.dc-recipe__line{
  height: 26px; /* 画像の高さに合わせて調整 */
  margin: 0 auto 1vw;
  width:100%;
  background-image: url("../img/pc/recipe_line.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* レシピタイトル */
.dc-recipe__title{
  margin: 0;
  color: #000;
  font-weight: 900;
  line-height: 1.35;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.1em;
}

/* 英語名（#c88200） */
.dc-recipe__en{
  color: #c88200;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 16px;
  margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .dc-recipe__catch{
    margin: 0;
    color: #000;
    font-weight: 800;
    line-height: 1.6;
    font-size: clamp(13px, 1.7vw, 18px);
    letter-spacing: -0.1em;
  }
}




/* レシピ　ボタン　*/
.dc-recipe-btn{
  width: min(420px, 100%);
  min-height: 62px;
  margin: 30px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #c88200;
  color: #fff;
  text-decoration: none;

  box-sizing: border-box;
  padding: 12px 16px;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    "Yu Gothic",
    "Yu Gothic Medium",
    "Meiryo",
    system-ui,
    sans-serif;

}

.dc-recipe-btn__label{
  font-size: 16px;
  line-height: 1;

}

/* 右矢印 */
.dc-recipe-btn__arrow{
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 10px;
  margin-top:3px;
}

/* hover */
@media (hover:hover){
  .dc-recipe-btn:hover{ opacity: .88; }
}

/* ===== 右：画像（PCは左の高さに完全追従） ===== */
.dc-extra-right{
  position: relative;  /* absolute画像の基準 */
  overflow: hidden;    /* はみ出し防止 */
}

/* ★画像が高さを作らないようにフローから外す */
.dc-extra-right img{
  position: absolute;
  inset: 0;            /* top/right/bottom/left:0 */
  width: 100%;
  height: 100%;
  max-width: none;     /* absolute時の保険 */
  display: block;

  /* 左の高さの中に必ず収める */
  object-fit: contain;
}

/* SP：縦積み（SPは自然な高さでOK） */
@media (max-width: 767px){
  .dc-extra-inner{
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .dc-extra-left,
  .dc-extra-right{
    width: 100%;
  }

  .dc-recipe {
    padding:0;
  }
  .dc-recipe__catch{
    font-size: clamp(14px,4vw, 18px);
  }
  .dc-recipe__title {
    font-size: clamp(26px, 5vw, 28px);
  }
  .dc-recipe-btn {
    width:100%;
    margin-top:30px;
  }

  .dc-recipe-btn__label{
    font-size: 20px;
  }
  .dc-recipe-btn__arrow{
    width: 8px;
    height: 8px;
    margin-top:0;
  }

  .dc-recipe__line{
    width: 100%;
    height: 24px;
  }

  /* SPはabsolute解除して自然表示 */
  .dc-extra-right{
    position: static;
    overflow: visible;
  }
  .dc-extra-right img{
    position: static;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }
}
@media (min-width: 768px){
  .rt {display:none!important;}
}

  /* ===== オリーブ農園 風景（100%幅） ===== */
.dc-olive-landscape{
  width: 100%;
  margin: 8vw 0 0;
  padding: 0;
  line-height: 0;
}
@media (max-width: 767px) {
  .dc-olive-landscape{
    margin-top:60px;
  }

}

.dc-olive-landscape picture,
.dc-olive-landscape img{
  display: block;
  width: 100%;
  height: auto;
}










/* オリーブオイルの産地と品種*/
.sec-origin{
  margin-top: 0;
  text-align: center;
  padding: 0;
  background: #dcdcd7;
  display: block;
}

.sec-origin .origin-title{
  height: 150px;
  margin: 0;
  padding: 50px 0 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-origin .origin-title picture{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-origin .origin-title picture > img{
  width: 47%;
  max-width:700px;min-width:500px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {

  .sec-origin .origin-title{
    height: 100px;
    padding-top:50px;
  }
  .sec-origin .origin-title picture > img{
    width: 80vw;
    margin: 0 auto;
    min-width:200px;
  }

}



.sec-origin .origin-title2{
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-origin .origin-title2 picture{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-origin .origin-title2 picture > img{
  width: 47%;
  max-width:700px;min-width:500px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {

  .sec-origin .origin-title2{
    padding-top:0;
  }
  .sec-origin .origin-title2 picture > img{
    width: 75vw;
    margin: 0 auto;
    min-width:200px;
  }

}


/* ===== オリーブオイルの産地と品種：本文 ===== */
.sec-origin .origin-content{
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px 40px;
  box-sizing: border-box;
}

.sec-origin .origin-text{
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 20px 0 32px;
  text-align: left;
}

.sec-origin .origin-image{
  margin: 0 0 32px;
  text-align: center;
}

.sec-origin .origin-image img{
  width: 100%;
  height: auto;
  display: inline-block;

}

/* SP */
@media (max-width: 767px){
  .sec-origin .origin-content{
    padding: 0 20px 20px;
  }

  .sec-origin .origin-text{
    font-size: 16px;
  }
}




/* Olive Quest History バナー */
.sec-origin .quest-history{
  margin: 0 auto 32px;
  text-align: center;
  max-width:700px;
}

.sec-origin .quest-history img{
  width: 100%;
  height: auto;
  display: inline-block;

}
@media (max-width: 767px){
  .sec-origin .quest-history{
    width:100%;
  }
}





/* ===== OQ Modal: HISTORY override（PC=5:3 / SP=1360×2200）===== */

/* ------------------------------
  0) 共通：背景（切れない）＋1px隙間対策
-------------------------------- */
.oq-modal--history .oq-modal__inner{
  /* 背景画像は media で切替（下で指定） */
  background-color: #dcdcd7;          /* 画像ロード前の保険 */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;           /* ←背景は絶対に切らない */

  /* 1px隙間の埋め（背景の下地を見せる） */
  background-clip: padding-box;
  padding: 1px;
  box-sizing: border-box;
}

/* ------------------------------
  1) PC：モーダル比率 5:3 固定で大きく
-------------------------------- */
@media (min-width: 768px){
  .oq-modal--history .oq-modal__panel{
    /* 既存CSSの干渉を history だけで無効化 */
    max-width: none !important;
    max-height: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;

    /* 比率固定 */
    aspect-ratio: 5 / 3 !important;

    /* ★最大幅（ここだけ上げ下げすればOK：比率は常に維持） */
    --oq-his-maxw: 1200px;

    /* 画面内に収まる最大化（横/縦どちらでもはみ出さない） */
    --oq-his-w: min(80vw, var(--oq-his-maxw), calc(90dvh * 5 / 3));
    width:  var(--oq-his-w) !important;
    height: calc(var(--oq-his-w) * 3 / 5) !important;
  }

  .oq-modal--history .oq-modal__inner{
    background-image: url("../img/pc/quest_history_bg.jpg");
    background-color: #874b02; /* 1px埋めの下地色 */
  }

  .oq-modal--history .oq-modal__head{
    flex: 0 0 12%;
  }
  .oq-modal--history .oq-modal__foot{
    flex: 0 0 3.3%;
  }
  .oq-modal--history .oq-modal__scrollbar{
    bottom: 10%;  /* ピッタリの場合は 3.3% */
  }



  /* 画像：PCは90% */
  .oq-modal--history .oq-modal__body picture,
  .oq-modal--history .oq-modal__body img{
    display: block;
    margin: 0 auto;
    height: auto;
  }
  .oq-modal--history .oq-modal__body img{
    width: 88%;
    max-width: 88%;
  }

  /* スクロールバーを内側へ（右端に余白＝バーが左に寄る） */
  .oq-modal--history .oq-modal__body{
    overflow: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    padding:0 5% 3% 0;
  }

  .oq-modal--history .oq-modal__scrollbar{
    top:12%;
    right: 5%;
  }


}

/* ------------------------------
  2) SP：比率 1360×2200（= 34:55）＋左右余白増やす
-------------------------------- */
@media (max-width: 767px){
  .oq-modal--history .oq-modal__panel{
    /* 干渉潰し（SPも） */
    max-width: none !important;
    max-height: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;

    /* 比率固定（縦長） */
    aspect-ratio: 34 / 55 !important;

    /* 左右余白：92vw（必要なら 90vw / 88vw に） */
    --oq-his-h: min(88dvh, calc(92vw * 55 / 34));
    height: var(--oq-his-h) !important;
    width:  calc(var(--oq-his-h) * 34 / 55) !important;
  }

  .oq-modal--history .oq-modal__inner{
    background-image: url("../img/sp/quest_history_bg.jpg");
  }

  .oq-modal--history .oq-modal__body picture,
  .oq-modal--history .oq-modal__body img{
    display: block;
    margin: 0 auto;
    height: auto;
  }
  .oq-modal--history .oq-modal__body img{
    width: 100%;
    max-width: 100%;
  }

  /* スクロールバーを内側へ（SPは少し多めでもOK） */
  .oq-modal--history .oq-modal__body{
    overflow: auto;

    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    margin-right:11%;
    padding:0 0 5%;
  }


  .oq-modal--history .oq-modal__head{
    flex: 0 0 15%;
  }
  .oq-modal--history .oq-modal__foot{
    flex: 0 0 1.7%;
  }
  .oq-modal--history .oq-modal__scrollbar{
    top:15%;
    right: 7.5%;
    bottom:8%;    /* ピッタリの場合は 1.7% */
  }



}

/* ------------------------------
  3) dvh 非対応保険（SP）
-------------------------------- */
@supports not (height: 100dvh){
  @media (max-width: 767px){
    .oq-modal--history .oq-modal__panel{
      --oq-his-h: min(88vh, calc(92vw * 55 / 34));
    }
  }
}





/* オリーブオイルの品種 */
.sec-origin .variety-title{
  margin: 0 0 20px;
  padding:0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-origin .variety-title picture{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-origin .variety-title picture > img{
  width: 47%;
  max-width:700px;min-width:500px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sec-origin .variety-title{
    height: 100px;
    padding-top:30px;
    padding-bottom:10px;
  }
  .sec-origin .variety-title picture > img{
    width: 80vw;
    margin: 0 auto;
    min-width:200px;
  }

}


.sec-origin .variety-content{
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.sec-origin .variety-text{
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 20px 0 32px;
  text-align: left;
}



/* SP */
@media (max-width: 767px){
  .sec-origin .variety-content{
    padding: 0 20px 20px;
  }

  .sec-origin .variety-text{
    font-size: 16px;
    margin-top:15px;
  }
}
  

/* ===============================
   オリーブ品種ブロック（背景画像：右下）
================================ */
.olive-varieties{
  width: 100%;
  position: relative;

  background-image: url("../img/pc/bg_olive.png");
  background-repeat: no-repeat;

  /* 縦いっぱい・横は自然サイズ */
  background-size: auto 1000px;
  /* 右寄せ */
  background-position: right bottom;

  padding: 0 0 110px;
  box-sizing: border-box;
}

/* パネルセット：PC 85% 中央寄せ（※あなたの現状80%を維持） */
.olive-varieties__inner{
  width: min(80%, 1100px);
  margin: 0 auto;
}

/* PC：3列（列を物理的に分離） */
.olive-panels{
  display: flex;
  gap: 1.5%;
  align-items: flex-start;
  cursor: pointer;
  margin: 0 0 22px;
}

/* 各列（ul） */
.olive-panels__col{
  list-style: none;
  padding: 0;
  margin: 0;

  width: calc((100% - 3%) / 3); /* 1.5%×2 = 3% を引いて3等分 */
}

/* ===============================
   パネルデザイン
================================ */
.olive-panel{
  position: relative;
  background: #fff;

  border: 4px solid #bbb7ac;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  box-sizing: border-box;

  padding: 22px 2% 28px;
  margin-bottom: 40px;
}

/* 下の帯（クリックトリガー） */
.olive-panel__bar{
  position: absolute;
  left: -4px;
  bottom: -28px;
  width: calc(100% + 8px);
  height: 40px;

  background: #777059;
  border: 4px solid #777059;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  cursor: pointer;
}

/* 矢印（border方式・下向き） */
.olive-panel__bar::after{
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;

  transform: rotate(135deg);
  display: inline-block;

  margin-left: 10px;
  margin-top: -1px;

  transition: transform 0.3s ease;
}

/* open時：上向き */
.olive-panel.is-open .olive-panel__bar::after{
  transform: rotate(-45deg) translateY(4px);
}

/* タイトル：色指定 */
.olive-panel__ttl{
  margin: 0 0 10px;
  font-size: clamp(18px, 2vw, 23px);
  font-weight:700;
  line-height: 1.35;
  color: #315a31;
  letter-spacing:-0.15em;
}

/* 説明：ゴシック＆少し小さめ */
.olive-panel__txt{
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #777059;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  letter-spacing: -0.12em;
}

/* アコーディオン（滑らか） */
.olive-panel__accordion{
  overflow: hidden;
  max-height: 0;

  opacity: 0;
  transform: translateY(-4px);

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;

  margin-top: 12px;
}

.olive-panel.is-open .olive-panel__accordion{
  opacity: 1;
  transform: translateY(0);
}

.olive-panel__accordion-txt{
  font-size: 14px;
  line-height: 1.5;
  color: #777059;
  text-align:left;
  letter-spacing: -0.02em;;
  padding:0 7%;
  font-weight:700;
}

/* ===============================
   SP
================================ */
@media (max-width: 767px){
  .olive-varieties{
    background-image: url("../img/pc/bg_olive.png");
    background-position: right bottom;
    background-size: auto;
    padding: 0 0 60px;
    background-size: auto 500px;
    padding: 0 0 210px;
  }

  .olive-varieties__inner{
    width: 90%;
  }

  .olive-panels{
    display: block;
    margin: 0 0 22px;
    padding:0;
  }

  .olive-panels__col{
    width: 100%;
  }

  .olive-panel{
    border-radius: 16px 16px 0 0;
    padding: 20px 16px 26px;
    margin-bottom: 55px;
  }

  .olive-panel__bar{
    height: 50px;
    bottom: -36px;
    font-size: 16px;
  }
  .olive-panel__bar::after{
    margin-top: -3px;
  }
  /* open時：上向き */
  .olive-panel.is-open .olive-panel__bar::after{
    transform: rotate(-45deg) translateY(5px);
  }

  .olive-panel__accordion-txt{
    font-size: 16px;
    line-height: 1.4;

    letter-spacing: -0.05em;;
    padding: 0 7%;
  }

  /* タイトル*/
  .olive-panel__ttl{
    font-size: clamp(20px, 5.5vw, 24px);
    letter-spacing: -0.1em;
  }

  /* 説明：ゴシック＆少し小さめ */
  .olive-panel__txt{
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.08em;
  }

  .olive-panels,
  .olive-panels__col,
  .olive-panels li,
  .olive-panels__col li,
  .olive-panel{
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }
}





/* ===== イメージ カルーセル ===== */
.dc-carousel{
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 80px 0;
  border:none;
}

/* トラック */
.dc-carousel__track{
  display: flex;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 1枚 */
.dc-carousel__item{
  width: 38vw;
  max-width: 400px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

/* 画像 */
.dc-carousel__item img{
  width: 94%;
  max-width: none;
  height: auto;
  display: block;
}

@media (max-width: 767px){
  .dc-carousel {
    padding-top: 50px;
    padding-bottom:20px;
  }
  .dc-carousel__item{
    width: 60vw;
    max-width: none;
  }
  .dc-carousel__item img{
    max-width: 500px;
    width: 94%;
  }
}








/* オリーブクエスト会員 */
.sec-members{
  margin-top: 0;
  text-align: center;
  padding: 0 0 100px;
  background: #fff;
  display: block;

  background-image: url("../img/pc/members_olive.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: clamp(270px, 32vw, 420px) auto;
}

.sec-members .members-title{
  margin: 0;
  padding: 90px 0 0;

  display: flex;
  align-items: center;
  justify-content: center;

}

.sec-members .members-title picture{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-members .members-title picture > img{
  width: 40%;
  max-width:500px;min-width:400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {

  .sec-members {
      background-size: 55vw auto;
      background-position: left 24px;
  }
  .sec-members .members-title{
    height: 100px;
    padding-top:150px;
  }
  .sec-members .members-title picture > img{
    width: 90vw;
    margin: 0 auto;
    min-width:200px;
  }

}




/* オリーブクエスト会員ならお得 */
.sec-members .members-block{
  width: 100%;
  padding: 50px 0 0;
}

.sec-members .members-block__inner{
  width: min(75%, 900px);
  margin: 20px auto 0;
}

.sec-members .members-images{
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sec-members .members-image picture,
.sec-members .members-image img{
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px){
  .sec-members .members-block{
    padding-top: 40px;
  }
  .sec-members .members-block__inner{
    width: 90%;
  }
  .sec-members .members-images{
    gap: 20px;
  }
}




/* オファー */
.sec-members .members-frame{
  width: 100%;
  border: 2px solid #c88200;
  box-sizing: border-box;
  margin-top:30px;
}

/* PC：左右 */
.sec-members .members-frame__inner{
  display: flex;
  position: relative;
  padding:0;
  box-sizing: border-box;
}

/* 左右共通 */
.sec-members .members-col{
  flex: 1;
  padding:4% 2% 4% 4%;
  box-sizing: border-box;
}

.sec-members .members-col--right{
  background: #f9f2e5;
  color:#c88200;
  text-align:left;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

/* SP：縦並び（高さ固定＋縦中央） */
@media (max-width: 767px){
  .sec-members .members-frame__inner{
    flex-direction: column;
  }

  /* ★ここが肝：左右（上下）を同じ高さに固定＆中身を縦中央 */
  .sec-members .members-frame__inner > .members-col{
    display: flex;
    align-items: center;
  }

  .sec-members .members-col--left{
    min-height:42vw;
  }
  .sec-members .members-col--right{
    display: flex;
    flex-direction: column;
     align-items: flex-start!important;
    min-height:42vw;
  }
}

/* 境目中央の画像 */
.sec-members .members-divider{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.sec-members .members-divider img{
  display: block;
  width: 5vw;   /* 右矢印のサイズ */
  max-width:60px;
  height: auto;
}

@media (max-width: 767px){
  .sec-members .members-divider{
    top: calc(50% - 6px);     /* 上にずらす */
  }
  .sec-members .members-divider img{
    width: 40vw;               /* 下矢印のサイズ */
    max-width:70px;
  }
}

/* 左ブロック内の「画像＋テキスト」 */
.sec-members .member-offer{
  display: flex;
  align-items: center;           /* 左ブロック内の縦中央（中身） */
  gap: 7%;
  color:#000;
}

/* 左：画像（左右中央） */
.sec-members .member-offer__img{
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;       /* 左右中央 */
  min-width:12px;
}

.sec-members .member-offer__img picture,
.sec-members .member-offer__img img{
  display: block;
  width: 100%;
  height: auto;
}

/* 右：テキスト（左寄せ） */
.sec-members .member-offer__txt{
  flex: 1;
  text-align: left;
}

/* 行ごとのサイズ */
.sec-members .member-offer__line{
  margin: 0;
  line-height: 1.15;
}

.sec-members .member-offer__line--top{
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight:700;
}

.sec-members .member-offer__line--mid{

  font-size: clamp(12px, 1.5vw, 16px);
  margin-top: 1.3vw;
  font-weight:700;
}

/* 価格 */
.sec-members .member-offer__price{
  margin: 3px 0 0;
  line-height: 1;
  display: flex;
  align-items: baseline;
  font-weight:700;

}

.sec-members .member-offer__price-main{
  font-size: clamp(32px, 3vw, 36px);
  font-weight: 700;
}

.sec-members .member-offer__price-sub{
  font-size: clamp(12px, 1.4vw, 20px);  /* 円 */
  font-weight: 700;
}

/* SPでも横並び維持（縦並びにしない） */
@media (max-width: 767px){
  .sec-members .member-offer{
    gap: 20px;
  }

  .sec-members .member-offer__img{
    flex-basis: 42%;
  }

  .sec-members .member-offer__line--top{
    font-size: 18px;
  }

  .sec-members .member-offer__line--mid{
    font-size: 13px;
  }

  .sec-members .member-offer__price-main{
    font-size: clamp(36px, 9vw, 65px)
  }

  .sec-members .member-offer__price-sub{
    font-size: 15px;
  }

}




/* 右ブロック */
.sec-members .members-col--right{
  background: #f9f2e5;
  color: #c88200;
  text-align: left;

  position: relative; /* バッジ配置用 */
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦位置中央 */
}

/* 会員価格 */
.sec-members .members-price{
  color: #c88200;
}

.sec-members .members-price__label{
  margin: 0 0 0 11%;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height:1em;
}

.sec-members .members-price__value{
  margin: 0 0 0 9%;
  display: flex;
  align-items: baseline;
}

.sec-members .members-price__num{
  font-size: clamp(50px, 6vw, 70px);
  font-weight: 700;
  line-height:1em;
  letter-spacing:-0.01em;
}

.sec-members .members-price__yen{
  font-size: clamp(30px, 3.5vw, 40px);   /* 円 */
  font-weight: 700;
}

.sec-members .members-price__tax{
  font-size: clamp(16px, 1.6vw, 20px);  /* （税込） */
  font-weight: 700;
  letter-spacing:-0.01em;
  margin-left:-8px;
}

/* 送料 無料（右上・真円・ゴシック） */
.sec-members .members-badge{
  position: absolute;
  top: 10%;
  right: 4%;

  width: 6vw;
  height: 6vw;
  max-width:80px;
  max-height:80px;
  border-radius: 50%;
  background: #c88200;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  line-height: 1.2;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    "Yu Gothic",
    "Yu Gothic Medium",
    "Meiryo",
    system-ui,
    sans-serif;

  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
}

@media (max-width: 767px){

  .sec-members .members-price__label{
    margin: 0 0 0 11%;
    font-size: clamp(20px, 4vw, 40px);

  }

  .sec-members .members-price__num{
    font-size: clamp(54px,14vw,120px);
    letter-spacing:-0.01em;
  }

  .sec-members .members-price__yen{
    font-size: clamp(30px, 4vw, 40px);   /* 円 */

  }

  .sec-members .members-price__tax{
    font-size: clamp(16px, 4vw, 40px);  /* （税込） */
    letter-spacing:-0.01em;
    white-space: nowrap;
    margin-left:-8px;
  }

  /* 送料 無料（右上・真円・ゴシック） */
  .sec-members .members-badge{
    position: absolute;
    top: 50%; 
    right: 6%;
    transform: translateY(-50%); /* ← 縦中央に補正 */
    width: 18vw;
    height: 18vw;
    max-width:100px;
    max-height:100px;
    border-radius: 50%;
    background: #c88200;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    line-height: 1.2;

    font-size: clamp(16px, 3vw, 20px);
    font-weight: 400;
  }



}



/* 下部 バナー */
.offer img.ban {
  width: 50vw;
  max-width:700px;
  height: auto;
  margin: 4vw auto 0;
}

@media (max-width: 767px) {

  .offer img.ban {
    width: 90%;
    margin: 14vw auto 0;
  }
}





/* 電話での問い合わせ */
.sec-tel {
  margin: 0;
  padding: 50px 0 0;
}

.sec-tel picture{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-tel  picture > img{
  height: auto;
  display: block;
  margin: 0 auto;
}
.sec-tel .tel1 picture > img{
  width: 25%;
  max-width:400px;min-width:250px;
}
.sec-tel .tel2 picture > img{
  width: 25%;
  max-width:400px;min-width:250px;
  margin:20px auto;
}
.sec-tel .tel3 picture > img{
  width: 23%;
  max-width:400px;min-width:220px;
}
/* デフォルト：PC */
.tel2__link--sp{
  display: none;
}
.tel2__link--pc{
  display: block;
}


@media (max-width: 767px) {
  .sec-tel {
    padding-top:50px;
  }
  .sec-tel .picture > img{
    margin: 0 auto;
  }

  .sec-tel .tel1 picture > img{
    width: 75%;
    max-width:90%;
  }
  .sec-tel .tel2 picture > img{
    width: 80%;
    margin:5vw auto 6.5vw;
    max-width:90%;
  }
  .sec-tel .tel3 picture > img{
    width: 68%;
    max-width:90%;
  }
  
  /* SP：電話リンク有効 */
  .tel2__link--sp{
    display: block;
  }
  .tel2__link--pc{
    display: none;
  }
}




/* Oil Style セクション */
.sec-oilstyle {
  margin: 70px 0 20px;
  padding: 50px 0 0;
}

.sec-oilstyle picture{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* オリーブオイルをもっと知りたいなら */
.sec-oilstyle .shiri picture > img{
  height: auto;
  display: block;
  margin: 0 auto;
  width: 47%;
  max-width:400px;min-width:250px;
}

/* ===== Oil Style 下線 ===== */
.sec-oilstyle .oilstyle-line{
  width: 100%;
  height: 2px;
  background: #649664;
  margin: 20px 0 0;
}

@media (max-width: 767px) {
  .sec-oilstyle {
    padding-top:40px;
  }
  .sec-oilstyle .shiri picture > img{
    margin: 0 auto;
    width: 80%!important;
  }
  .sec-oilstyle .oilstyle-line{
    margin: 25px 0 0;
  }
}


/* Oil Style タイトル */
.sec-oilstyle .oilstyle picture > img{
  height: auto;
  display: block;
  margin: 60px auto 0;
  width: 38%;
  max-width:370px;min-width:200px;
}

@media (max-width: 767px) {

  .sec-oilstyle .oilstyle picture > img{
    margin: 45px auto 0;
    width: 67%!important;
  }

}



/* ===== Oil Style Panels ===== */
.oilstyle-panels{
  width: min(92%, 1080px);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 18px;
}

.oilstyle-panel{
  background: #f4f4f3;
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  padding: 18px;
  box-sizing: border-box;
  transition: opacity .25s ease;
}

.oilstyle-panel:hover{
  opacity: .75;
}

/* 画像 */
.oilstyle-panel__img{
  width: 100%;
}

.oilstyle-panel__img img{
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト */
.oilstyle-panel__txt{
  margin-top: 14px;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    "Yu Gothic",
    "Meiryo",
    system-ui,
    sans-serif;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  font-weight:700;
  letter-spacing:-0.01em;
}

/* ===== SP ===== */
@media (max-width: 767px){
  .oilstyle-panels{
    margin: 40px auto 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
  }

  .oilstyle-panel{
    padding: 14px;
  }

  .oilstyle-panel__txt{
    font-size: 16px;
    letter-spacing:-0.01em;
    line-height: 1.3;
  }
}



/* Oil Style　もっと見る */
.os-motto{
  width: 35%;
  max-width:400px;
  margin:70px auto 0;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  background: #777059;
  color: #fff;
  text-decoration: none;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    "Yu Gothic",
    "Yu Gothic Medium",
    "Meiryo",
    system-ui,
    sans-serif;

  box-sizing: border-box;
  padding: 12px 16px;
}

/* ラベル */
.os-motto__label{
  font-size: 16px;
  line-height: 1;
}

/* 右矢印（CSSで構成） */
.os-motto__arrow{
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  display: inline-block;
  margin-top:4px;
  margin-left:8px;
}
/* hover */
@media (hover:hover){
  .os-motto:hover{ opacity: .88; }
}


@media (max-width: 767px){
  .os-motto{
    width:92%;
    max-width:none;
    font-size:18px;
    margin-top:25px;
  }
  .os-motto__label{
    font-size: 25px;
    line-height: 1;
  }

  .os-motto__arrow{
    width: 8px;
    height: 8px;
    margin-top: 1px;
  }
}
