@charset "UTF-8";

/* --------------------------------------------------------
-----------------------------------------------------------
 COMMON
-----------------------------------------------------------
----------------------------------------------------------- */

/* --- ページ全体の横揺れ防止 --- */
body {
  overflow-x: hidden;
}

.p-tab-input {
  display: none;
}

.p-related,
.p-related-onetime {
  margin-top: 6rem;
}

.p-message {
  font-family: var(--font-family02);
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  text-align: center;
  line-height: 1.45;
}

.p-top-text {
  margin-bottom: 3rem;
}

/* スライダーの外枠 */
.item-swiper.swiper {
  width: 100%;
  /* 100vwではなく100%にする */
  overflow: visible;
  /* 隣を見せるために必須 */
}

/* --- 商品スライドの表示設定修正 --- */
.js-item-swiper .p-item {
  height: auto;
  opacity: 1;
  overflow: visible;
}


/* --- 上部タブ（p-tab02 --top）--- */
.p-tab02.--top {
  margin-bottom: 2.5rem;
}

/* --- 下部タブ（p-tab02 --bottom）に余白を作る --- */
.p-tab02.--bottom {
  margin-top: 2.5rem;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- タブ全体の器：本番と同じ設定 + Safari高さ揃え --- */
.js-item-swiper .item-swiper-pagination {
  display: flex;
  align-items: stretch;
  background: #FFF;
  border-radius: 1.2rem;
}

/* --- 各タブボタン：本番サイトの数値を完全再現 --- */
.item-swiper-pagination .swiper-pagination-bullet {
  flex: 1;
  text-align: center;
  padding: 1.1rem 0.3rem 0.8rem;
  line-height: 1;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  /* 改行を阻止 */
}

/* 左右の角丸処理 */
.item-swiper-pagination .swiper-pagination-bullet:first-child {
  border-radius: 1.2rem 0 0 1.2rem;
}

.item-swiper-pagination .swiper-pagination-bullet:last-child {
  border-radius: 0 1.2rem 1.2rem 0;
}

/* ボタン間の区切り線 */
.item-swiper-pagination .swiper-pagination-bullet:nth-child(2)::before,
.item-swiper-pagination .swiper-pagination-bullet:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 100%;
  top: 0;
  background: #f2ece8;
}

.item-swiper-pagination .swiper-pagination-bullet:nth-child(2)::before {
  left: 0;
}

.item-swiper-pagination .swiper-pagination-bullet:nth-child(2)::after {
  right: 0;
}

/* --- Mサイズの仕切り線への干渉を防ぐ --- */
/* Mサイズがアクティブになった時だけ、仕切り線（::before）を三角形に上書きする */
.item-swiper-pagination .swiper-pagination-bullet:nth-child(2).is-active::before {
  background: transparent; /* 背景色の縦線を消して三角形にする */
  height: 0;                /* 縦線の高さをリセット */
  width: 0;                 /* 縦線の幅をリセット */
  top: 100%;                /* 上部タブの位置に合わせる */
}

/* 下部タブのMサイズ用位置調整 */
.item-swiper-pagination-bottom .swiper-pagination-bullet:nth-child(2).is-active::before {
  top: auto;
  bottom: 100%;
}

/* 3. 選択中のボタンの背景色（詳細度で優先させる） */
.item-swiper-pagination .swiper-pagination-bullet.is-active {
  background: var(--color06);
  color: #FFF;
}

.item-swiper {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* --- 下向き三角形（上タブ用） --- */
.item-swiper-pagination-top .swiper-pagination-bullet.is-active::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.3rem 1.7rem 0 1.7rem;
  border-color: var(--color06) transparent transparent transparent;
  display: block;
  z-index: 10;
  /* Mサイズの仕切り線(nth-child(2)::before)と重なるため、
     アクティブ時は三角形を優先させる設定 */
  background: transparent; 
}

/* --- 上向き三角形（下タブ用） --- */
.item-swiper-pagination-bottom .swiper-pagination-bullet.is-active::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1.7rem 1.3rem 1.7rem;
  border-color: transparent transparent var(--color06) transparent;
  display: block;
  z-index: 10;
  background: transparent;
}

/* 三角形が隠れないようにする */
.js-item-swiper .p-tab02.--bottom {
  overflow: visible;
}

/* ボタン内の文字デザイン */
.button-name {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.9rem;
  font-weight: bold;
}

.button-name-text01 {
  font-size: 180%;
  line-height: 1;
  vertical-align: -0.1rem;
}

.button-name-text02 {
  font-family: var(--font-family02);
  font-weight: bold;
  letter-spacing: 0;
}

.button-detail {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 0.5rem;
  background: var(--color06);
  color: #FFF;
  max-width: 9rem;
  padding: 0.5rem 0.2rem;
  margin: 0.5rem auto;
}

/* 選択中の「〜向け」ラベルの反転 */
.item-swiper-pagination .swiper-pagination-bullet.is-active .button-detail {
  background: #fff;
  color: var(--color06);
}

/* --- 見出し「サイズをお選びください」のスタイル --- */
.p-tab02__head,
.pagination-head {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.6rem;
  line-height: 1.45;
  letter-spacing: 0.15rem;
  font-size: 1.7rem;
  color: #4c392f;
}

/* --- タブ内の金額表示 --- */
.item-swiper-pagination .button-price {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 0.4rem;
  letter-spacing: 0.06em;
}


/* --------------------------------------------------------
-----------------------------------------------------------
 p-page-head__title
-----------------------------------------------------------
----------------------------------------------------------- */
.p-page-head__title {
  color: var(--color06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.45;
  padding: 4rem 1rem 0;
  margin-bottom: 3.5rem;
}

.p-page-head__title-sub {
  background: var(--color06);
  color: #FFF;
  border-radius: 100px;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  padding: 0.4rem 2.2rem;
}

.p-page-head__title-main {
  font-family: var(--font-family02);
  display: block;
  font-weight: bold;
  font-size: 2.5rem;
}

.p-page-head__title-main span {
  display: inline-block;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 p-item
-----------------------------------------------------------
----------------------------------------------------------- */

.p-item {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.p-item__inner {
  box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
  text-align: center;
  background-color: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  color: #675952;
  padding-top: 3.5rem;
  max-width: 525px;
  /* 最大幅を制限 */
  width: 100%;
  /* 左右に少し隙間を作ることで「カード感」を出す */
  margin: 0 auto;
  /* 中央に寄せる */
}

.p-item__title {
  color: var(--color06);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}



.p-item__title-text02 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 2.3rem;
  gap: 0.4rem;
  font-weight: bold;
  white-space: nowrap;
}

.p-item__title-text02-text01 {
  background: var(--color06);
  text-align: center;
  letter-spacing: 0;
  color: #FFF;
  font-size: 117%;
  border-radius: 0.6rem;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  flex-shrink: 0;
}

.p-item__title-text02-text02 {
  font-family: var(--font-family02);
  white-space: nowrap;
}

.p-item__body {
  padding: 0 1.5rem 2rem;
}

.p-item__img {
  position: relative;
  margin-bottom: 2rem;
}

.p-item__img-img {
  position: relative;
  left: 50%;
}

.p-item__img-label {
  background: var(--color02);
  color: #FFF;
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 50%;
  line-height: 1.4;
  border: 0.3rem solid;
  bottom: 0;
  left: calc(50% + 5.5rem);
  width: 8rem;
  height: 8rem;
  padding-top: 0.3rem;
}

.p-item__img-onetime {
  position: relative;
  margin-bottom: 2rem;
}

.p-item__img-onetime-img {
  position: relative;
  left: 50%;
  transform: translate(calc(-50% + 1rem), 0);
}

.p-item__img-onetime-label {
  color: var(--color02);
  background: #FFF;
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 50%;
  line-height: 1.4;
  border: 0.3rem solid;
  bottom: 0;
  left: calc(50% - 13.5rem);
  width: 8rem;
  height: 8rem;
  padding-top: 0.3rem;
}

.p-item.--size-m .p-item__img-onetime-img {
  width: 25.8rem;
}

.p-item.--size-s .p-item__img-onetime-img {
  width: 20.7rem;
}

.p-item.--size-m .p-item__img-img {
  width: 25.8rem;
  transform: translate(calc(-50% - 1rem), 0);
}

.p-item.--size-s .p-item__img-img {
  width: 20.7rem;
  transform: translate(calc(-50% - 1rem), 0);
}

.p-item.--size-l .p-item__img-img {
  width: 31.5rem;
  transform: translate(calc(-50% - 0.5rem), 0);
}

.p-item.--size-l .p-item__img-label {
  left: calc(50% + 6.5rem);
}

.p-item__summary {
  margin-bottom: 1.5rem;
}

.p-item__price {
  margin-bottom: 1rem;
}

.p-item__price-discount {
  font-family: var(--font-family02);
  position: relative;
  display: inline-block;
  font-weight: bold;
  background: var(--color02);
  color: #FFF;
  font-size: 1.3rem;
  padding: 0.3rem 1.7rem;
  margin-bottom: 0.8rem;
  border-radius: 100px;
}

.p-item__price-discount::before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0.8rem 1.1rem 0 1.1rem;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: calc(100% - 0.2rem);
  border-color: var(--color02) transparent transparent transparent;
}

.p-item__price-discount span {
  font-family: var(--font-family01);
  font-size: 218%;
  padding: 0 0rem 0 0.2rem;
  vertical-align: -0.5rem;
  letter-spacing: 0.2rem;
  line-height: 1;
}

.p-item__price-main {
  font-size: 2rem;
  line-height: 1.3;
  color: var(--color02);
}

.p-item__price-main-every {
  color: var(--color02);
  padding: 0.4rem 0.4rem 0.3rem 0.6rem;
  letter-spacing: 0;
  font-size: 1.2rem;
  vertical-align: 0.4rem;
  margin-right: 0.6rem;
  border-radius: 0.3rem;
  border: 0.1rem solid;
}

.p-item__price-main-number {
  font-weight: bold;
  font-size: 212%;
  letter-spacing: 0.1rem;
  line-height: 1;
}

.p-item__price-main-yen {
  font-weight: bold;
  padding: 0 0.2rem;
}

.p-item__price-sub {
  font-size: 1.2rem;
  margin-top: 0.4rem;
}

.p-item__button {
  background: #077542;
  background: -moz-linear-gradient(left, #077542 0%, #018c1d 100%);
  background: -webkit-linear-gradient(left, #077542 0%, #018c1d 100%);
  background: linear-gradient(to right, #077542 0%, #018c1d 100%);
  box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
  position: relative;
  display: block;
  text-decoration: none;
  text-align: center;
  font-weight: normal;
  color: #fff;
  margin: 0 auto;
  width: 100%;
  line-height: 1.35;
  max-width: 450px;
  border-radius: 1.1rem;
  padding: 1.4rem 1rem 1rem;
}

.p-item__button::before {
  content: "";
  position: absolute;
  width: 2.3rem;
  height: 100%;
  top: 0;
  right: 1rem;
  background: url(/img/icon-arrow.svg) no-repeat center center;
  background-size: contain;
}

.p-item__button-main {
  display: block;
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.2rem;
}

.p-item__sup {
  vertical-align: super;
  font-size: 1rem;
  line-height: 1;
  padding-left: 0.2rem;
  letter-spacing: 0;
}

.p-item__note {
  margin-top: 2.2rem;
  text-align: left;
  font-size: 1.1rem;
  padding: 0 1.2rem;
}

.p-item__note-p {
  line-height: 1.4;
  padding-left: 2.8rem;
  position: relative;
  margin-left: -1rem;
  font-family: hiragino-kaku-gothic-pron, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.p-item__note-p::before {
  content: "・";
  position: absolute;
  left: 0;
  width: 2.5rem;
  text-align: center;
  letter-spacing: 0;
}

.p-item__note-p[data-list-number]::before {
  content: "※" attr(data-list-number);
  font-size: 90%;
  top: 0.1rem;
}

.p-item__note-p+p.p-item__note-p {
  margin-top: 0.5rem;
}

.p-item__note-p a {
  text-decoration: underline;
}

.p-item__note-p a:hover {
  text-decoration: none;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 p-related
-----------------------------------------------------------
----------------------------------------------------------- */
.p-related {
  background: #fc5400;
  background: -moz-linear-gradient(left, #fc5400 0%, #ff861c 100%);
  background: -webkit-linear-gradient(left, #fc5400 0%, #ff861c 100%);
  background: linear-gradient(to right, #fc5400 0%, #ff861c 100%);
  position: relative;
  width: 100vw;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: calc(100% + 4rem);
  margin-left: -2rem;
}

@media (min-width: 520px) {
  .p-related {
    width: calc(100% + 5rem);
    margin-left: -2.5rem;
  }
}

.p-related .p-message {
  color: #FFF;
}

.p-related__inner {
  box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
  display: block;
  text-align: center;
  overflow: hidden;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 1.2rem;
  max-width: 525px;
  padding-top: 1.5rem;
  padding: 1.8rem 1.5rem 1.5rem;
}

.p-related__top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.p-related .p-related__img {
  width: 12rem;
}

.p-related .p-related__title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1.45;
  padding-top: 0.7rem;
}

.p-related .p-related__title-text01 {
  font-size: 1.7rem;
}

.p-related .p-related__title-text02 {
  font-family: var(--font-family02);
  line-height: 1.2;
  font-size: 3.8rem;
}

.p-related__price-discount {
  font-family: var(--font-family02);
  background: var(--color06);
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: #FFF;
  font-size: 1.5rem;
  padding: 0.3rem 1.7rem;
  margin-bottom: 0.8rem;
  border-radius: 100px;
}

.p-related__price-discount::before {
  border-color: var(--color06) transparent transparent transparent;
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0.8rem 1.1rem 0 1.1rem;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: calc(100% - 0.2rem);
}

.p-related__price-discount span {
  font-family: var(--font-family01);
  font-size: 173%;
  padding: 0 0rem 0 0.2rem;
  vertical-align: -0.3rem;
  letter-spacing: 0.2rem;
  line-height: 1;
}

.p-related__price-main {
  font-size: 1.5rem;
  line-height: 1.2;
}

.p-related__price-main-text01 {
  font-weight: bold;
}

.p-related__price-main-text02 {
  font-size: 173%;
  font-weight: bold;
  letter-spacing: 0.05rem;
  padding-right: 0.1rem;
}

.p-related__price-main-text03 {
  font-size: 93%;
}

.p-related__more {
  background: #077542;
  background: -moz-linear-gradient(left, #077542 0%, #018c1d 100%);
  background: -webkit-linear-gradient(left, #077542 0%, #018c1d 100%);
  background: linear-gradient(to right, #077542 0%, #018c1d 100%);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  font-weight: bold;
  color: #FFF;
  border-radius: 0.6rem;
  padding: 0.8rem 1rem;
  margin-top: 0.9rem;
  gap: 0.5rem;
  font-size: 1.6rem;
}

.p-related__more::after {
  content: "";
  display: block;
  background: url(/img/icon-arrow.svg) no-repeat center center;
  background-size: contain;
  width: 1.8rem;
}



/* --------------------------------------------------------
-----------------------------------------------------------
 p-related-onetime
-----------------------------------------------------------
----------------------------------------------------------- */
.p-related-onetime__inner {
  box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
  border: 0.3rem solid var(--color01);
  display: block;
  text-align: center;
  overflow: hidden;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 1.2rem;
  max-width: 525px;
  padding-top: 1.5rem;
}

.p-related-onetime__top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.p-related-onetime__img {
  width: 10.4rem;
}

.p-related-onetime__title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1.45;
}

.p-related-onetime__title-text01 {
  font-size: 1.6rem;
}

.p-related-onetime__title-text02 {
  font-family: var(--font-family02);
  font-size: 2.9rem;
  line-height: 1.2;
}

.p-related-onetime__note {
  color: var(--color-text-sub);
  line-height: 1.45;
  font-size: 1.2rem;
}

.p-related-onetime__more {
  background: var(--color01);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  font-weight: bold;
  color: #FFF;
  border-radius: 0 0 0.6rem 0.6rem;
  padding: 0.6rem 1rem 0.2rem;
  margin-top: 0.5rem;
  gap: 0.5rem;
}

.p-related-onetime__more::after {
  content: "";
  display: block;
  background: url(/img/icon-arrow.svg) no-repeat center center;
  background-size: contain;
  width: 1.8rem;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 p-pack-fruit-items
-----------------------------------------------------------
----------------------------------------------------------- */
.p-pack-fruit-items {
  margin-top: 3rem;
}

.p-pack-fruit-items__message {
  font-family: var(--font-family02);
  font-weight: bold;
  margin-bottom: 0.7rem;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-pack-fruit-items__message-sub {
  font-size: 2rem;
}

.p-pack-fruit-items__message-main {
  font-size: 2.2rem;
}

@media (max-width: 520px) {
  .p-pack-fruit-items__message-sub {
    font-size: 1.8rem;
  }

  .p-pack-fruit-items__message-main {
    font-size: 2rem;
  }
}

.p-pack-fruit-items__banner {
  display: block;
  border: 2px solid #fa2e46;
  border-radius: clamp(10px, 2.4vw, 18px);
}

.p-pack-fruit-items__banner img {
  border-radius: clamp(8px, 2vw, 16px);
}