/* Setting
----------------------------------------------------*/
:root {
  --color-red: #FF6B00;
  --color-orange: #FD9333;
  --color-yellow: #FFE76F;
  --color-brown: #D2C8B4;
  --color-black: #000000;
  --color-variant: #4F4F4F;
  --color-white: #FFFFFF;
  --color-gray: #cecece;
  --color-bg: #FBF6E6;
  --color-gold: #B29A17;
}

/* Base
----------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

#freshness-preserving-agent img {
  width: 100%;
}

#freshness-preserving-agent ul,
#freshness-preserving-agent ol {
  list-style: none;
  padding-left: 0;
}

#freshness-preserving-agent p {
  margin-bottom: auto;
}

#freshness-preserving-agent a {
  color: #000000;
  text-decoration: none;
}

#freshness-preserving-agent *:last-child {
  margin-bottom: 0;
}

#freshness-preserving-agent .txt-r {
  text-align: right;
}

#freshness-preserving-agent .mt20 {
  margin-top: 20px;
}


/* Common
----------------------------------------------------*/
#freshness-preserving-agent .item-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 15px;
}

@media (max-width: 768px) {
  #freshness-preserving-agent .item-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

#freshness-preserving-agent .item-box .item {
  display: flex;
  flex-direction: column;
  counter-increment: number 1;
}

#freshness-preserving-agent .item-box .photo {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  background: #fff;
  margin-bottom: 10px;
}

#freshness-preserving-agent .item-box .photo img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#freshness-preserving-agent .item-box .name {
  line-height: 1.4;
  font-size: 14px;
  font-weight: bold;
  flex-grow: 1;
  margin-bottom: 8px;
}

#freshness-preserving-agent .item-box .price {
  color: #4f4f4f;
  font-size: 14px;
  margin-bottom: 1em;
}

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

  #freshness-preserving-agent .item-box .name,
  #freshness-preserving-agent .item-box .price {
    font-size: 12px;
  }
}

#freshness-preserving-agent .item-box .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

#freshness-preserving-agent .item-box label {
  height: 40px;
  width: 56px;
  display: inline-block;
  flex: 1 0 56px;
}

@media screen and (max-width: 400px) {
  #freshness-preserving-agent .item-box label {
    width: 44px;
    flex: 1 0 44px;
  }
}

#freshness-preserving-agent .item-box select {
  color: #000;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #cecece;
  padding: 0 10px;
  background-image: url(../../contents/freshness-preserving-agent/select-arrow.svg);
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
}

#freshness-preserving-agent .item-box .cart {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  background: #fd9333;
  height: 40px;
  width: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

@media screen and (max-width: 480px) {
  #freshness-preserving-agent .item-box .cart {
    font-size: 3vw;
  }
}

#freshness-preserving-agent .item-box .icon {
  background-image: url(../../contents/freshness-preserving-agent/icon-cart-white.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 0%;
  background-size: 20px;
  padding: 10px 24px 10px 0;
  margin: 0;
  display: inline;
}

@media screen and (max-width: 480px) {
  #freshness-preserving-agent .item-box .icon {
    display: none;
  }
}

/* Conponent
----------------------------------------------------*/
#freshness-preserving-agent .mv {
  display: flex;
  max-width: 1100px;
  width: 100%;
  background-color: #FBF6E6;
  padding: 20px 0;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #freshness-preserving-agent .mv {
    padding: 0;
  }
}

@media (min-width: 769px) {
  #freshness-preserving-agent .mv {
    margin-bottom: 40px;
  }
}

#freshness-preserving-agent .mv img {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

#freshness-preserving-agent .intro {
  padding: 0 10px;
  margin-bottom: 40px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .intro {
    margin-bottom: 60px;
  }
}

#freshness-preserving-agent .intro__lead {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .intro__lead {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

#freshness-preserving-agent .intro__txt {
  font-size: 14px;
  line-height: 1.8571428571;
  margin-bottom: 15px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .intro__txt {
    text-align: center;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 25px;
  }
}

#freshness-preserving-agent .menu {
  display: grid;
  gap: 8px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .menu {
    grid-template-columns: repeat(3, 1fr);
  }
}

#freshness-preserving-agent .menu__item {
  font-size: 14px;
  text-align: center;
  border: 1px solid #FD9333;
  border-radius: 8px;
}

#freshness-preserving-agent .menu__link {
  position: relative;
  display: block;
  padding: 15px;
  color: #000000;
  text-decoration: none;
}

#freshness-preserving-agent .menu__link::after {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% + 2px);
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top: 6px solid #FD9333;
}

#freshness-preserving-agent .button {
  position: relative;
  display: block;
  font-size: 14px;
  text-align: center;
  border: 1px solid #FD9333;
  border-radius: 8px;
  padding: 15px;
  color: #000000;
  text-decoration: none;
  background-color: #FFFFFF;
  margin-top: 15px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .button {
    font-size: 15px;
    max-width: 450px;
    margin-inline: auto;
  }
}

#freshness-preserving-agent .button::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 6px solid #FD9333;
}

#freshness-preserving-agent .button--anchor::after {
  top: calc(50% + 2px);
  right: 15px;
  border: 5px solid transparent;
  border-top: 6px solid #FD9333;
}

#freshness-preserving-agent .section {
  background-color: #FBF6E6;
}

#freshness-preserving-agent .section:not(:last-child) {
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .section:not(:last-child) {
    margin-bottom: 40px;
  }
}

#freshness-preserving-agent .section__inner {
  padding: 40px 14px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .section__inner {
    padding: 80px 30px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
}

#freshness-preserving-agent .section__inner>*:last-child {
  margin-bottom: 0;
}

#freshness-preserving-agent .section__item {
  margin-bottom: 40px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .section__item {
    margin-bottom: 80px;
  }
}

#freshness-preserving-agent .section__title {
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .section__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

#freshness-preserving-agent .section__title span {
  display: inline-block;
  border-bottom: 2px solid #000000;
  padding: 0 10px 5px 10px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .section__title span {
    padding: 0 15px 10px;
    border-width: 3px;
  }
}

#freshness-preserving-agent .section__content {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .section__content {
    border-radius: 16px;
    padding: 40px;
  }
}

#freshness-preserving-agent .section__content>*:last-child {
  margin-bottom: 0;
}

#freshness-preserving-agent .section__heading {
  text-align: center;
  font-size: 19px;
  margin-bottom: 15px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .section__heading {
    font-size: 26px;
    margin-bottom: 25px;
  }
}

#freshness-preserving-agent .section__txt {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .section__txt {
    font-size: 16px;
    line-height: 1.9375;
    margin-bottom: 25px;
  }
}

#freshness-preserving-agent .section__img-wrapper {
  margin-bottom: 15px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .section__img-wrapper {
    margin-bottom: 25px;
  }
}

/* Page
----------------------------------------------------*/
#freshness-preserving-agent .best-seller .item-box {
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .best-seller .item-box {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

#freshness-preserving-agent .best-seller .item {
  background-color: #FFFFFF;
  width: 100%;
  border-radius: 10px;
  padding: 25px;
}

#freshness-preserving-agent .best-seller .name {
  font-size: 14px;
  text-align: center;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .best-seller .name {
    font-size: 15px;
  }
}

#freshness-preserving-agent .best-seller__category {
  font-size: 13px;
  font-weight: bold;
  color: #B29A17;
  text-align: center;
  margin-bottom: 10px;
}

#freshness-preserving-agent .best-seller__category span {
  display: inline-block;
  border: 1px solid #B29A17;
  padding: 3px 16px;
}

#freshness-preserving-agent .type {
  display: grid;
  gap: 15px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .type {
    grid-template-columns: repeat(3, 1fr);
  }
}

#freshness-preserving-agent .type *:last-child {
  margin-bottom: 0;
}

#freshness-preserving-agent .type__item {
  display: grid;
  align-content: baseline;
  gap: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px 15px;
  text-align: center;
}

#freshness-preserving-agent .type__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}

#freshness-preserving-agent .type__head span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #D2C8B4;
  color: #FFFFFF;
  border-radius: 9999px;
}

#freshness-preserving-agent .type__img-wrap {
  border-radius: 9999px;
  overflow: hidden;
  max-width: 180px;
  margin-inline: auto;
}


#freshness-preserving-agent .type__img-wrap img {
  display: block;
}

#freshness-preserving-agent .note {
  border: 1px solid #FF6B00;
  border-radius: 10px;
  overflow: hidden;
}

#freshness-preserving-agent .note__head {
  background-color: #FF6B00;
  color: #FFFFFF;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  padding: 5px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .note__head {
    font-size: 15px;
    padding: 8px;
  }
}

#freshness-preserving-agent .note__head span {
  position: relative;
  padding-inline: 20px 10px;
}

#freshness-preserving-agent .note__head span::before {
  content: "";
  position: absolute;
  background-image: url(../../contents/freshness-preserving-agent/icon_note_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}

#freshness-preserving-agent .note__body {
  padding: 12px 17px;
  font-size: 13px;
  line-height: 1.6153846154;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .note__body {
    padding: 15px 20px;
    font-size: 15px;
  }
}

#freshness-preserving-agent .note02 {
  background-color: #4F4F4F;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .note02 {
    padding: 30px;
  }
}

#freshness-preserving-agent .note02__txt {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 15px;
  padding-top: 40px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .note02__txt {
    font-size: 18px;
    line-height: 1.7777777778;
  }
}

#freshness-preserving-agent .note02__txt::before {
  content: "";
  position: absolute;
  background-image: url(../../contents/freshness-preserving-agent/icon_note_yellow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
}

#freshness-preserving-agent .note02__button {
  border: none;
}

#freshness-preserving-agent .comparison {
  display: grid;
  gap: 20px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .comparison {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

#freshness-preserving-agent .comparison__item {
  border: 2px solid #4F4F4F;
  border-radius: 10px;
  overflow: hidden;
}

#freshness-preserving-agent .comparison__title {
  text-align: center;
  background-color: #4F4F4F;
  color: #FFFFFF;
  padding: 5px;
  font-size: 15px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .comparison__title {
    font-size: 18px;
    padding: 10px;
  }
}

#freshness-preserving-agent .comparison__body {
  padding: 20px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .comparison__body {
    padding: 30px;
  }
}

#freshness-preserving-agent .comparison__body>*:last-child {
  margin-bottom: 0;
}

#freshness-preserving-agent .comparison__img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .comparison__img-wrap {
    margin-bottom: 25px;
  }
}

#freshness-preserving-agent .comparison__heading {
  text-align: center;
  border: 1px solid #FF6B00;
  color: #FF6B00;
  padding: 3px;
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .comparison__heading {
    font-size: 15px;
  }
}

#freshness-preserving-agent .comparison__heading--note {
  border-color: #4F4F4F;
  color: #4F4F4F;
}

#freshness-preserving-agent .comparison__txt {
  font-size: 13px;
  line-height: 1.5384615385;
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .comparison__txt {
    font-size: 14px;
  }
}

#freshness-preserving-agent .faq {
  display: grid;
  gap: 15px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .faq {
    gap: 30px;
  }
}

#freshness-preserving-agent .faq__item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 15px 20px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .faq__item {
    border-radius: 16px;
    padding: 40px;
  }
}

#freshness-preserving-agent .faq__head {
  font-size: 14px;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #cecece;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .faq__head {
    gap: 20px;
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

#freshness-preserving-agent .faq__head span {
  color: #FF6B00;
  font-size: 20px;
  line-height: 1;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .faq__head span {
    font-size: 25px;
  }
}

#freshness-preserving-agent .faq__body {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .faq__body {
    gap: 15px;
    font-size: 16px;
  }
}

#freshness-preserving-agent .calc {
  background-color: #D2C8B4;
  padding: 12px 15px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .calc {
    padding: 20px 25px;
  }
}

#freshness-preserving-agent .calc__head {
  border-bottom: 1px solid #FFFFFF;
  font-size: 14px;
  padding-bottom: 7px;
  margin-bottom: 7px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .calc__head {
    font-size: 16px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}

#freshness-preserving-agent .calc__body {
  font-size: 13px;
}

@media (min-width: 769px) {
  #freshness-preserving-agent .calc__body {
    font-size: 15px;
  }
}

/* Utility
----------------------------------------------------*/
@media (max-width: 768px) {
  #freshness-preserving-agent .u-pc-only {
    display: none;
  }
}

@media (min-width: 769px) {
  #freshness-preserving-agent .u-sp-only {
    display: none;
  }
}

#freshness-preserving-agent .u-center {
  text-align: center;
}

#freshness-preserving-agent .u-font-bold {
  font-weight: bold;
}

#freshness-preserving-agent .u-mt-S {
  margin-top: 20px;
}

#freshness-preserving-agent .u-mt-M {
  margin-top: 40px;
}

#freshness-preserving-agent .u-mt-L {
  margin-top: 60px;
}