@charset "UTF-8";

/* --------------------------------------------------------
-----------------------------------------------------------
 COMMON
-----------------------------------------------------------
----------------------------------------------------------- */
.p-tab-input {
  display: none;
}

.p-item {
  transition: opacity 0.9s;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.p-tab-input#size-s:checked~.p-item.--size-s,
.p-tab-input#size-m:checked~.p-item.--size-m,
.p-tab-input#size-l:checked~.p-item.--size-l {
  height: auto;
  opacity: 1;
}

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

/* --------------------------------------------------------
-----------------------------------------------------------
 p-tab
-----------------------------------------------------------
----------------------------------------------------------- */
.p-tab {
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 2.5rem;
}

.p-tab::after {
  content: "";
  position: absolute;
  border-top: none;
  border-left: none;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  border-color: var(--color02) transparent transparent transparent;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.2rem 1.5rem 0 1.5rem;
}

.p-tab__head {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.6rem;
  line-height: 1.45;
  letter-spacing: 0.15rem;
  font-size: 1.7rem;
}

.p-tab ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  background: #FFF;
  border-radius: 1.2rem;
  overflow: hidden;
}

.p-tab ul li {
  flex: 1;
}

.p-tab ul li:nth-child(2) {
  position: relative;
}

.p-tab ul li:nth-child(2)::before,
.p-tab ul li:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 100%;
  top: 0;
  background: #f2ece8;
}

.p-tab ul li:nth-child(2)::before {
  left: 0;
}

.p-tab ul li:nth-child(2)::after {
  right: 0;
}

.p-tab__button {
  display: block;
  text-align: center;
  padding: 1.1rem 0.3rem 0.8rem;
  line-height: 1.2;
}

.p-tab__button>span {
  display: block;
}

.p-tab__button-name {
  margin-bottom: 0.3rem;
  font-size: 1.7rem;
}

.p-tab__button-name-text01 {
  font-weight: bold;
  font-size: 160%;
  line-height: 1;
  vertical-align: -0.1rem;
}

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

.p-tab__button-detail {
  font-size: 1.3rem;
}

.p-tab-input#size-s:checked~.p-tab .p-tab__button[for=size-s],
.p-tab-input#size-m:checked~.p-tab .p-tab__button[for=size-m],
.p-tab-input#size-l:checked~.p-tab .p-tab__button[for=size-l] {
  background: var(--color02);
  color: #FFF;
}

/*
-----------------------------------------------------------
 p-tab02
----------------------------------------------------------- */
.p-tab02.--top {
  margin-bottom: 2rem;
  padding-bottom: 1.3rem;
}

.p-tab02.--bottom {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem 0;
}

.p-tab02__head {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.6rem;
  line-height: 1.45;
  letter-spacing: 0.15rem;
  font-size: 1.7rem;
}

.p-tab02 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  background: #FFF;
  border-radius: 1.2rem;
}

.p-tab02 ul li {
  flex: 1;
}

.p-tab02 ul li:nth-child(2) {
  position: relative;
}

.p-tab02 ul li:nth-child(2)::before,
.p-tab02 ul li:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 100%;
  top: 0;
  background: #f2ece8;
}

.p-tab02 ul li:nth-child(2)::before {
  left: 0;
}

.p-tab02 ul li:nth-child(2)::after {
  right: 0;
}

.p-tab02__button {
  position: relative;
  display: block;
  text-align: center;
  padding: 1.1rem 0.3rem 0.8rem;
  line-height: 1.2;
}

.p-tab02__button::before {
  border-color: var(--color06) transparent transparent transparent;
  position: absolute;
  color: transparent;
  border-style: solid;
  border-width: 1.3rem 1.7rem 0 1.7rem;
  top: 100%;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0 auto;
}

.p-tab02.--bottom .p-tab02__button::before {
  border-color: transparent transparent var(--color06) transparent;
  border-width: 0 1.7rem 1.3rem 1.7rem;
  top: auto;
  bottom: 100%;
}

.p-tab02__item:first-child .p-tab02__button {
  border-radius: 1.2rem 0 0 1.2rem;
}

.p-tab02__item:last-child .p-tab02__button {
  border-radius: 0 1.2rem 1.2rem 0;
}

.p-tab02__button>span {
  display: block;
}

.p-tab02__button-name {
  margin-bottom: 0.3rem;
  font-size: 1.7rem;
}

.p-tab02__button-name-text01 {
  font-weight: bold;
  font-size: 160%;
  line-height: 1;
  vertical-align: -0.1rem;
}

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

.p-tab02__button-detail {
  font-size: 1.3rem;
}

.p-tab-input#size-s:checked~.p-tab02 .p-tab02__button[for=size-s],
.p-tab-input#size-m:checked~.p-tab02 .p-tab02__button[for=size-m],
.p-tab-input#size-l:checked~.p-tab02 .p-tab02__button[for=size-l] {
  background: var(--color06);
  color: #FFF;
}

.p-tab-input#size-s:checked~.p-tab02 .p-tab02__button[for=size-s]::before,
.p-tab-input#size-m:checked~.p-tab02 .p-tab02__button[for=size-m]::before,
.p-tab-input#size-l:checked~.p-tab02 .p-tab02__button[for=size-l]::before {
  content: "";
}

/* --------------------------------------------------------
-----------------------------------------------------------
 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__inner {
  box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
  text-align: center;
  background-color: #fff;
  border-radius: 1.2rem;
  max-width: 525px;
  margin: 0 auto;
  overflow: hidden;
  color: #675952;
  padding-top: 3.5rem;
}

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

.p-item__title-text01 {
  background: var(--color06);
  display: block;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  color: #FFF;
  padding: 0.8rem 0.7rem 0.7rem;
}

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

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

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

.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%;
  z-index: 10;
  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-label02 {
  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%;
  z-index: 10;
  line-height: 1.3;
  border: 0.3rem solid;
  bottom: 0;
  left: calc(50% + 5.5rem);
  width: 8rem;
  height: 8rem;
  font-size: 1.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,
.p-item.--size-l .p-item__img-label02 {
  left: calc(50% + 6.5rem);
}

.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%;
  z-index: 10;
  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__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-monthly {
  background: var(--color02);
  color: #FFF;
  padding: 0.4rem 0.7rem 0.3rem 0.7rem;
  letter-spacing: 0;
  font-size: 1.3rem;
  vertical-align: 0.4rem;
  margin-right: 0.5rem;
  border-radius: 0.5rem;
}

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