
@charset "utf-8";

/* ==========================================================================
   PEACH-PIG 商品ページ共通CSS
   --------------------------------------------------------------------------
   使い方：商品説明欄（フリースペース）を次のように囲む
     キャリアオイル → <div class="pp pp-oil"> ... </div>
     美容成分       → <div class="pp pp-ing">  ... </div>  ※今後追加
   --------------------------------------------------------------------------
   [A] グローバル（.pp の外に効くもの・必要最小限）
   [B] .pp     … 全カテゴリ共通パーツ
   [C] .pp-oil … キャリアオイル固有パーツ
   ========================================================================== */


/* ==========================================================================
   [A] グローバル
   ここだけは .pp の外に効きます。追加は慎重に。
   ========================================================================== */

/* Webフォント読み込み（共通CSSの先頭に置く） */
@import url("https://fonts.googleapis.com/css2?family=Roboto&family=Noto+Serif+JP&display=swap");

/* クリエイターモードのお気に入り登録ボタン
   ※ MakeShop側が出力する要素のため .pp の外に置く */
.item-favorite a {
  font-size: var(--font-size-std);
  border: 1px solid var(--favorite);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 28px;
  border-radius: 2px;
  margin-top: 12px !important;
  padding: 20px !important;
}

/* ページ内アンカーのスムーススクロール
   ※ html にしか指定できないため、やむを得ずグローバル。
      不要なら丸ごと削除して構いません。 */
html {
  scroll-behavior: smooth;
}
  
/* ==========================================================================
   [B] .pp … 全カテゴリ共通
   ========================================================================== */

/* --- 土台 ---------------------------------------------------------------- */
.pp {
  --grid: 4.34vw;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", 'Lato', 'Noto Sans JP',
               "YuGothic", "游ゴシック体", sans-serif;
  letter-spacing: 2px;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 !important;
  background-color: white;
  overflow-x: hidden;
  box-sizing: border-box;
}

.pp main {
  width: 100%;
  margin: 0 auto !important;
}

.pp .serif {
  font-family: 'Roboto', 'Noto Serif JP', serif;
}

.pp a,
.pp a:link,
.pp a:visited,
.pp a:hover,
.pp a:active {
  color: inherit;        /* どの状態でも同じ色 */
  text-decoration: none; /* 下線も消す */
  transition: 0.5s;
}

.pp img,
.pp video,
.pp iframe {
  max-width: 100%;
  height: auto;
}

/* --- PC / スマホ 出し分け -------------------------------------------------- */
.pp .only-sp { display: none !important; }
.pp .only-pc { display: block !important; }

@media screen and (max-width: 600px) {
  .pp .only-sp { display: block !important; }
  .pp .only-pc { display: none !important; }
}

/* --- スクロールアニメーション ---------------------------------------------- */
/* 本文用：完全に表示される */
.pp .fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.pp .fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* 背景の飾り画像用：うっすら表示（濃さは opacity の数値で調整） */
.pp .fade-bg {
  opacity: 0;
  transform: translateY(150px);
  transition: all 0.8s ease-out;
}
.pp .fade-bg.show {
  opacity: 0.3;
  transform: translateY(0);
}

.pp .fade-bg-right {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.8s ease-out;
}
.pp .fade-bg-right.show {
  opacity: 0.3;
  transform: translateX(0);
}

/* --- 注釈（※）------------------------------------------------------------ */
.pp .kome {
  font-size: 12px;
  color: rgb(131, 128, 128);
}

.pp .kome-white {
  font-size: 12px;
  color: #fff;
}

.pp .kome-ex {
  font-size: 12px;
  margin-top: 5px !important;
  margin-right: 50px !important;
  display: block;
  text-align: right;
  color: rgb(131, 128, 128);
}

.pp .kome-ex02 {
  font-size: 12px;
  margin-top: 0 !important;
  margin-right: 50px !important;
  display: block;
  text-align: right;
  color: rgb(131, 128, 128);
}
/* --- 区切りの縦線 --------------------------------------------------------- */
.pp .center-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 0!important;
  box-sizing: content-box;
  margin: 0 auto !important;
}

.pp .v-line {
  width: 1px;
  height: 100px;
  background-color: #000;
  margin: 0 auto !important;
}

.pp .center-box .about {
  font-size: clamp(15px, 4vw, 25px);
  text-align: center;
  font-weight: bold;
  color: #808080;
  margin: 20px auto 0 !important;
  padding: 0 !important;
}

@media (max-width: 600px) {
  .pp .center-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
  }
  
  .pp .v-line {
    width: 1px;
    height: 80px;
    background-color: #000;
    margin: 0 auto !important;
  }
  
  .pp .center-box .about {
    font-size: 18px;
    margin: 20px auto 0 !important;
  }
}
.pp .about {
  display: block !important;
  width: 100% !important;
  font-size: clamp(15px, 4vw, 25px) !important;
  text-align: center !important;
  font-weight: bold !important;
  color: #808080 !important;
  margin: 0 auto 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 600px) {
  .pp .about {
    font-size: 18px !important;
    margin: 20px auto 0 !important;
  }
}

/* --- 見出し（装飾用）------------------------------------------------------ */
.pp h5 {
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-weight: blod;
  text-align: center;
  color: #808080;
  padding-top: 50px !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
}

.pp h6 {
  text-align: center;
  font-size: clamp(35px, 4vw, 40px);
  color: #f5f5f5;
  margin: 0 auto !important;
}

@media screen and (max-width: 600px) {
  .pp h5 {
    font-size: clamp(1rem, 4vw, 1.2rem);
    padding-bottom: 0 !important;
    padding-top: 100px !important;
  }
  .pp h6 {
    font-size: clamp(30px, 4vw, 35px);
  }
}

/* --- 見出しライン（関連商品など）------------------------------------------- */
.pp .linetotal {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pp .line-left2 {
  position: relative;
　margin: 30px auto!important;
  padding-left: 300px !important;
  font-size: clamp(15px, 4vw, 20px);
}

.pp .line-left2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 62%;
  width: 280px;
  border-top: 2px solid #000;
  transform: translateY(-50%);
}

@media screen and (max-width: 600px) {


  .pp .line-left2 {
    padding-left: 5px !important;
    padding-top: 20px !important;
  }
  .pp .line-left2::before {
    width: 90px;
  }
}

/* --- 関連商品・レシピ集の横並びカード -------------------------------------- */
.pp .reshipi-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px !important;
}

.pp .gazou1 {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto 50px !important;
}

/* --- 関連商品・レシピ集の横並びカード -------------------------------------- */
.pp .reshipi-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px !important;
}

.pp .gazou1 {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto 50px !important;
}

/* 画像とテキストを実際に横並びにしているのはこの <a> */
.pp .gazou1 a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.pp .gazou1 img {
  width: 200px;
  height: 200px;
  min-width: 200px;
  min-height: 200px;
  flex-shrink: 0;
}

.pp .honbun {
  flex: 1;
  min-width: 0;
}

.pp .honbun1 {
  font-size: clamp(14px, 4vw, 1.2rem);
}

.pp .honbun2 {
  font-size: clamp(12px, 4vw, 14px);
}

.pp .recipi-link {
  font-size: clamp(5px, 4vw, 13px);
  text-align: right;
  letter-spacing: 1px;
}

.pp .recipi-link:hover { color: #5f9ea0; }

.pp .recipi-link:active {
  position: relative;
  top: 6px;
  left: 10px;
}

@media screen and (max-width: 600px) {
  .pp .gazou1 {
    width: 100%;
    margin-bottom: 5px !important;
    margin-left: 0 !important;
  }
  .pp .gazou1 a {
    gap: 10px;
    justify-content: flex-start;
  }
  .pp .gazou1 img {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
  }
  .pp .honbun {
    text-align: left;
  }
  .pp .honbun1 { font-size: clamp(14px, 4vw, 18px); }
  .pp .recipi-link { margin-right: 0 !important; }
  .pp .reshipi-section {
    width: 90%;
    margin: 20px auto !important;
  }
}
/* --- 「〇〇はこちら」ボタン ----------------------------------------------- */
.pp .kotira {
  width: clamp(300px, 90%, 500px);
  margin: 80px auto 50px !important;
  text-align: center;
  background-color: #e6e6e6;
  padding: 15px 5px !important;
  font-size: clamp(12px, 4vw, 17px);
}

.pp .kotira:hover {
  background-color: white;
  border: 1px solid #000000;
}

/* --- 商品詳細テーブル ----------------------------------------------------- */
.pp .detail {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px !important;
}

.pp .my-hr {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background-color: #ccc;
  border: none;
  margin-top: 100px !important;
}

.pp .my-hr2 {
  width: 100%;
  max-width: 1200px;
  height: 2px;
  background-color: #ccc;
  border: none;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.pp .my-hr3 {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background-color: #ccc;
  border: none;
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.pp .aboutgoods {
  width: 100%;
  max-width: 1200px;
  font-size: clamp(15px, 4vw, 20px);
  text-align: left;
  padding-left: 50px !important;
  font-weight: bold;
  color: #595857;
  height: 30px;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  align-items: center;
}

.pp .outline {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1000px;
  margin-left: 50px !important;
}

.pp .itemm {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

.pp .label {
  width: 20%;
  font-size: clamp(13px, 4vw, 15px);
  flex-shrink: 0;
  text-align: left;
  align-items: center;
  display: flex;
}

.pp .discription {
  flex: 1;
  font-size: clamp(13px, 4vw, 15px);
  color: #696969;
}

@media screen and (max-width: 600px) {
  .pp .detail {
    margin-left: 0 !important;
    margin-bottom: 50px !important;
  }
  .pp .my-hr {
    height: 1px;
    margin-top: 50px !important;
  }
  .pp .my-hr2 {
    height: 1px;
    margin-bottom: 10px !important;
  }
  .pp .my-hr3 {
    height: 1px;
    margin-top: 30px;
    margin-bottom: 10px !important;
  }
  .pp .aboutgoods {
    display: inline-block;
    font-size: clamp(10px, 4vw, 15px);
    padding-left: 5px !important;
  }
  .pp .outline {
    gap: 5px;
    max-width: 90%;
    margin-left: 0 !important;
  }
  .pp .itemm { width: 100%; }
  .pp .label {
    width: 20%;
    margin-left: 10% !important;
    font-size: 0.9rem;
  }
  .pp .discription {
    width: 80%;
    font-size: 0.8rem;
    padding-left: 20px !important;
  }
}

/* --- ネコポス等の小タグ --------------------------------------------------- */
.pp .neko,
.pp .neko2 {
  display: inline-block;
  background-color: #e0e0e0;
  padding: 1% 2% !important;
  margin-top: 2% !important;
}

.pp .neko2 {
  margin-right: 4% !important;
}

/* --- おすすめ商品リスト（2列グリッド）------------------------------------- */
.pp .another-itmes {
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 0 !important;
  position: relative;
}

.pp .another-items__list {
  width: 100%;
  max-width: 1200px;
  background-color: #F7F7F7;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 55px;
  padding: 0 50px 50px !important;
  margin: 0 auto 100px !important;
  list-style: none;
  box-sizing: border-box;
}

.pp .another-items__list li {
  border-bottom: 1px dashed #1A1A1A;
  padding: 20px 10px 20px !important;
}

.pp .another-items__list li strong {
  display: block;
  font-size: clamp(0.8rem, 4vw, 1.0rem);
}

.pp .another-items__list li p {
  font-size: clamp(0.6rem, 4vw, 0.8rem);
  font-weight: 500;
}

.pp .todetail {
  letter-spacing: 2px;
  text-align: right;
  position: relative;
}

.pp .todetail:hover {
  color: #98514B;
  right: -2px;
}

.pp .todetail:active {
  color: #98514B;
  position: relative;
  top: 2px;
  left: 5px;
}

@media screen and (max-width: 600px) {
  .pp .another-itmes {
    margin: 100px auto 0 !important;
    grid-template-columns: 1fr;
  }
  .pp .another-items__list {
    grid-template-columns: 1fr;
    gap: 0.2px;
    margin-top: 0 !important;
    padding: 40px 0 !important;
    text-align: left;
  }
  .pp .todetail { padding-right: 0; }
}

/* --- レビュー枠 ----------------------------------------------------------- */
.pp .review {
  width: 100%;
  max-width: 1200px;
}

/* --- 自動スクロールスライダー --------------------------------------------- */
.pp .slider {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto !important;
  overflow: hidden;
  border: 1px solid #ccc;
  padding: 10px 0 !important;
  box-sizing: border-box;
  z-index: 100;
}

.pp .slides {
  display: flex;
  will-change: transform;
}

.pp .slides li {
  flex: 0 0 90%;
  margin: 0 5% !important;
  list-style: none;
}

.pp .slides img {
  width: 950px;
  max-width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.pp .slides a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
  text-decoration: none;
}

.pp .slides li a {
  position: relative;
  z-index: 1;
}

.pp .slides p {
  font-size: clamp(14px, 4vw, 16px);
  margin: 0 0 10px !important;
  text-align: center;
  letter-spacing: 5px;
  pointer-events: none;
}

.pp .slide-title {
  max-width: 100%;
  margin: 100px auto 20px !important;
  text-align: center;
  font-size: clamp(18px, 4vw, 22px);
  letter-spacing: 5px;
  color: #302d2d;
  background-color: rgb(158, 143, 143, 0.2);
  padding: 10px !important;
  display: inline-block;
}

.pp .slider-ex {
  font-size: clamp(12px, 4vw, 14px) !important;
  margin: 0 auto !important;
  letter-spacing: 4px;
  width: 100% !important;
  max-width: 800px !important;
  display: block;
  text-align: center;
}

/* --- シリーズ名タグ ------------------------------------------------------- */
.pp .series {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto !important;
  text-align: left;
}

.pp .series-item {
  display: inline-block;
  font-size: clamp(14px, 4vw, 16px);
  border: 1px solid #696969;
  padding: 5px 10px !important;
  margin: 10px !important;
  color: #696969;
  letter-spacing: 5px;
  line-height: 1.6;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.pp .series a { text-decoration: none; }
.pp .series a:hover { cursor: pointer; }

.pp .series a:hover .series-item {
  background-color: #f2e8d8;
  border-color: #c8b89a;
  color: #5a4a2c;
  transform: translateY(-2px);
}

@media screen and (max-width: 600px) {
  .pp .series-item {
    font-size: 12px;
    padding: 5px 5px !important;
    margin: 5px !important;
  }
}

/* --- 固定バナー（PC：画面右端の縦中央／スマホ：画面下部）------------------- */
.pp .fixed-banner {
  background: rgba(150, 173, 169, 1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-size: 18px;
  color: #fff;
}

@media screen and (min-width: 600px) {
  .pp .fixed-banner {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px !important;
  }
}

@media screen and (max-width: 600px) {
  .pp .fixed-banner {
    padding: 10px 15px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    writing-mode: horizontal-tb;
    box-sizing: border-box;
  }
  /* バナーに隠れないよう末尾に余白 */
  .pp { padding-bottom: 60px !important; }
}

/* --- 関連ページへの誘導ボタン（黒帯・2つ並び）------------------------------ */
.pp .carrier-oil-links {
  display: flex;
  gap: 20px;
  margin: 40px auto !important;
  max-width: 900px;
}

.pp .carrier-oil-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 15px 20px !important;
  box-sizing: border-box;
  background: #292828;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 18px;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.pp .carrier-oil-link:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .pp .carrier-oil-links {
    flex-direction: column;
    gap: 12px;
    margin: 30px 0 !important;
    width: 100%;
    box-sizing: border-box;
  }
  .pp .carrier-oil-link {
    width: 100%;
    min-height: 65px;
    font-size: 16px;
    box-sizing: border-box;
  }
}


/* ==========================================================================
   [C] .pp-oil … キャリアオイル固有
   ========================================================================== */

/* --- ヒーロー画像・大見出し ------------------------------------------------ */
.pp-oil .jojoba-pic {
  width: 80%;
  max-width: 1000px;
  margin: 80px auto !important;
  display: block;
}

.pp-oil .jojoba-feature {
  font-size: clamp(22px, 2.5vw, 25px);
  letter-spacing: 2;
  margin: 50px auto !important;
  display: block;
  text-align: center;
  position: relative;
  color: rgb(88, 83, 83);
  font-weight: 800;
}

.pp-oil .jojoba-tiltle {
  font-size: clamp(30px, 2.5vw, 33px);
  letter-spacing: 2;
  margin: 50px auto !important;
  display: block;
  text-align: center;
  position: relative;
}

.pp-oil .jojoba-tiltle::after {
  content: "";
  height: 4px;
  width: 5%;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #696969;
}

.pp-oil .jojoba-tiltle-ex {
  width: 80%;
  max-width: 1000px;
  display: block;
  text-align: center;
  margin: 50px auto !important;
  color: #0f0f0f;
}

.pp-oil .jojoba-tiltle-ex p {
  text-align: center;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 1.8;
  line-height: 2;
}

@media screen and (max-width: 600px) {
  .pp-oil .jojoba-pic { width: 100%; }
  .pp-oil .jojoba-tiltle { font-size: clamp(20px, 2.5vw, 25px); }
  .pp-oil .jojoba-tiltle-ex {
    width: 95%;
    margin: 50px auto !important;
  }
  .pp-oil .jojoba-feature {
    font-size: 20px;
    font-weight: 600;
  }
}

/* --- 特徴3ブロック（画像＋テキスト交互）----------------------------------- */
.pp-oil .about-jojoba-box {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
  margin: 100px auto !important;
  position: relative;
}

.pp-oil .about-jojoba-box01 {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto !important;
  flex-direction: row-reverse;
}

.pp-oil .about-jojoba-colorbox {
  position: absolute;
  top: 80%;
  left: 50%;
  width: 100vw;
  height: 230px;
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 40%, #f5f5f5 100%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.pp-oil .jojoba-pic01 { width: 50%; }

.pp-oil .about-jojoba-smallbox { width: 45%; }

.pp-oil .about-jojoba {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #696969;
  margin-bottom: 10px !important;
  text-align: left;
  font-weight: 800;
}

.pp-oil .about-jojoba-ex {
  font-size: clamp(13px, 2.5vw, 15px);
  color: #696969;
  line-height: 2;
  letter-spacing: 1.8;
  margin-bottom: 20px !important;
  text-align: left;
}

@media (max-width: 600px) {
  .pp-oil .about-jojoba-box,
  .pp-oil .about-jojoba-box01 {
    flex-wrap: wrap;
    gap: 50px;
    margin: 50px auto 10px !important;
  }
  .pp-oil .jojoba-pic01 { width: 100%; }
  .pp-oil .about-jojoba-smallbox {
    width: 95%;
    margin: 0 auto !important;
  }
  .pp-oil .about-jojoba {
    font-size: 18px;
    color: #414040;
    font-weight: 500;
  }
}

/* --- USDAオーガニック認定ボックス ----------------------------------------- */
.pp-oil .organic-jojoba-box {
  width: 80%;
  max-width: 800px;
  background-image: url("https://gigaplus.makeshop.jp/peachpig/carrieroil/jojoba-clear.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 !important;
  margin: 100px auto !important;
}

.pp-oil .about-organic-jojoba-title {
  font-size: clamp(20px, 2.5vw, 22px);
  text-align: center;
  font-weight: 800;
  margin: 0 auto 50px !important;
}

.pp-oil .about-organic-jojoba {
  display: block;
  font-size: clamp(20px, 2.5vw, 22px);
  text-align: center;
  margin: 50px !important;
}

.pp-oil .about-organic-jojoba-ex {
  display: block;
  text-align: center;
  margin: 50px !important;
  background-color: rgba(219, 213, 213, 0.8);
  padding: 15px !important;
}

.pp-oil .about-organic-jojoba-ex ul {
  font-size: clamp(16px, 2.5vw, 18px);
  text-align: left;
  margin: 50px !important;
  list-style: none;
}

@media (max-width: 600px) {
  .pp-oil .organic-jojoba-box {
    width: 100%;
    padding: 20px 0 !important;
    margin: 50px auto !important;
  }
  .pp-oil .about-organic-jojoba-title { margin: 0 auto 20px !important; }
  .pp-oil .about-organic-jojoba {
    font-size: 18px;
    margin: 20px !important;
  }
  .pp-oil .about-organic-jojoba-ex {
    margin: 20px !important;
    padding: 5px !important;
  }
  .pp-oil .about-organic-jojoba-ex ul {
    font-size: 14px;
    margin: 20px !important;
  }
}

/* --- 効果セクション（背景＋画像を絶対配置）-------------------------------- */
.pp-oil .organic-jojoba-kouka-box {
  width: 100%;
  height: 2300px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0)) top,
    linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0)) bottom,
    rgba(219, 213, 213, 0.8);
  background-repeat: no-repeat;
  background-size: 100% 200px, 100% 200px, 100% 100%;
}

.pp-oil .jojoba-section-inner {
  width: 100%;
  max-width: 1200px;
  position: relative;
  height: 2300px;
  margin: 0 auto !important;
}

.pp-oil .jojoba-ex01-title {
  font-size: clamp(20px, 2.5vw, 25px);
  letter-spacing: 2;
  font-weight: 700;
  padding-bottom: 10px !important;
}

.pp-oil .jojoba-ex01 {
  font-size: clamp(16px, 2.5vw, 18px);
  letter-spacing: 1.8;
  padding-bottom: 10px;
}

/* 効果01：かゆみ */
.pp-oil .kayumi {
  width: 50%;
  position: absolute;
  top: 5%;
  left: 2%;
  z-index: 50;
}
.pp-oil .jojoba-ex01-smallbox {
  width: 40%;
  position: absolute;
  top: 10%;
  right: 15%;
  z-index: 50;
  text-align: left;
}

/* 効果02：うるおい */
.pp-oil .uruoi {
  width: 40%;
  position: absolute;
  top: 25%;
  right: 5%;
  z-index: 30;
}
.pp-oil .jojoba-ex02-smallbox {
  width: 50%;
  position: absolute;
  top: 30%;
  left: 12%;
  z-index: 50;
  text-align: left;
}

/* 効果03：刺激 */
.pp-oil .sigeki {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 0%;
  z-index: 50;
}
.pp-oil .jojoba-ex03-smallbox {
  width: 40%;
  position: absolute;
  top: 55%;
  right: 8%;
  z-index: 50;
  text-align: left;
}

/* 効果04：はじめて */
.pp-oil .hazimete {
  width: 60%;
  position: absolute;
  top: 77%;
  right: 5%;
  z-index: 50;
}
.pp-oil .jojoba-ex04-smallbox {
  width: 40%;
  position: absolute;
  top: 80%;
  left: 8%;
  z-index: 50;
  text-align: left;
}

/* 背景の飾り画像 */
.pp-oil .jojoba-back01 {
  width: 50%;
  position: absolute;
  top: 1%;
  right: -10%;
  z-index: 10;
  opacity: 0.3;
}
.pp-oil .jojoba-back02 {
  width: 50%;
  position: absolute;
  top: 30%;
  left: -10%;
  z-index: 10;
  opacity: 0.3;
}
.pp-oil .jojoba-back03 {
  width: 50%;
  position: absolute;
  top: 60%;
  right: 30%;
  z-index: 10;
  opacity: 0.3;
}

@media (max-width: 600px) {
  .pp-oil .jojoba-ex01-title {
    font-size: 18px;
    padding-bottom: 5px !important;
  }
  .pp-oil .jojoba-ex01 { padding-bottom: 0; }

  .pp-oil .kayumi {
    width: 90%;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .pp-oil .jojoba-ex01-smallbox {
    width: 85%;
    top: 22%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
  }
  .pp-oil .uruoi {
    width: 90%;
    top: 34%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
  .pp-oil .jojoba-ex02-smallbox {
    width: 85%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .pp-oil .sigeki {
    width: 90%;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .pp-oil .jojoba-ex03-smallbox {
    width: 85%;
    top: 70%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
  .pp-oil .hazimete {
    width: 90%;
    top: 84%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
  .pp-oil .jojoba-ex04-smallbox {
    width: 85%;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .pp-oil .jojoba-back01 {
    width: 80%;
    top: 1%;
    right: 15%;
  }
  .pp-oil .jojoba-back02 {
    width: 80%;
    top: 17%;
    left: 15%;
  }
  .pp-oil .jojoba-back03 {
    width: 50%;
    top: 55%;
    right: 30%;
  }
}

/* --- 2種類の比較ボックス --------------------------------------------------- */
.pp-oil .jojoba-2 {
  font-size: clamp(18px, 2.5vw, 20px);
  letter-spacing: 2;
  font-weight: 800;
  display: block;
  width: 60%;
  max-width: 600px;
  border: 1px solid #696969;
  padding: 20px !important;
  text-align: center;
  margin: 50px auto !important;
}

.pp-oil .jojoba-2-allbox {
  margin: 50px auto !important;
  width: 80%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.pp-oil .jojoba-2-box,
.pp-oil .jojoba-3-box {
  width: 40%;
  margin: 0 auto !important;
  background-color: rgba(219, 213, 213, 0.3);
  text-align: center;
  padding: 20px 15px !important;
}

.pp-oil .jojoba-name {
  font-size: clamp(18px, 2.5vw, 20px);
  margin-bottom: 20px !important;
  font-weight: 700;
}

.pp-oil .jojoba-pic02 {
  width: 100%;
  max-width: 300px;
  max-height: 300px;
}

.pp-oil .jojoba-name-toku {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 500;
  margin: 20px auto !important;
  text-align: center;
}

.pp-oil .jojoba-name-toku-ex {
  width: 85%;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 1.8;
  line-height: 2;
  margin: 0 auto 25px !important;
  text-align: center;
  list-style: none;
}

.pp-oil .jojoba-name-toku-ex li { text-align: left; }

@media screen and (max-width: 600px) {
  .pp-oil .jojoba-2-allbox {
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
  }
  .pp-oil .jojoba-2 { color: #464343; }
  .pp-oil .jojoba-2-box,
  .pp-oil .jojoba-3-box {
    width: 95%;
    padding: 15px !important;
  }
}

/* --- 使い方（01&#12316;04）------------------------------------------------------ */
.pp-oil .howto-jojoba-box {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
  margin: 0 auto 150px !important;
}

.pp-oil .howto-jojoba-box01 {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 auto 150px !important;
}

.pp-oil .howtooil-pic01 {
  width: 60%;
  margin-left: 5% !important;
}

.pp-oil .howto-jojoba-smallbox {
  width: 45%;
  position: absolute;
  z-index: 10;
  top: 10%;
  left: 10%;
  text-align: center;
  background-color: rgb(212, 207, 207, 0.3);
  padding: 15px 30px !important;
}

.pp-oil .howto-jojoba-smallbox01 {
  width: 45%;
  position: absolute;
  z-index: 10;
  top: 10%;
  right: 5%;
  text-align: center;
  background-color: rgb(212, 207, 207, 0.3);
  padding: 15px 30px !important;
}

.pp-oil .howto-jojoba-01 {
  font-size: clamp(20px, 2.5vw, 25px);
  letter-spacing: 2;
  font-weight: 700;
  color: #696969;
}

.pp-oil .use-number {
  font-size: clamp(55px, 2.5vw, 60px);
  color: #727272;
  font-weight: 800;
  text-align: left;
}

.pp-oil .howto-jojoba-01-ex {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 2;
  letter-spacing: 1.6;
  text-align: left;
}

@media screen and (max-width: 789px) {
  .pp-oil .howto-jojoba-01 { margin: 20px auto !important; }

  .pp-oil .howto-jojoba-box {
    flex-direction: column-reverse;
    justify-content: center;
    margin: 0 auto 280px !important;
  }
  .pp-oil .howto-jojoba-box01 {
    flex-direction: column;
    justify-content: center;
    margin: 0 auto 280px !important;
  }
  .pp-oil .use-number { font-size: 30px; }

  .pp-oil .howtooil-pic01 {
    width: 100%;
    margin-left: 0 !important;
    display: block;
  }

  .pp-oil .howto-jojoba-smallbox,
  .pp-oil .howto-jojoba-smallbox01 {
    width: 95%;
    top: 110%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    background-color: rgba(239, 239, 245, 0.7);
    padding: 30px !important;
    overflow: hidden;
  }

  /* 下に白グラデーションを重ねる */
  .pp-oil .howto-jojoba-smallbox::after,
  .pp-oil .howto-jojoba-smallbox01::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
      to bottom,
      rgba(239, 239, 245, 0) 0%,
      rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  .pp-oil .howto-jojoba-01-ex {
    position: relative;
    z-index: 2;
  }
}

/* --- 「詳細はこちら」ボタン ------------------------------------------------ */
.pp-oil .oil-button,
.pp-oil .oil-button01 {
  margin: 20px !important;
}

.pp-oil .oil-button a {
  background: #bea0a0;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto !important;
  max-width: 250px;
  padding: 10px 25px;
  text-decoration: none;
  color: #333;
  line-height: 1.8;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.pp-oil .oil-button01 a {
  background: #88bba7;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto !important;
  max-width: 250px;
  padding: 10px 25px;
  text-decoration: none;
  color: #333;
  line-height: 1.8;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.pp-oil .oil-button a:after,
.pp-oil .oil-button01 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.pp-oil .oil-button a:hover,
.pp-oil .oil-button01 a:hover {
  background: #333;
  color: #FFF;
}

.pp-oil .oil-button a:hover:after,
.pp-oil .oil-button01 a:hover:after {
  right: 1.4rem;
}

/* --- スライダー見出し ------------------------------------------------------ */
.pp-oil .oil-series {
  font-size: clamp(30px, 2.5vw, 35px);
  border: 1px solid #696969;
  padding: 15px 20px !important;
  margin: 50px auto !important;
  display: block;
  text-align: center;
  width: 50%;
}

@media (max-width: 600px) {
  .pp-oil .oil-series {
    font-size: 21px;
    margin: 50px auto !important;
    width: 80%;
  }
}
/* ==========================================================================
   PEACH-PIG 美容成分カテゴリ固有CSS
   --------------------------------------------------------------------------
   使い方：商品説明欄を <div class="pp pp-ing"> で囲む
   前提：pp-common.css（.pp 共通パーツ）が既に共通CSSに入っていること
   （fade-up / only-sp・pc / kome / center-box・v-line / linetotal・line-left2 /
    gazou1・honbun*・recipi-link / detail・outline・itemm・label・discription・my-hr* /
    fixed-banner は .pp 側で定義済みなのでここでは書きません）
   ========================================================================== */


/* --- ヒーロー画像・タイトルボックス ---------------------------------------- */
.pp-ing .top-pic {
  background-size: cover;
  background-position: center;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto 100px !important;
  display: flex;
  align-items: center;
}

.pp-ing .top-pic2 {
  width: 100%;
  margin: 0 auto 100px !important;
}

.pp-ing .mozibox1 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.pp-ing .bcolor {
  width: 50%;
  height: 400px;
  max-width: 480px;
  padding: 30px 40px;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: left;
  box-sizing: border-box;
  align-items: center;
}

.pp-ing .mozi1-box {
  margin-top: 0 !important;
  width: 100%;
  height: 200px;
  align-items: center;
}

.pp-ing .mozi1 {
  padding: 50px 0 10px 50px !important;
  font-size: 18px;
  margin: 0 !important;
}

.pp-ing .mozi2 {
  font-size: clamp(16px, 4vw, 27px);
  font-weight: bold;
  padding: 10px 0 20px 50px !important;
  margin: 0 !important;
}

.pp-ing .mozi3 {
  padding: 0 50px 50px !important;
  font-size: 18px;
  margin: 0 !important;
}

.pp-ing .mozi4 {
  padding: 0 50px 50px !important;
  font-size: clamp(13px, 4vw, 18px);
  margin: 0 !important;
}

@media screen and (max-width: 800px) {
  .pp-ing .top-pic { width: 100%; margin: 0 auto 100px !important; }
}

@media screen and (max-width: 600px) {
  .pp-ing .top-pic {
    background-position: center right;
    width: 100%;
    margin: 0 auto 50px !important;
  }
  .pp-ing .bcolor {
    width: 100%;
    height: auto;
    padding: 30px;
    background-color: rgba(216, 221, 226, 0.7);
    text-align: left;
    box-sizing: border-box;
  }
  .pp-ing .mozi1-box { margin-top: 10px !important; }
  .pp-ing .mozi1 { padding: 10px 0 10px 50px !important; font-size: 18px; }
  .pp-ing .mozi3 { padding: 0 50px 0 50px !important; font-size: 18px; }
}


/* --- 「〇〇とは」導入文 ----------------------------------------------------- */
.pp-ing .about-eo-title {
  font-size: clamp(15px, 4vw, 25px);
  display: block;
  width: 90%;
  margin: 50px auto !important;
  letter-spacing: 2px;
  text-align: center;
}

.pp-ing .about-eo-ex {
  font-size: clamp(16px, 4vw, 18px);
  display: block;
  width: 90%;
  max-width: 700px;
  margin: 50px auto !important;
  letter-spacing: 1.8px;
  line-height: 2;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .pp-ing .about-eo-title {
    font-size: 18px;
    font-family: serif;
    margin: 50px auto 20px !important;
  }
  .pp-ing .about-eo-ex {
    font-size: 16px;
    line-height: 1.8;
    margin: 30px auto !important;
  }
}


/* --- 単体画像＋キャプション（特徴紹介）------------------------------------- */
.pp-ing .kera-pic {
  width: 80%;
  max-width: 800px;
  display: block;
  margin: 20px auto !important;
}

.pp-ing .kera-ex {
  width: 90%;
  max-width: 800px;
  font-size: clamp(18px, 2.5vw, 20px);
  line-height: 2;
  letter-spacing: 1.8px;
  font-weight: 500;
  display: block;
  margin: 20px auto !important;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .pp-ing .kera-pic { width: 100%; }
  .pp-ing .kera-ex {
    font-size: clamp(18px, 2.5vw, 20px);
    line-height: 1.8;
  }
}


/* --- セクション見出し ------------------------------------------------------- */
.pp-ing .ing-title {
  display: block;
  text-align: center;
  margin: 50px auto !important;
  width: 100%;
  font-size: clamp(25px, 2.5vw, 27px);
  line-height: 2;
}

@media (max-width: 600px) {
  .pp-ing .ing-title { font-size: 18px; }
}


/* --- 特徴ブロック（画像＋テキスト、左右交互）------------------------------- */
.pp-ing .arbutin-tokutyou,
.pp-ing .arbutin-tokutyou01,
.pp-ing .arbutin-tokutyou02 {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin: 80px auto !important;
}

.pp-ing .arbutin-tokutyou01 {
  flex-direction: row-reverse;
}

.pp-ing .arbuin-pic {
  width: 45%;
}

.pp-ing .arbutin-ex-smallbox {
  width: 45%;
}

.pp-ing .arbutin-ex-smallbox01 {
  width: 45%;
  margin-left: 40px !important;
}

.pp-ing .arbutin-title {
  width: 100%;
  font-size: clamp(25px, 2.5vw, 27px);
  line-height: 2;
  text-align: left;
}

.pp-ing .arbutin-ex {
  width: 90%;
  font-size: clamp(18px, 2.5vw, 20px);
  line-height: 2;
  letter-spacing: 1.8px;
  font-weight: 500;
}

.pp-ing .arbutin-ex a {
  text-decoration: none;
  background: linear-gradient(transparent 55%, #d8f3ff 55%);
  font-weight: 600;
}

.pp-ing .arbutin-ex a:hover {
  background: linear-gradient(transparent 45%, #bde9ff 45%);
}

@media screen and (max-width: 600px) {
  .pp-ing .arbutin-tokutyou,
  .pp-ing .arbutin-tokutyou01,
  .pp-ing .arbutin-tokutyou02 {
    gap: 10px;
    margin: 50px auto 0 !important;
  }
  .pp-ing .arbuin-pic { width: 100%; margin-bottom: 0 !important; }
  .pp-ing .arbutin-ex-smallbox { width: 95%; margin: 0 !important; }
  .pp-ing .arbutin-ex-smallbox01 { width: 95%; margin-left: 0 !important; }
  .pp-ing .arbutin-title {
    font-size: 20px;
    line-height: 1.6;
    text-align: left;
    margin: 20px auto!important;
  }
  .pp-ing .arbutin-ex {
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1.6px;
    text-align: left;
  }
}


/* --- 蛍光マーカー風リンク（相性のよい成分など）------------------------------ */
.pp-ing .highlight01 {
  background: linear-gradient(transparent 30%, rgba(150, 173, 169, 0.5) 40%);
  color: #333;
  text-decoration: none;
}


/* --- おすすめ成分の見出しライン --------------------------------------------- */
.pp-ing .ing-series {
  font-size: clamp(25px, 2.5vw, 30px);
  border: 1px solid #696969;
  padding: 15px 20px !important;
  margin: 100px auto 50px !important;
  display: block;
  text-align: center;
  width: 50%;
}

@media (max-width: 600px) {
  .pp-ing .ing-series {
    font-size: 20px;
    margin: 50px auto !important;
    width: 80%;
  }
}


/* --- おすすめ成分カード（4列グリッド）--------------------------------------- */
.pp-ing .ing-osusume-box {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto!important;
}

.pp-ing .ing-osusume-smallbox {
  width: 20%;
  max-width: 200px;
  margin: 0 auto !important;
  text-align: center;
}

.pp-ing .ing-osusume-pic {
  width: 100%;
  margin: 0 auto !important;
}

.pp-ing .ing-osusume-name {
  text-align: center;
  font-size: 15px;
  background-color: rgba(150, 173, 169, 0.5);
  padding: 15px !important;
  margin: 20px auto !important;
}

.pp-ing .ing-osusume-smallbox a:hover .ing-osusume-name {
  background-color: #000;
  color: #fff;
}

@media (max-width: 600px) {
  .pp-ing .ing-osusume-box {
    width: 90%;
    gap: 10px;
    justify-content: center;
    margin: 0 auto !important;
  }
  .pp-ing .ing-osusume-smallbox { width: 45%; max-width: 200px; }
  .pp-ing .ing-osusume-name { font-size: 14px; }
}
/* ==========================================================================
   .pp-ing 追加分：精油ページ固有パーツ
   （詳細/成分/相性の3列ボックス、注意書きセクション）
   ※ .top-pic / .mozibox1 / .about-eo-title / .arbutin-tokutyou系 / .highlight01 /
      .ing-series / .ing-osusume-* などは既存の .pp-ing にすでにあるためここには含めていません
   ========================================================================== */

.pp-ing .about {
  font-size: clamp(15px, 4vw, 25px);
  text-align: center;
  font-weight: bold;
  color: #808080;
  margin: 80px auto !important;
}

.pp-ing .about-box {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 50px auto !important;
}

.pp-ing .about-smallbox {
  width: 25%;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 auto !important;
  align-items: center;
}

.pp-ing .syousai1 {
  width: 25%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
}

.pp-ing .dai {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #000;
  font-size: 18px;
}

.pp-ing .dai::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://gigaplus.makeshop.jp/peachpig/essentialoil/Eodrop109x109-03.png");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.pp-ing .dai > * {
  position: relative;
  z-index: 2;
}

.pp-ing .syousai-box1 {
  width: 100%;
  margin: 0 auto !important;
  text-align: center;
}

.pp-ing .syousai-box1 img {
  width: 50%;
  margin: 0 auto !important;
  text-align: center;
}

.pp-ing .syousai-box1 ul {
  width: 80%;
  margin: 0 auto !important;
  padding-left: 0 !important;
  text-align: center;
  list-style: none;
}

.pp-ing .syousai-box1 li {
  font-size: 16px;
  padding-bottom: 5px !important;
  text-align: center;
}

.pp-ing .syousai-box1 > p {
  text-align: center !important;
  width: 100%;
  margin: 0 auto !important;
}

.pp-ing .syousai-box1 a {
  text-decoration: none;
  border-bottom: 1px dotted #666;
  padding-bottom: 2px;
  font-size: 16px;
}

@media screen and (max-width: 600px) {
  .pp-ing .about {
    font-size: 18px;
    margin: 30px auto !important;
  }
  .pp-ing .about-box {
    flex-direction: column;
    gap: 20px;
    margin: 50px auto !important;
    text-align: center;
  }
  .pp-ing .about-smallbox {
    width: 80%;
    margin: 0 auto !important;
  }
  .pp-ing .dai {
    font-size: 16px;
    padding: 10px 20px !important;
    width: 70px;
    height: 70px;
  }
  .pp-ing .syousai-box1 {
    width: 95%;
    margin: 0 auto !important;
    display: block;
  }
  .pp-ing .syousai-box1 img {
    width: 30%;
  }
  .pp-ing .syousai-box1 li {
    font-size: 16px;
    padding-bottom: 0 !important;
  }
}

/* --- 注意書きセクション ---------------------------------------------------- */
.pp-ing .itempic-total {
  width: 100%;
  max-width: 1200px;
  height: 800px;
  display: flex;
  flex-direction: column;
  margin: 0 auto !important;
  position: relative;
  z-index: 0;
}

.pp-ing .item-backcolor {
  background-color: rgba(247, 247, 247, 0.8);
  width: 100%;
  height: 600px;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
  margin-top: 0 auto 5% !important;
}

.pp-ing .itempic01 {
  width: 700px;
  margin-left: 0 !important;
  position: absolute;
  top: -100px;
  left: 80px;
}

.pp-ing .tyui {
  width: 100%;
  max-width: 1200px;
  padding-top: 100px !important;
  height: 250px;
  border-radius: 10px;
}

.pp-ing .tyui h2 {
  font-size: clamp(16px, 4vw, 21px);
  padding-left: 100px !important;
  padding-top: 200px !important;
}

.pp-ing .tyui h3 {
  font-size: clamp(16px, 4vw, 21px);
  padding-left: 100px !important;
  padding-top: 0 !important;
}

.pp-ing .tyuigaki ul {
  font-size: clamp(12px, 4vw, 18px);
  list-style: none;
  padding: 15px 80px 0 150px !important;
  letter-spacing: 2px;
  line-height: 30px;
}

.pp-ing .osusume {
  width: clamp(400px, 90%, 900px);
  padding-left: 110px !important;
  padding-top: 50px !important;
  display: flex;
  gap: 15px;
}

.pp-ing .osusume01 {
  background-color: #e0e0e0;
  padding: 5px 10px !important;
}

@media screen and (max-width: 768px) {
  .pp-ing .item-backcolor {
    height: 550px;
  }
  .pp-ing .itempic01 {
    width: 100%;
    margin-left: 0 !important;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 600px) {
  .pp-ing .itempic-total {
    height: 670px;
  }
  .pp-ing .tyui {
    padding-top: 10px !important;
    z-index: 1;
    margin: 30px auto !important;
  }
  .pp-ing .tyui h2 {
    font-size: clamp(15px, 4vw, 21px);
    padding-left: 0 !important;
    padding-top: 20px !important;
    margin: 120px auto 10px !important;
    text-align: center;
  }
  .pp-ing .tyuigaki ul {
    width: 90%;
    font-size: clamp(12px, 4vw, 16px);
    padding: 0 !important;
    letter-spacing: 2px;
    line-height: 20px;
    text-align: left;
    margin: 10px auto 0 !important;
  }
  .pp-ing .osusume {
    width: 100%;
    padding-left: 0 !important;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto !important;
    justify-content: center;
  }
  .pp-ing .osusume01 {
    width: 80%;
    margin: 0 auto !important;
  }
}
/* --- 配合化粧品の紹介ボックス ----------------------------------------------- */
.pp-ing .another-cosme-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pp-ing .another-cosme-box {
  width: 100%;
  max-width: 1200px;
  background-color: rgba(203, 216, 224, 0.3);
  padding: 50px 20px !important;
  margin: 40px auto !important;
  transition: 0.3s;
  box-sizing: border-box;
}

.pp-ing .another-cosme-link:hover .another-cosme-box {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

/* 上部のキャッチコピー（1つ目のボックスのみ） */
.pp-ing .another-cosme-name {
  width: 100%;
  font-size: clamp(18px, 2.5vw, 20px);
  letter-spacing: 2px;
  color: #696969;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 40px !important;
  line-height: 1.8;
}

/* 商品名の見出し */
.pp-ing .another-cosme-title {
  font-size: clamp(16px, 2.5vw, 18px);
  letter-spacing: 2px;
  color: #696969;
  display: block;
  text-align: center;
  margin: 0 auto 50px !important;
  line-height: 2;
}

/* 商品名のマーカー */
.pp-ing .highlight2 {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin: 10px auto 0 !important;
}

.pp-ing .highlight2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.7em;
  background: rgba(175, 202, 233, 0.7);
  z-index: -1;
}

/* 画像＋説明文の横並び */
.pp-ing .about-anothercosme-smallbox {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto !important;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.pp-ing .another-cosme-pic {
  width: 100%;
  max-width: 300px;
  display: block;
}

.pp-ing .about-anothercosme-ex {
  width: 50%;
  max-width: 400px;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2;
  color: #696969;
}

.pp-ing .highlight3 {
  margin: 0 !important;
}

@media screen and (max-width: 600px) {
  .pp-ing .another-cosme-box {
    padding: 30px 15px !important;
    margin: 30px auto !important;
  }
  .pp-ing .another-cosme-name {
    margin: 0 auto 25px !important;
    line-height: 1.7;
    font-size:16px;
    width: 95%;
  }
  .pp-ing .another-cosme-title {
    margin: 0 auto 25px !important;
  }
  .pp-ing .about-anothercosme-smallbox {
    flex-direction: column;
    gap: 20px;
  }
  .pp-ing .another-cosme-pic {
    max-width: 300px;
    margin: 0 auto !important;
  }
  .pp-ing .about-anothercosme-ex {
    width: 90%;
    text-align: left;
    font-size: 14px;
    letter-spacing: 1.8px;
    line-height: 1.8;
  }
}
/* --- 使い方（クリームへの混ぜ方など）---------------------------------------- */
.pp-ing .howto-01 {
  width: 100%;
  display: block;
  font-size: clamp(22px, 2.5vw, 25px);
  letter-spacing: 2px;
  margin: 100px auto 0 !important;
  text-align: center;
}

.pp-ing .howto-02 {
  width: 100%;
  display: block;
  font-size: clamp(16px, 2.5vw, 18px);
  color: #8b8585;
  letter-spacing: 2px;
  margin: 0 auto !important;
  font-weight: 500;
  text-align: center;
}

.pp-ing .howto-ex {
  max-width: 800px;
  width: 90%;
  display: block;
  font-size: clamp(15px, 2.5vw, 16px);
  letter-spacing: 1.8px;
  line-height: 2;
  margin: 40px auto 0 !important;
}

.pp-ing .howto-ex a {
  text-decoration: none;
  background: linear-gradient(transparent 55%, #d8f3ff 55%);
  font-weight: 600;
}

.pp-ing .howto-ex a:hover {
  background: linear-gradient(transparent 45%, #bde9ff 45%);
}

.pp-ing .howto-ex-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 60px auto 120px !important;
}

.pp-ing .howto-pic {
  max-width: 400px;
  width: 45%;
}

.pp-ing .howto-ex-02 {
  width: 40%;
  max-width: 450px;
  text-align: left;
  letter-spacing: 1.5px;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 2;
}

@media screen and (max-width: 600px) {
  .pp-ing .howto-01 {
    margin: 50px auto 0 !important;
  }
  .pp-ing .howto-ex {
    width: 90%;
    font-size: 15px;
  }
  .pp-ing .howto-ex-box {
    flex-direction: column;
    gap: 20px;
    margin: 40px auto !important;
  }
  .pp-ing .howto-pic {
    width: 90%;
    max-width: 400px;
  }
  .pp-ing .howto-ex-02 {
    width: 90%;
    max-width: none;
    text-align: left;
    font-size: 14px;
  }
}
/* --- gazou1カード内の「もっと見る」ボタン（黒背景・白文字の四角ボタン） -------- */
.pp .recipi-btn {
  display: inline-block;
  background-color: #000;
  color: #fff !important;
  padding: 8px 18px !important;
  text-align: center;
  letter-spacing: 1px;
  font-size: clamp(12px, 4vw, 14px);
  transition: background-color 0.3s ease;
}

.pp .recipi-btn:hover {
  background-color: #5f9ea0;
  color: #fff !important;
}

.pp .recipi-btn:active {
  position: static;
  top: auto;
  left: auto;
}

@media screen and (max-width: 600px) {
  .pp .recipi-btn {
    padding: 6px 14px !important;
  }
}
/* --- gazou1カード内のテキスト行間を広げる ---------------------------------------------------- */
.pp .gazou1 .honbun {
  line-height: 1.8;
}

.pp .gazou1 .honbun p {
  margin-bottom: 10px !important;
}

.pp .gazou1 .honbun p:last-child {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 600px) {
  .pp .gazou1 .honbun {
    line-height: 1.6;
  }
  
  .pp .gazou1 .honbun p {
    margin-bottom: 8px !important;
  }
}

/* =========================
   作り方
========================= */
.blog-useitem-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 50px auto!important;
  width: 100%;
  max-width: 1200px;
}

.blog-howtomake-box {
  width: 100%;
  max-width: 1200px;
text-align: center;
  background: #fff;
  padding: 25px 20px!important;
  margin: 30px auto!important;
}

/* 作り方の見出し */
.blog-howtomake-box .ing-howtomake {
  font-size: 18px;
  letter-spacing: 1.8px;
  text-align: center;
  font-weight: bold;
  margin: 0 0 20px !important;
  padding-left: 8px !important;
  color: #246663;
}
.blog-howtomake-box .ing-howtomake{
  text-align: center;
 
}

/* 作り方の各工程 */
.blog-howtomake-box .howtomake-number-ex {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 18px!important;
  padding: 0!important;
  line-height: 1.9;
}

/* 最後の工程だけ下の余白をなくす */
.blog-howtomake-box .howtomake-number-ex:last-child {
  margin-bottom: 0!important;
}
/* 番号の丸 */
.blog-howtomake-box .numberhowtomake {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid #246663;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #246663;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  margin-top: 2px;
}

@media screen and (max-width: 768px) {
.blog-howtomake-box {
  width: 90%;
  text-align: left;
}
}
/* 原料カード */
.blog-useitem-box {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 15px!important;
  box-sizing: border-box;
}

/* 商品画像 */
.blog-useitem-box > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto 12px!important;
}

/* 商品名 */
.blog-useitem-box h3 {
 background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 17px !important;
  color: #246663;
  padding: 0 !important;
  margin: 0 0 8px !important;
}

/* 商品説明 */
.blog-useitem-box .useitem-ex {
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 15px!important;
  text-align: left;
}

/* リンク */
.blog-useitem-box .useitem-links {
display: flex; 
flex-direction: column; 
gap: 8px; 
margin-top: auto;
}

/* 詳細ページ・レシピページ */
.blog-useitem-box .useitem-links a {
  display: block; width: 100%; 
  box-sizing: border-box; 
  text-align: center; 
  font-size: 13px; 
  line-height: 1.5; 
  padding: 8px 4px!important; 
  text-decoration: none;
}

/* 詳細ページ */
.blog-useitem-box .goto-useitem {
  color: #246663;
  border: 1px solid #246663;
  background: #fff;
}

/* レシピページ */
.blog-useitem-box .goto-recipepage {
color: #fff; 
background: #246663; 
border: 1px solid #246663;
}
/* ホバー */ 
.blog-useitem-box .goto-useitem:hover { 
  color: #fff; 
  background: #246663; 
}
.blog-useitem-box .goto-recipepage:hover { 
  color: #246663; 
  background: #fff; 
}
@media screen and (max-width: 768px) {

  .blog-useitem-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .blog-useitem-box {
    padding: 10px;
  }

  .blog-useitem-box h3 {
    font-size: 15px;
  }

  .blog-useitem-box .useitem-ex {
    font-size: 13px;
    line-height: 1.7;
  }

  .blog-useitem-box .useitem-links a {
    font-size: 12px;
    padding: 7px 3px;
  }

}
/* =========================================================
   【pp-common.style.css の末尾に追記】
   精油ページ：資料ボタン3つ（精油データ／成分分析／IFRA適合証明書）
   濃いオリーブグリーン地に白文字の四角ボタン。中央に横並び。
   ※ .pp スコープ。既存クラスへの影響なし／アニメーションなし
   ========================================================= */

.pp .oil-doc-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  margin: 32px auto 40px!important;
  padding: 0 16px;
  box-sizing: border-box;
}

.pp .oil-doc-btns a.oil-doc-btn {
  display: inline-block;
  min-width: 150px;
  padding: 10px 28px!important;
  box-sizing: border-box;
  background: #363e2a;
  border: 1px solid #363e2a;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  font-weight: nomal;
  line-height: 1.5;
  letter-spacing: 0.5em;
  text-align: center;
  text-decoration: none;
}

.pp .oil-doc-btns a.oil-doc-btn:link,
.pp .oil-doc-btns a.oil-doc-btn:visited {
  color: #fff;
  text-decoration: none;
}

/* ホバー：色を少し明るくするだけ */
.pp .oil-doc-btns a.oil-doc-btn:hover {
  background: #8f9487;
  border-color: #8f9487;
  color: #fff;
}

/* スマホ：3つ横並びのまま幅に合わせて縮める */
@media screen and (max-width: 767px) {
  .pp .oil-doc-btns {
    gap: 8px;
    margin: 24px auto 28px;
    padding: 0 12px;
    flex-wrap: nowrap;
  }
  .pp .oil-doc-btns a.oil-doc-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 4px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
}

/* 小型スマホ（360px未満）：縦積み */
@media screen and (max-width: 600px) {
  .pp .oil-doc-btns {
    flex-direction: column;
    gap: 10px;
  }
  .pp .oil-doc-btns a.oil-doc-btn {
    flex: none;
    width: 100%;
    max-width: 280px;
  }
}