@charset "UTF-8";
/* reset
***************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/*CTA用　左右にゆれるアニメーション*/
@keyframes sway {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-1rem);
  }
  50% {
    transform: translateX(1rem);
  }
  75% {
    transform: translateX(-1rem);
  }
}
/* ルートフォント設定
***************************************************************/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  html {
    font-size: calc(10 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 767px) {
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

/* base（基本）設定
***************************************************************/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS 1", sans-serif;
  background: #efedd8;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: #565656;
}
body.no-scroll {
  overflow: hidden !important;
}
body::before {
  content: "";
  width: 100%;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: block;
  background: url(/assets/img/bg_l.png) no-repeat left center/contain;
}
@media screen and (max-width: 767px) {
  body::before {
    display: none;
  }
}
body::after {
  content: "";
  width: 100%;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: block;
  background: url(/assets/img/bg_r.png) no-repeat right center/contain;
}
@media screen and (max-width: 767px) {
  body::after {
    display: none;
  }
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

/* 共通inner
***************************************************************/
.inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: inherit;
  margin-inline: auto;
  padding: 0 5rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 94%;
    max-width: 474px;
    padding: 0 0;
  }
}

/*フローティングバナー
***************************************************************/
.floating-cta {
  position: fixed;
  bottom: 0;
  left: calc(50% + 45rem);
  z-index: 10;
}
@media (any-hover: hover) {
  .floating-cta a {
    transition: all 0.3s ease;
  }
  .floating-cta a:hover {
    transform: scale(1.1);
  }
}
.floating-cta img {
  width: 14.5rem;
}
@media screen and (max-width: 1440px) {
  .floating-cta {
    right: 2rem;
    left: auto;
  }
}
@media screen and (max-width: 767px) {
  .floating-cta {
    display: none;
  }
}

/* 共通タイトル
***************************************************************/
.section__title {
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 1.7rem;
    white-space: nowrap;
    gap: 0;
  }
}
.section__title.title--about {
  color: #2CA013;
}
.section__title.title--about .under-line {
  border-bottom: 3px solid #69C418;
}
@media screen and (max-width: 767px) {
  .section__title.title--about .under-line {
    border-bottom: 2px solid #69C418;
  }
}
.section__title.title--about::before {
  content: "";
  background: url(../img/deco_corn.webp) no-repeat center center/cover;
  width: 2.9rem;
  aspect-ratio: 86/107;
}
@media screen and (max-width: 767px) {
  .section__title.title--about::before {
    width: 2rem;
    rotate: -70deg;
  }
}
.section__title.title--about::after {
  content: "";
  background: url(../img/deco_corn.webp) no-repeat center center/cover;
  width: 2.9rem;
  aspect-ratio: 86/107;
}
@media screen and (max-width: 767px) {
  .section__title.title--about::after {
    width: 2rem;
  }
}
.section__title.title--reason {
  justify-content: flex-start;
  text-align: center;
}
.section__title.title--reason .under-line {
  border-bottom: none;
  display: block;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section__title.title--reason {
    justify-content: center;
    color: #2CA013;
  }
  .section__title.title--reason .under-line {
    border-bottom: 2px solid #69C418;
    margin: 0;
  }
  .section__title.title--reason::before {
    content: "";
    background: url(../img/deco_broccoli.webp) no-repeat center center/cover;
    width: 2rem;
    aspect-ratio: 20/22;
  }
  .section__title.title--reason::after {
    content: "";
    background: url(../img/deco_broccoli.webp) no-repeat center center/cover;
    width: 2rem;
    aspect-ratio: 20/22;
    rotate: 60deg;
  }
}
.section__title.title--strength {
  color: #F73737;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .section__title.title--strength {
    gap: 0.4rem;
  }
}
.section__title.title--strength .under-line {
  border-bottom: 3px solid #FF8827;
}
@media screen and (max-width: 767px) {
  .section__title.title--strength .under-line {
    border-bottom: 2px solid #FF8827;
  }
}
.section__title.title--strength::before {
  content: "";
  background: url(../img/deco_tomato.webp) no-repeat center center/cover;
  width: 3.3rem;
  aspect-ratio: 109/92;
}
@media screen and (max-width: 767px) {
  .section__title.title--strength::before {
    width: 2.2rem;
  }
}
.section__title.title--strength::after {
  content: "";
  background: url(../img/deco_tomato.webp) no-repeat center center/cover;
  width: 3.3rem;
  aspect-ratio: 109/92;
}
@media screen and (max-width: 767px) {
  .section__title.title--strength::after {
    width: 2.2rem;
  }
}
.section__title.title--recommend {
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .section__title.title--recommend span {
    border-bottom: 2px solid currentColor;
  }
}
.section__title.title--recommend::before {
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  aspect-ratio: 1;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .section__title.title--recommend::before {
    width: 1.6rem;
    height: 1.6rem;
    margin-top: 0.4rem;
  }
}
.section__title.title--recommend::after {
  content: "";
  background: #ffffff;
  width: 2.6rem;
  height: 2.6rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .section__title.title--recommend::after {
    width: 1.6rem;
    height: 1.6rem;
    margin-top: 0.4rem;
  }
}
.section__title.title--products {
  color: #9653BC;
  font-size: max(3rem, 24px);
  font-weight: 700;
  line-height: 1.7333333333;
}
@media screen and (max-width: 767px) {
  .section__title.title--products {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title.title--products {
    font-size: 1.7rem;
    gap: 0.3rem;
    line-height: 1.4;
  }
}
.section__title.title--products .under-line {
  border-bottom: 3px solid #4D147A;
}
@media screen and (max-width: 767px) {
  .section__title.title--products .under-line {
    border-bottom: 2px solid #4D147A;
  }
}
.section__title.title--products::before {
  content: "";
  background: url(../img/deco_eggplant.webp) no-repeat center center/cover;
  width: 4.6rem;
  aspect-ratio: 46/50;
}
@media screen and (max-width: 767px) {
  .section__title.title--products::before {
    width: 2.3rem;
  }
}
.section__title.title--products::after {
  content: "";
  background: url(../img/deco_eggplant.webp) no-repeat center center/cover;
  width: 4.6rem;
  aspect-ratio: 46/50;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .section__title.title--products::after {
    width: 2.3rem;
  }
}
.section__title.title--flow {
  font-size: max(3rem, 24px);
  font-weight: 700;
  line-height: 1.7333333333;
  gap: 1rem;
  color: #5F499C;
}
@media screen and (max-width: 767px) {
  .section__title.title--flow {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title.title--flow {
    color: #120170;
    font-size: 1.7rem;
    line-height: 1.4;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title.title--flow span {
    border-bottom: 2px solid currentColor;
  }
}
.section__title.title--flow::before {
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  aspect-ratio: 1;
  background: #5F499C;
}
@media screen and (max-width: 767px) {
  .section__title.title--flow::before {
    width: 1.6rem;
    height: 1.6rem;
    margin-top: 0.4rem;
    background: #120170;
  }
}
.section__title.title--flow::after {
  content: "";
  background: #5F499C;
  width: 2.6rem;
  height: 2.6rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .section__title.title--flow::after {
    width: 1.6rem;
    height: 1.6rem;
    margin-top: 0.4rem;
    background: #120170;
  }
}
.section__title.title--simulation {
  font-size: max(3rem, 24px);
  font-weight: 700;
  line-height: 1.7333333333;
  gap: 1rem;
  color: #117C3A;
}
@media screen and (max-width: 767px) {
  .section__title.title--simulation {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title.title--simulation {
    color: #117C3A;
    font-size: 1.7rem;
    line-height: 1.4;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title.title--simulation span {
    border-bottom: 2px solid currentColor;
  }
}
.section__title.title--simulation::before {
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  aspect-ratio: 1;
  background: #117C3A;
}
@media screen and (max-width: 767px) {
  .section__title.title--simulation::before {
    width: 1.6rem;
    height: 1.6rem;
    margin-top: 0.4rem;
  }
}
.section__title.title--simulation::after {
  content: "";
  background: #117C3A;
  width: 2.6rem;
  height: 2.6rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .section__title.title--simulation::after {
    width: 1.6rem;
    height: 1.6rem;
    margin-top: 0.4rem;
  }
}
.section__title.title--offer {
  color: #ffffff;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .section__title.title--offer {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title.title--offer {
    font-size: 1.7rem;
    line-height: 1.4;
    gap: 0.5rem;
  }
}
.section__title.title--offer .under-line {
  border-bottom: 3px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .section__title.title--offer .under-line {
    border-bottom: 2px solid #ffffff;
  }
}
.section__title.title--offer::before {
  content: "";
  background: url(../img/deco_radish.webp) no-repeat center center/cover;
  width: 3.3rem;
  aspect-ratio: 66/67;
}
@media screen and (max-width: 767px) {
  .section__title.title--offer::before {
    width: 2rem;
  }
}
.section__title.title--offer::after {
  content: "";
  background: url(../img/deco_radish.webp) no-repeat center center/cover;
  width: 3.3rem;
  aspect-ratio: 66/67;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .section__title.title--offer::after {
    width: 2rem;
  }
}
.section__title.title--recipe {
  color: #A3801F;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .section__title.title--recipe {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title.title--recipe {
    font-size: 1.7rem;
    line-height: 1.4;
    gap: 0.5rem;
  }
}
.section__title.title--recipe .under-line {
  border-bottom: 3px solid #A87D1D;
}
@media screen and (max-width: 767px) {
  .section__title.title--recipe .under-line {
    border-bottom: 2px solid #A87D1D;
  }
}
.section__title.title--recipe::before {
  content: "";
  background: url(../img/deco_potato.webp) no-repeat center center/cover;
  width: 2.8rem;
  aspect-ratio: 107/77;
}
@media screen and (max-width: 767px) {
  .section__title.title--recipe::before {
    width: 2.5rem;
  }
}
.section__title.title--recipe::after {
  content: "";
  background: url(../img/deco_potato.webp) no-repeat center center/cover;
  width: 2.8rem;
  aspect-ratio: 107/77;
}
@media screen and (max-width: 767px) {
  .section__title.title--recipe::after {
    width: 2.5rem;
  }
}
.section__title.title--faq {
  color: #017A4F;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .section__title.title--faq {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title.title--faq {
    font-size: 1.7rem;
    line-height: 1.4;
    gap: 0.5rem;
  }
}
.section__title.title--faq .under-line {
  border-bottom: 3px solid #017A4F;
}
@media screen and (max-width: 767px) {
  .section__title.title--faq .under-line {
    border-bottom: 2px solid #017A4F;
  }
}
.section__title.title--faq::before {
  content: "";
  background: url(../img/deco_green-bell.webp) no-repeat center center/cover;
  width: 2.1rem;
  aspect-ratio: 61/82;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .section__title.title--faq::before {
    width: 2rem;
  }
}
.section__title.title--faq::after {
  content: "";
  background: url(../img/deco_green-bell.webp) no-repeat center center/cover;
  width: 2.1rem;
  aspect-ratio: 61/82;
}
@media screen and (max-width: 767px) {
  .section__title.title--faq::after {
    width: 2rem;
  }
}
.section__title.title--partners {
  color: #FF3B7C;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .section__title.title--partners {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title.title--partners {
    font-size: 1.7rem;
    line-height: 1.4;
    gap: 0.5rem;
  }
}
.section__title.title--partners .under-line {
  border-bottom: 3px solid #FF3B7C;
}
@media screen and (max-width: 767px) {
  .section__title.title--partners .under-line {
    border-bottom: 2px solid #FF3B7C;
  }
}
.section__title.title--partners::before {
  content: "";
  background: url(../img/deco_partner.webp) no-repeat center center/cover;
  width: 3.5rem;
  aspect-ratio: 69/60;
}
@media screen and (max-width: 767px) {
  .section__title.title--partners::before {
    width: 2.2rem;
  }
}
.section__title.title--partners::after {
  content: "";
  background: url(../img/deco_partner.webp) no-repeat center center/cover;
  width: 3.5rem;
  aspect-ratio: 69/60;
}
@media screen and (max-width: 767px) {
  .section__title.title--partners::after {
    width: 2.2rem;
  }
}

/* 共通utility
***************************************************************/
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
/*FV
***************************************************************/
.fv {
  background: #fff;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .fv {
    max-width: 474px;
    background: url(../img/fv_bg_sp.jpg) no-repeat center center/cover;
    padding-bottom: 0;
  }
}

.fv__inner {
  padding-block: 12rem 3rem;
  padding-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    padding-block: 1.2rem;
    padding-inline: 1.2rem;
    padding-bottom: 0;
  }
}

.fv__intro {
  font-size: max(2rem, 16px);
  font-weight: 800;
  line-height: 2.275;
  color: #565656;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__intro {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__intro {
    font-size: max(1.7rem, 13.6px);
    font-weight: 800;
    line-height: 1.6323529412;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .fv__intro {
    font-size: 1.7rem;
  }
}
.fv__intro:nth-of-type(2) {
  font-size: max(2rem, 16px);
  font-weight: 800;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .fv__intro:nth-of-type(2) {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__intro:nth-of-type(2) {
    font-size: max(1.7rem, 13.6px);
    font-weight: 800;
    line-height: 1.5735294118;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .fv__intro:nth-of-type(2) {
    font-size: 1.7rem;
  }
}

.fv__logo {
  text-align: center;
  margin-top: 2rem;
}
.fv__logo img {
  width: 25.6rem;
}
@media screen and (max-width: 767px) {
  .fv__logo {
    margin-top: 0;
  }
  .fv__logo img {
    width: 26.4rem;
  }
}

.fv__catch {
  text-align: center;
  margin-top: 1rem;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  z-index: 0;
  padding-top: 50px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .fv__catch {
    margin-top: 1.2rem;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.fv__catch::before {
  content: "";
  width: 238px;
  aspect-ratio: 14/15;
  display: block;
  background: url(/assets/img/fv_yasai.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .fv__catch::before {
    display: none;
  }
}

.fv__catch-phrase {
  font-size: max(2.2rem, 17.6px);
  font-weight: 900;
  line-height: 2.2727272727;
  color: #017A4F;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .fv__catch-phrase {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__catch-phrase {
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: center;
  }
}
.fv__catch-phrase .dots {
  background-image: radial-gradient(circle at center, #017A4F 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.4em;
  padding-top: 0.2em;
}

.fv__babble {
  font-size: max(1.8rem, 14.4px);
  font-weight: 700;
  line-height: 2.7777777778;
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 1.2rem;
  background: #E78821;
  border-radius: 1.6rem;
  margin-inline: auto;
  margin-top: 0.4rem;
  position: relative;
  z-index: 2;
  width: 300px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__babble {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__babble {
    font-size: 1.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 0.8rem;
  }
}

.fv__price {
  color: #FF0303;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 2rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .fv__price {
    margin-top: 1rem;
    display: block;
    margin-bottom: 20px;
  }
}
.fv__price .right {
  margin-left: 20px;
}
.fv__price .right .fv__price-text {
  font-size: max(1.4rem, 11.2px);
  font-weight: 900;
  text-align: left;
  display: block;
  padding-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .fv__price .right .fv__price-text {
    font-size: 1.4rem;
  }
}
.fv__price .right .fv__price-text + .fv__price-text {
  border-top: 2px solid #FF0303;
}
@media screen and (max-width: 767px) {
  .fv__price .right .fv__price-text {
    padding-top: 0;
  }
}

.fv__price-head {
  font-size: max(1.2rem, 9.6px);
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .fv__price-head {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__price-head {
    font-size: 1.7rem;
    line-height: 1;
  }
}

.fv__price-cost {
  font-size: max(4.5rem, 36px);
  font-weight: 900;
  line-height: 0.8888888889;
}
@media screen and (max-width: 767px) {
  .fv__price-cost {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__price-cost {
    font-size: 6.5rem;
    line-height: 1;
  }
}
.fv__price-cost .en {
  font-size: max(1.746rem, 13.968px);
  font-weight: 900;
  position: relative;
  margin-left: 0.2rem;
}
@media screen and (max-width: 767px) {
  .fv__price-cost .en {
    font-size: 1.746rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__price-cost .en {
    font-size: 2.5rem;
  }
  .fv__price-cost .en::before {
    font-size: 0.9rem;
    top: -1rem;
    left: 0;
  }
}

.fv__price-text {
  font-size: max(2.2rem, 17.6px);
  font-weight: 700;
  line-height: 1.3636363636;
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__price-text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__price-text {
    font-size: 1.5rem;
    text-align: center;
  }
}
.fv__price-text.border {
  border-bottom: 2px solid #FF0303;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .fv__price-text.border {
    margin-top: 0.4rem;
  }
}

.fv__bottom {
  margin-top: 1%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__bottom {
    margin-top: 1.2rem;
    text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -2px 0px 0 #fff, 2px 0px 0 #fff, 0px -2px 0 #fff, 0px 2px 0 #fff;
  }
}

.fv__bottom-text01 {
  font-size: max(1.4rem, 11.2px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .fv__bottom-text01 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__bottom-text01 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #707070;
    line-height: 1.7333333333;
  }
}

.fv__bottom-text02 {
  font-size: max(1.4rem, 11.2px);
  font-weight: 400;
  line-height: 2.8571428571;
  letter-spacing: 0em;
  font-feature-settings: "palt" on;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .fv__bottom-text02 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__bottom-text02 {
    font-size: max(1.4rem, 11.2px);
    font-weight: 500;
    line-height: 1.7857142857;
    margin-top: 0.4rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .fv__bottom-text02 {
    font-size: 1.4rem;
  }
}
.fv__bottom-text02 .deco-text {
  position: relative;
  color: #ffffff;
  display: inline-block;
  padding-inline: 0.7rem;
  z-index: 1;
  font-weight: bold;
  text-shadow: none;
}
.fv__bottom-text02 .deco-text::before {
  content: "";
  position: absolute;
  background: url(../img/fv_text-deco.webp) no-repeat center center/cover;
  aspect-ratio: 184/65;
  width: 6.8rem;
  top: 0.8rem;
  left: 0.1rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .fv__bottom-text02 .deco-text::before {
    width: 6.7rem;
    height: 2.4rem;
    top: 0.1rem;
  }
}

.fv__bottom-text03 {
  font-size: max(2.4rem, 19.2px);
  font-weight: 700;
  line-height: 1.75;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .fv__bottom-text03 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__bottom-text03 {
    font-size: max(1.4rem, 11.2px);
    font-weight: 500;
    line-height: 1.7857142857;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .fv__bottom-text03 {
    font-size: 1.4rem;
  }
}

.fv__pc-cta {
  text-align: right;
  margin-top: 1rem;
}
.fv__pc-cta a {
  width: 34rem;
  transition: opacity 0.5s ease;
  animation: sway 3s ease-in-out infinite;
}
@media (any-hover: hover) {
  .fv__pc-cta a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .fv__pc-cta {
    display: none;
  }
}

.fv__sp-cta {
  display: none;
}
@media screen and (max-width: 767px) {
  .fv__sp-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.4rem;
  }
  .fv__sp-cta a {
    font-size: max(1.7rem, 13.6px);
    font-weight: 700;
    line-height: 1.7647058824;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    padding-block: 0.9rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .fv__sp-cta a {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__sp-cta .cta-line {
    background: #08BF5B;
  }
  .fv__sp-cta .cta-line::before {
    content: "";
    background: url(../img/icon_btn-line.webp) no-repeat center center/cover;
    width: 2.35rem;
    aspect-ratio: 1;
  }
}
.fv__sp-cta .cta-contact {
  background: #E78821;
}
@media screen and (max-width: 767px) {
  .fv__sp-cta .cta-contact::before {
    content: "";
    background: url(../img/icon_btn-arrow.webp) no-repeat center center/cover;
    width: 1.85rem;
    aspect-ratio: 1;
  }
}

/*グリーンデリバリーとは
***************************************************************/
.about__inner {
  padding-top: 1.2rem;
}
.about__contents {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 4.6rem;
}
@media screen and (max-width: 767px) {
  .about__contents {
    flex-direction: column;
    margin-top: 2.2rem;
    gap: 0.8rem;
    align-items: center;
    padding-inline: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .about__text-wrap {
    display: contents;
  }
}

.about__text {
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: max(1.6rem, 12.8px);
    font-weight: 400;
    line-height: 1.625;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .about__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .about__text.text01 {
    order: 1;
  }
  .about__text.text03 {
    order: 3;
  }
}

.about__img {
  width: 26.75rem;
}
@media screen and (max-width: 767px) {
  .about__img {
    order: 2;
    width: 30.8rem;
  }
}

/* なぜ安いのか
***************************************************************/
.reason__inner {
  padding-top: 3.4rem;
}
@media screen and (max-width: 767px) {
  .reason__inner {
    padding-top: 5.6rem;
  }
}

.reason__text {
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 2.5;
  margin-top: 0.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .reason__text {
    font-size: max(1.6rem, 12.8px);
    font-weight: 400;
    line-height: 1.625;
    letter-spacing: -0.02em;
    margin-top: 1rem;
    padding-inline: 1.2rem;
    text-align: left;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .reason__text {
    font-size: 1.6rem;
  }
}

.reason__example {
  margin-top: 1.6rem;
  max-width: 550px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .reason__example {
    margin-top: 2.4rem;
  }
}

.reason__example-text {
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .reason__example-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .reason__example-text {
    font-size: max(1.7rem, 13.6px);
    font-weight: 300;
    line-height: 1.7647058824;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .reason__example-text {
    font-size: 1.7rem;
  }
}

.reason__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .reason__list {
    gap: 1.2rem;
    margin-top: 0.5rem;
  }
}

.reason__item {
  background: #ffffff;
}

.reason__item-img img {
  aspect-ratio: 1;
  border: 1px solid #000000;
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.reason__item-text {
  text-align: center;
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 2.5;
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .reason__item-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .reason__item-text {
    font-size: max(1.7rem, 13.6px);
    font-weight: 300;
    line-height: 1.7647058824;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .reason__item-text {
    font-size: 1.7rem;
  }
}

/* こんな方におすすめ
***************************************************************/
.recommend {
  background: url(../img/recommend_bg.webp) no-repeat center center/cover;
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .recommend {
    background: none;
    padding-bottom: 0;
  }
}

.recommend__inner {
  padding-block: 4rem 1.6rem;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .recommend__inner {
    background: url(../img/recommend_bg.webp) no-repeat center center/cover;
    padding-block: 1rem 1.6rem;
    padding-inline: 0.6rem;
  }
}

.recommend__lists {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .recommend__lists {
    margin-top: 3.2rem;
    gap: 2.4rem;
  }
}

.recommend__item-title {
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 2.5;
  display: flex;
  gap: 0.2em;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .recommend__item-title {
    font-size: 1.4rem;
  }
}
.recommend__item-title::before {
  content: "";
  width: 1.65rem;
  height: 1.65rem;
  margin-top: 0.2rem;
  background: url(../img/icon_check.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .recommend__item-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .recommend__item-title::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.recommend__item-text {
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .recommend__item-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .recommend__item-text {
    font-size: max(1.6rem, 12.8px);
    font-weight: 400;
    line-height: 1.625;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .recommend__item-text {
    font-size: 1.6rem;
  }
}

.recommend__deco {
  position: absolute;
  width: 29.5rem;
  height: auto;
  aspect-ratio: 590/1475;
  top: 1.8rem;
  left: calc(50% + 19rem);
}
@media screen and (max-width: 767px) {
  .recommend__deco {
    display: none;
  }
}

/* こだわり
***************************************************************/
.strength__inner {
  padding-block: 8.5rem 6.6rem;
}
@media screen and (max-width: 767px) {
  .strength__inner {
    padding-block: 1.5rem 1rem;
    padding-inline: 0.8rem;
  }
}

.strength__lists {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .strength__lists {
    margin-top: 1.2rem;
    gap: 2.6rem;
  }
}

.strength__item-title {
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .strength__item-title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .strength__item-title {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.strength__item-text {
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .strength__item-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .strength__item-text {
    font-size: 1.6rem;
    line-height: 1.625;
    font-weight: 400;
  }
}

/* 商品内容
***************************************************************/
.products__inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: inherit;
  margin-inline: auto;
  background: #ffffff;
  padding-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .products__inner {
    width: 94%;
    max-width: 474px;
  }
}

.products__wrapper {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .products__wrapper {
    margin-top: 1.6rem;
  }
}

.products__container {
  padding-inline: 5rem 4rem;
  padding-block: 2.8rem 4rem;
}
.products__container.products01, .products__container.products03 {
  background: rgba(255, 87, 29, 0.09);
}
@media screen and (max-width: 767px) {
  .products__container.products01, .products__container.products03 {
    background: rgba(255, 87, 29, 0.04);
  }
}
@media screen and (max-width: 767px) {
  .products__container {
    padding-inline: 2rem 2.2rem;
    padding-block: 1.2rem;
  }
}

.products__name {
  font-size: max(3rem, 24px);
  font-weight: 700;
  line-height: 1.7333333333;
  margin-left: -0.8rem;
}
@media screen and (max-width: 767px) {
  .products__name {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .products__name {
    font-size: max(1.7rem, 13.6px);
    font-weight: 700;
    line-height: 1.7647058824;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .products__name {
    font-size: 1.7rem;
  }
}

.products__content {
  display: flex;
  align-items: center;
  gap: 3.4rem;
  position: relative;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .products__content {
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    margin-top: 1.6rem;
  }
}

.products__img {
  width: 34.4rem;
}
@media screen and (max-width: 767px) {
  .products__img {
    order: 1;
    width: 9.7rem;
  }
}
.products01 .products__img img {
  width: 29.3rem;
  height: auto;
  aspect-ratio: 586/478;
}
@media screen and (max-width: 767px) {
  .products01 .products__img img {
    width: 7.7rem;
  }
}

.products__body {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .products__body {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .products__boxes {
    order: 2;
  }
}

.products__box {
  display: flex;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .products__box {
    gap: 0.8rem;
  }
}

.products__box-item {
  width: 10.9rem;
}
@media screen and (max-width: 767px) {
  .products__box-item {
    width: 6.7rem;
  }
}

.products__description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .products__description {
    margin-top: 0;
    order: 3;
    width: 100%;
  }
}

.products__details-title {
  font-size: max(1.9rem, 15.2px);
  font-weight: 700;
  line-height: 1.3157894737;
}
@media screen and (max-width: 767px) {
  .products__details-title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .products__details-title {
    font-size: max(1.2rem, 9.6px);
    font-weight: 700;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .products__details-title {
    font-size: 1.2rem;
  }
}

.products__item {
  font-size: max(1.9rem, 15.2px);
  font-weight: 700;
  line-height: 1.3157894737;
}
@media screen and (max-width: 767px) {
  .products__item {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .products__item {
    font-size: max(1.2rem, 9.6px);
    font-weight: 700;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .products__item {
    font-size: 1.2rem;
  }
}

.products__price {
  width: -moz-fit-content;
  width: fit-content;
}
.products01 .products__price {
  color: #FF7F0B;
}
.products02 .products__price {
  color: #FF571D;
}
.products03 .products__price {
  color: #FF2E2E;
}

.products__price-head {
  font-size: max(3.3rem, 26.4px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.0181818182em;
  margin-bottom: -0.4rem;
}
@media screen and (max-width: 767px) {
  .products__price-head {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 767px) {
  .products__price-head {
    font-size: 1.7rem;
    margin-bottom: -0.4rem;
  }
}

.products__price-cost {
  font-size: max(8.3rem, 66.4px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .products__price-cost {
    font-size: 8.3rem;
  }
}
@media screen and (max-width: 767px) {
  .products__price-cost {
    letter-spacing: 0.01em;
    font-size: 5rem;
  }
}
.products__price-cost .en {
  font-size: max(4rem, 32px);
  font-weight: 900;
  line-height: 1.275;
  position: relative;
}
@media screen and (max-width: 767px) {
  .products__price-cost .en {
    font-size: 4rem;
  }
}
.products__price-cost .en::before {
  content: "(税込)※送料別";
  position: absolute;
  font-size: max(1.2rem, 9.6px);
  font-weight: 700;
  line-height: 1.75;
  top: -1rem;
  left: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .products__price-cost .en::before {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .products__price-cost .en {
    font-size: 2.4rem;
  }
  .products__price-cost .en::before {
    font-size: 0.8rem;
    top: -1rem;
    left: 0;
  }
}

.products__price-text {
  font-size: max(1.2rem, 9.6px);
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .products__price-text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .products__price-text {
    font-size: 1rem;
  }
}

.products__deco {
  position: absolute;
}
.products01 .products__deco {
  width: 14.7rem;
  height: auto;
  top: 0;
  right: 2.2rem;
}
@media screen and (max-width: 767px) {
  .products01 .products__deco {
    width: 6.5rem;
    top: 9rem;
    right: 17rem;
  }
}
.products02 .products__deco {
  width: 14.7rem;
  height: auto;
  top: 0;
  right: 2.2rem;
}
@media screen and (max-width: 767px) {
  .products02 .products__deco {
    width: 5.5rem;
    top: 10rem;
    right: 20rem;
  }
}
.products03 .products__deco {
  width: 17.4rem;
  height: auto;
  top: -1rem;
  right: 1.2rem;
}
@media screen and (max-width: 767px) {
  .products03 .products__deco {
    width: 6rem;
    top: 10rem;
    right: 20rem;
  }
}

.products__link {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .products__link {
    margin-top: 2rem;
  }
}

.products__link-button {
  padding: 1.4rem 4rem;
  background: #E78821;
  color: #ffffff;
  font-size: 3rem;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .products__link-button {
    padding: 0.8rem 2.5rem;
    font-size: 2rem;
  }
}
@media (any-hover: hover) {
  .products__link-button:hover {
    cursor: pointer;
    transform: scale(1.1);
  }
}

.products_priceBox {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}
.products_priceBox .cont {
  width: 33%;
  max-width: 224px;
  border: 4px solid #ffb43b;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}
.products_priceBox .cont .ttl {
  background: #ffb43b;
  color: #fff;
  text-align: center;
  padding: 40px 10px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .ttl {
    padding: 20px 0px;
  }
}
.products_priceBox .cont .ttl small {
  display: block;
  font-size: max(1.4rem, 11.2px);
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .ttl small {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .ttl small {
    font-size: 1rem;
  }
}
.products_priceBox .cont .ttl strong {
  display: block;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .ttl strong {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .ttl strong {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}
.products_priceBox .cont .inner {
  padding: 20px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner {
    padding: 10px 5px;
  }
}
.products_priceBox .cont .inner .img {
  max-width: 293px;
  margin: 0 auto;
}
.products_priceBox .cont .inner .priceArea {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffb43b;
}
.products_priceBox .cont .inner .priceArea .special_price {
  font-size: max(1.4rem, 11.2px);
  font-weight: 700;
  line-height: 1.2;
  display: block;
  height: 17px;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner .priceArea .special_price {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner .priceArea .special_price {
    font-size: 1.1rem;
  }
}
.products_priceBox .cont .inner .priceArea .price {
  text-align: center;
  display: block;
}
.products_priceBox .cont .inner .priceArea .price strong {
  font-size: max(3rem, 24px);
  font-weight: 900;
  line-height: 0.88;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner .priceArea .price strong {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner .priceArea .price strong {
    font-size: 2.4rem;
  }
}
.products_priceBox .cont .inner .priceArea .price small {
  font-size: max(2.2rem, 17.6px);
  font-weight: 900;
  line-height: 1.2;
  display: inline-block;
  margin-left: 0.25em;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner .priceArea .price small {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner .priceArea .price small {
    font-size: 1.3rem;
  }
}
.products_priceBox .cont .inner .priceArea .price_txt {
  font-size: max(1.4rem, 11.2px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner .priceArea .price_txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner .priceArea .price_txt {
    font-size: 1.1rem;
  }
}
.products_priceBox .cont .inner .detail {
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 1em;
  flex-grow: 1;
}
.products_priceBox .cont .inner .detail li {
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner .detail li {
    font-size: 1.4rem;
  }
}
.products_priceBox .cont .inner p {
  text-align: center;
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner p {
    font-size: 1.4rem;
  }
}
.products_priceBox .cont .inner a {
  display: block;
  border-radius: 15px;
  background: #ffb43b;
  color: #fff;
  text-align: center;
  font-size: max(2rem, 16px);
  font-weight: 900;
  line-height: 1.2;
  padding: 0.5em;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .products_priceBox .cont .inner a {
    font-size: 1.4rem;
  }
}
.products_priceBox .cont:nth-child(2) {
  border-color: #ff791f;
}
.products_priceBox .cont:nth-child(2) .ttl {
  background: #ff791f;
}
.products_priceBox .cont:nth-child(2) .priceArea {
  color: #ff791f;
}
.products_priceBox .cont:nth-child(2) a {
  background: #ff791f;
}
.products_priceBox .cont:nth-child(3) {
  border-color: #ff2e2e;
}
.products_priceBox .cont:nth-child(3) .ttl {
  background: #ff2e2e;
}
.products_priceBox .cont:nth-child(3) .priceArea {
  color: #ff2e2e;
}
.products_priceBox .cont:nth-child(3) a {
  background: #ff2e2e;
}

/* ポイントプレゼント
***************************************************************/
.point__inner {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .point__inner {
    padding-top: 6rem;
  }
}

.point__head {
  max-width: 82.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .point__head {
    padding-inline: 1rem;
  }
}

.point__container {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .point__container {
    margin-top: 2rem;
  }
}

.point__catch {
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__catch {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .point__catch {
    font-size: max(1.6rem, 12.8px);
    font-weight: 500;
    line-height: 1.625;
    letter-spacing: -0.0025em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .point__catch {
    font-size: 1.6rem;
  }
}

.point__text {
  font-size: max(1.4rem, 11.2px);
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .point__text {
    font-size: max(1.6rem, 12.8px);
    font-weight: 400;
    line-height: 1.625;
    letter-spacing: -0.0025em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .point__text {
    font-size: 1.6rem;
  }
}
.point__text.text01 {
  text-align: left;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .point__text.text01 {
    margin-top: 2.4rem;
  }
}
.point__text.text02 {
  font-weight: 700;
  margin-top: 2.4rem;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .point__text.text02 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .point__text.text02 {
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .point__text.text02 {
    margin-top: 3.4rem;
  }
}
.point__text.text03 {
  margin-top: 3.4rem;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .point__text.text03 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .point__text.text03 {
    margin-top: 2.4rem;
  }
}

.point__img {
  max-width: 53.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .point__img {
    margin-top: 3.5rem;
    padding-inline: 0.4rem;
    gap: 2rem;
  }
}

/* 野菜品目
***************************************************************/
.vegetables__inner {
  padding-top: 5rem;
  max-width: 710px;
}
@media screen and (max-width: 767px) {
  .vegetables__inner {
    padding-top: 6.4rem;
    max-width: 474px;
  }
}

.vegetables__title {
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .vegetables__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .vegetables__title {
    font-size: 1.7rem;
  }
}

.vegetables__lists {
  max-width: 80rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem 5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .vegetables__lists {
    padding-inline: 0.2rem;
    gap: 2rem 3.6rem;
    margin-top: 1.6rem;
  }
}

.vegetables__item img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.vegetables__item-name {
  font-size: max(1.4rem, 11.2px);
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .vegetables__item-name {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .vegetables__item-name {
    font-size: 1rem;
  }
}

/* 注文後の流れ
***************************************************************/
.flow__inner {
  padding-top: 6.4rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .flow__inner {
    padding-top: 5.4rem;
  }
}

.flow__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 725px;
  margin: 0 auto;
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  .flow__container {
    margin-top: 2.2rem;
    gap: 3rem;
  }
}

.flow__date-cycle {
  font-size: max(1.4rem, 11.2px);
  font-weight: 300;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .flow__date-cycle {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .flow__date-cycle {
    font-size: 1.7rem;
    font-weight: 700;
    padding-left: 1rem;
  }
}
.flow__date-cycle.cycle01 {
  color: #280D9B;
}
.flow__date-cycle.cycle02 {
  color: #3AA737;
}
.flow__date-cycle.cycle03 {
  color: #DD5B11;
}

.flow__date-steps {
  margin-top: 0.8rem;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .flow__date-steps {
    margin-top: 0.6rem;
    padding-left: 0;
  }
}

/* お買い物シミュレーション
***************************************************************/
.simulation__inner {
  padding-block: 8rem 5rem;
}
@media screen and (max-width: 767px) {
  .simulation__inner {
    padding-block: 6.4rem 0.8rem;
  }
}

.simulation__contents {
  max-width: 79.6rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.8rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .simulation__contents {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 2.4rem;
    gap: 2rem;
  }
}

.simulation__box {
  padding: 2.6rem 1rem 1rem 1rem;
  border: 1px solid #000000;
}
@media screen and (max-width: 767px) {
  .simulation__box {
    padding: 1.4rem 1rem 1.6rem 2.1rem;
  }
}
.simulation__box.box02 {
  padding: 2.6rem 3rem 1rem 3rem;
}
@media screen and (max-width: 767px) {
  .simulation__box.box02 {
    padding: 1.8rem 1rem 2.6rem 2.1rem;
  }
}

.simulation__box-text {
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.65;
}
@media screen and (max-width: 767px) {
  .simulation__box-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .simulation__box-text {
    font-size: max(1.6rem, 12.8px);
    font-weight: 400;
    line-height: 1.625;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .simulation__box-text {
    font-size: 1.6rem;
  }
}
.simulation__box-text .catch {
  font-weight: 500;
}
.simulation__box-text .price {
  font-weight: 700;
  color: #FF1A1A;
}

.simulation__box-list {
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.65;
}
@media screen and (max-width: 767px) {
  .simulation__box-list {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .simulation__box-list {
    font-size: max(1.6rem, 12.8px);
    font-weight: 400;
    line-height: 1.625;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .simulation__box-list {
    font-size: 1.6rem;
  }
}
.simulation__box-list > li {
  position: relative;
  padding-left: 1.5rem;
}
.simulation__box-list > li::before {
  content: "・";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  translate: 0 -50%;
}

.simulation__box-img {
  text-align: center;
  margin-top: 3.2rem;
}
.simulation__box-img img {
  width: 23.6rem;
}
@media screen and (max-width: 767px) {
  .simulation__box-img img {
    width: 19.1rem;
  }
}

/* オファー
***************************************************************/
.offer__inner {
  padding-block: 4.6rem 11rem;
  background: url(../img/eco_bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .offer__inner {
    padding-block: 3.6rem 6rem;
    background: url(../img/eco_bg-sp.webp) no-repeat bottom center/cover;
  }
}

.offer__intro {
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
  .offer__intro {
    margin-top: 3.4rem;
    gap: 2rem;
  }
}

.offer__intro-text {
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .offer__intro-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .offer__intro-text {
    font-size: 1.6rem;
  }
}

.offer__intro-catch {
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .offer__intro-catch {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .offer__intro-catch {
    font-size: 1.7rem;
  }
}

.offer__comparison {
  max-width: 64rem;
  margin-inline: auto;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .offer__comparison {
    margin-top: 4rem;
    gap: 0.8rem;
  }
}

.offer__comparison-box {
  background: #ffffff;
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 700;
  color: #163177;
  padding: 2rem 2rem 2.2rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .offer__comparison-box {
    color: #120170;
    font-size: 1.6rem;
    padding: 1rem 0.8rem 1rem 0.8rem;
    font-weight: 500;
    width: 39rem;
    max-width: 100%;
    margin-inline: auto;
  }
}

.offer__comparison-flow {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .offer__comparison-flow {
    gap: 0;
    margin-top: -1rem;
  }
}

.offer__comparison-place {
  display: flex;
  align-items: center;
  text-align: center;
}
.offer__comparison-place:not(:last-child):not(:nth-last-child(2))::after {
  content: "→";
}
@media screen and (max-width: 767px) {
  .offer__comparison-place:not(:last-child)::after {
    content: "→";
    padding-inline: 0.5rem;
  }
}

.text-red {
  color: #FF1F1F;
}

.text-blue {
  color: #4741CE;
}

.offer__outro {
  margin-top: 3.4rem;
  text-align: center;
}
.offer__outro img {
  max-width: 78rem;
}
@media screen and (max-width: 767px) {
  .offer__outro {
    margin-top: 1.2rem;
  }
  .offer__outro img {
    max-width: 36rem;
  }
}

.offer__outro-text {
  display: none;
}
@media screen and (max-width: 767px) {
  .offer__outro-text {
    display: block;
    font-size: max(1.6rem, 12.8px);
    font-weight: 400;
    line-height: 1.625;
    letter-spacing: 0.02em;
    padding-inline: 0.4rem;
    color: #120170;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .offer__outro-text {
    font-size: 1.6rem;
  }
}

/* 活用レシピ
***************************************************************/
.recipe__inner {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .recipe__inner {
    padding-top: 2.4rem;
  }
}

.recipe__contents {
  margin-top: 2.8rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.recipe__lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.recipe__item {
  overflow: hidden;
}
.recipe__item a {
  display: block;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .recipe__item a:hover {
    cursor: pointer;
    transform: scale(1.15);
  }
}

/* よくある質問
***************************************************************/
.faq__inner {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    padding-top: 2rem;
  }
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.faq__lists {
  margin-top: 1.8rem;
}

.faq__question {
  display: block;
  background: #017A4F;
  padding-block: 1.2rem 1.4rem;
  color: #ffffff;
  position: relative;
}
.faq__question::before, .faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: #ffffff;
}
.faq__question::before {
  right: 3.4rem;
  width: 1.3rem;
  height: 0.3rem;
}
@media screen and (max-width: 767px) {
  .faq__question::before {
    width: 1rem;
    height: 0.2rem;
    right: 1rem;
  }
}
.faq__question::after {
  right: 3.9rem;
  width: 0.3rem;
  height: 1.3rem;
  transition: rotate 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__question::after {
    width: 0.2rem;
    height: 1rem;
    right: 1.4rem;
  }
}
@media (any-hover: hover) {
  .faq__question:hover {
    cursor: pointer;
  }
}

details[open] .faq__question::after {
  rotate: 90deg;
}

.faq__question-text {
  display: block;
  font-size: max(1.4rem, 11.2px);
  font-weight: 700;
  line-height: 1.75;
  position: relative;
  padding-inline: 11.5rem 4.4rem;
}
@media screen and (max-width: 767px) {
  .faq__question-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .faq__question-text {
    font-size: 1.7rem;
    padding-inline: 4rem 3.2rem;
  }
}
.faq__question-text::before {
  content: "Q";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .faq__question-text::before {
    left: 1rem;
  }
}

.faq__content {
  background: #DDEBB8;
}

.faq__answer {
  display: block;
  padding-block: 1.2rem 1.4rem;
}

.faq__answer-text {
  display: block;
  position: relative;
  font-size: max(1.4rem, 11.2px);
  font-weight: 700;
  line-height: 1.75;
  color: #017A4F;
  padding-inline: 11.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .faq__answer-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .faq__answer-text {
    font-size: 1.7rem;
    padding-inline: 4rem 2.2rem;
  }
}
.faq__answer-text::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .faq__answer-text::before {
    left: 1rem;
  }
}

.faq__more {
  text-align: center;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .faq__more {
    margin-top: 2rem;
  }
}

.faq__more-button {
  display: inline-block;
  background: #017A4F;
  color: #ffffff;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  padding: 1.2rem 6.4rem 1.4rem 6.4rem;
}
@media screen and (max-width: 767px) {
  .faq__more-button {
    font-size: 2rem;
  }
}
@media (any-hover: hover) {
  .faq__more-button:hover {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.5s ease;
  }
}
@media screen and (max-width: 767px) {
  .faq__more-button {
    font-size: 1.7rem;
    padding: 1rem 3.6rem 1.2rem 3.6rem;
  }
}

/* パートナー募集
***************************************************************/
.partners__inner {
  padding-block: 9rem 11.2rem;
}
@media screen and (max-width: 767px) {
  .partners__inner {
    padding-block: 2.8rem 2.4rem;
  }
}

.partners__contents {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 3.4rem;
  max-width: 81.6rem;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .partners__contents {
    margin-top: 3.2rem;
    padding-inline: 1rem;
    gap: 3rem;
  }
}

.partners__text {
  font-size: max(1.4rem, 11.2px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .partners__text {
    font-size: 1.4rem;
  }
}
.partners__text.emphasis {
  font-weight: 700;
  color: #FF3B7C;
}
@media screen and (max-width: 767px) {
  .partners__text {
    font-size: 1.7rem;
  }
}

/* footer
***************************************************************/
.footer__inner {
  background: #017A4F;
  color: #ffffff;
  padding-block: 6rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-block: 4rem 2.4rem;
  }
}

.footer__contents {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
@media screen and (max-width: 767px) {
  .footer__contents {
    gap: 4rem;
  }
}

.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
}
.footer__sns-link a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .footer__sns-link a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .footer__sns-link {
    gap: 3.2rem;
  }
}
.footer__sns-link .x {
  width: 3.4rem;
}
@media screen and (max-width: 767px) {
  .footer__sns-link .x {
    width: 2.6rem;
  }
}
.footer__sns-link .instagram {
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .footer__sns-link .instagram {
    width: 3rem;
  }
}
.footer__sns-link .line {
  width: 4.8rem;
}
@media screen and (max-width: 767px) {
  .footer__sns-link .line {
    width: 3.8rem;
  }
}
.footer__sns-link .fb {
  width: 5.2rem;
}
@media screen and (max-width: 767px) {
  .footer__sns-link .fb {
    width: 4rem;
  }
}
.footer__sns-link .mail {
  width: 4.4rem;
}
@media screen and (max-width: 767px) {
  .footer__sns-link .mail {
    width: 3.6rem;
  }
}

.footer__information {
  display: flex;
  gap: 3.2rem;
  justify-content: center;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .footer__information {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__information {
    font-size: 1.7rem;
  }
}
.footer__information a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .footer__information a:hover {
    opacity: 0.8;
  }
}

.footer__copyright {
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 1.7rem;
    font-weight: 400;
  }
}

/* 特商法
***************************************************************/
.law__inner {
  padding-block: 2rem 8rem;
}
@media screen and (max-width: 767px) {
  .law__inner {
    padding-block: 2rem 6rem;
    padding-inline: 1rem;
  }
}

.low__container {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .low__container {
    margin-top: 3.2rem;
  }
}

.law__contents {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .law__contents {
    margin-top: 1.6rem;
  }
}
.law__contents > p:not(:first-of-type) {
  margin-top: 1.6rem;
}

.law__contents .table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cdcdcd;
}
.law__contents th, .law__contents td {
  padding: 0.8rem;
  text-align: left;
  border: 1px solid #cdcdcd;
}
.law__contents th {
  width: 30%;
}

.law__contents-payment {
  text-align: center;
  font-size: 1.4rem;
}

.law__contents-img img {
  width: 22rem;
  height: auto;
  aspect-ratio: 220/138;
}/*# sourceMappingURL=style.css.map */