/*!*******************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/styles/main.scss ***!
  \*******************************************************************************************************************************************/
@charset "UTF-8";
/** 
変数の定義ファイル 
*/
/* ビューポート */
/* 色 */
/* フォント */
/* spの共通左右パディング */
/**
@Mixinの定義ファイル
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 プロジェクト個別のスタイルリセット 
 reset.scssには手を加えず、こちらに書く
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans CJK JP", sans-serif;
  color: #804201;
}

.main {
  overflow: hidden;
}

.hide {
  opacity: 0;
  visibility: hidden;
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: inherit;
  max-width: 100%;
  height: auto;
}

.pc-br {
  display: revert;
}
@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media (max-width: 768px) {
  .sp-br {
    display: revert;
  }
}

ul::before {
  content: none;
}

/**
@keyframesの定義ファイル
*/
@keyframes kf-slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes kf-strong-flash {
  0%, 10%, 20%, 30%, 100% {
    opacity: 1;
  }
  5%, 15%, 25% {
    opacity: 0;
  }
}
.flash.is-active {
  animation-name: kf-strong-flash;
  animation-duration: 4s;
  animation-delay: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  transform-origin: top center;
}

@keyframes kf-fuwafuwa {
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
  25% {
    transform: translate(0, -7px) rotate(-7deg);
  }
  50% {
    transform: translate(0, 0) rotate(0);
  }
  75% {
    transform: translate(0, -7px) rotate(7deg);
  }
}
@keyframes kf-loading-note {
  0%, 20%, 100% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-10px);
  }
}
@keyframes kf-loading-yurayura {
  0%, 100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}
@keyframes kf-bound {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.bound {
  animation-name: kf-bound;
  animation-duration: 0.3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/**
無限スライダーのスタイル
*/
.slider {
  opacity: 1;
}
.slider__track {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.slider__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}
.slider__list.is-active {
  animation: kf-slider 40s infinite linear 1s both;
}
.slider__slide {
  margin-left: 5vw;
}
@media (max-width: 768px) {
  .slider__slide {
    margin-left: 7vw;
  }
}
.slider__slide img {
  display: block;
  margin: 0 auto;
}
.slider__slide.large {
  width: 12.5vw;
}
@media (max-width: 768px) {
  .slider__slide.large {
    width: 13.3333333333vw;
  }
}
.slider__slide.short {
  width: 7.8125vw;
}
@media (max-width: 768px) {
  .slider__slide.short {
    width: 8vw;
  }
}

/**
パンくずリストのスタイル
*/
.pankuzu {
  background-color: #f7f4ee;
  padding: 8px 0;
  color: #ffffff;
  height: 40px;
}
@media (max-width: 768px) {
  .pankuzu {
    height: auto;
  }
}
.pankuzu .inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .pankuzu .inner {
    width: 92%;
    gap: 5px;
  }
}
.pankuzu .item {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 2px;
  letter-spacing: 2.2px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .pankuzu .item {
    font-size: 11px;
    padding: 7px 12px;
    border-radius: 5px;
    letter-spacing: 2px;
  }
}
.pankuzu .item.top {
  background-color: #669219;
}
.pankuzu .item.this {
  background-color: #fff;
  color: #6c5b52;
}
.pankuzu .arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid #669219;
  border-bottom: 2px solid #669219;
  transform: rotate(-45deg);
}

/**
ローディング画面のスタイル
*/
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fefff1;
  top: 0;
  left: 0;
}
.loading .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
.loading .bg img {
  width: 100%;
  height: 100%;
}
.loading__inner {
  position: relative;
}
.loading .items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2000;
  gap: 3.6458333333vw;
}
.loading .item img {
  animation-name: kf-loading-yurayura;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.loading .item .straw {
  width: 4.6354166667vw;
  opacity: 0;
}
@media (max-width: 768px) {
  .loading .item .straw {
    width: 9.3333333333vw;
    margin-top: -10.6666666667vw;
    max-width: 50px;
  }
}
.loading .item .cap {
  width: 7.65625vw;
  opacity: 0;
  margin-bottom: -20%;
}
@media (max-width: 768px) {
  .loading .item .cap {
    width: 12vw;
    margin-bottom: 0;
    max-width: 60px;
  }
}
.loading .notes {
  margin-top: 2.6041666667vw;
  color: #6abe3d;
  font-size: 3.6458333333vw;
  letter-spacing: 0.2em;
  font-family: "Shuei MaruGo", sans-serif;
}
@media (max-width: 768px) {
  .loading .notes {
    font-size: 6.6666666667vw;
    position: relative;
    z-index: 2000;
  }
}
.loading .notes .loading-note {
  display: inline-block;
  animation-name: kf-loading-note;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
.loading .decoration {
  position: absolute;
  z-index: 2000;
  opacity: 0;
}
.loading .decoration.around--1 {
  top: 0;
  left: 0;
  width: 32.5vw;
}
@media (max-width: 768px) {
  .loading .decoration.around--1 {
    width: 40vw;
  }
}
.loading .decoration.around--2 {
  top: 0;
  right: 0;
  width: 43.6458333333vw;
}
@media (max-width: 768px) {
  .loading .decoration.around--2 {
    width: 53.3333333333vw;
  }
}
.loading .decoration.around--3 {
  bottom: 0;
  left: 0;
  width: 16.6145833333vw;
}
@media (max-width: 768px) {
  .loading .decoration.around--3 {
    width: 31.2vw;
  }
}
.loading .decoration.around--4 {
  bottom: 0;
  right: 0;
  width: 40.2083333333vw;
}
@media (max-width: 768px) {
  .loading .decoration.around--4 {
    width: 55.8666666667vw;
  }
}
.loading .decoration.bg-leaf--1 {
  top: 0;
  left: -10.8333333333vw;
  width: 6.0416666667vw;
}
@media (max-width: 768px) {
  .loading .decoration.bg-leaf--1 {
    width: 12vw;
    top: 0vw;
    left: auto;
    right: -17.3333333333vw;
    transform: rotate(72deg);
  }
}
.loading .decoration.bg-leaf--2 {
  top: 5.2604166667vw;
  right: -5.2083333333vw;
  width: 7.65625vw;
  transform: rotate(217deg);
}
@media (max-width: 768px) {
  .loading .decoration.bg-leaf--2 {
    width: 14.4vw;
    top: auto;
    bottom: -26.6666666667vw;
    right: 12vw;
    transform: rotate(265deg);
  }
}
.loading .decoration.bg-leaf--3 {
  top: 23.6458333333vw;
  left: -5.625vw;
  width: 4.2708333333vw;
}
@media (max-width: 768px) {
  .loading .decoration.bg-leaf--3 {
    display: none;
  }
}
.loading .decoration.bg-leaf--4 {
  top: 23.6458333333vw;
  right: -4.6875vw;
  width: 6.0416666667vw;
}
@media (max-width: 768px) {
  .loading .decoration.bg-leaf--4 {
    width: 18.6666666667vw;
    top: -13.3333333333vw;
    left: -13.3333333333vw;
  }
}

.hero {
  background-image: url(./images/kv_bg.3791854064ba903bcf70.jpg);
  background-repeat: no-repeat;
  background-position: center 118%;
  background-size: cover;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    background-image: url(./images/kv_bg.e0be840c778845bea70f.jpg);
  }
}
.hero__inner {
  padding-top: 6.0416666667vw;
  padding-bottom: 8.59375vw;
  padding-left: 13.1770833333vw;
  padding-right: 7.2395833333vw;
  display: flex;
  flex-direction: column;
  gap: 3.6979166667vw;
  position: relative;
  z-index: 31;
}
@media (max-width: 768px) {
  .hero__inner {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    padding-top: 2.8vw;
    padding-bottom: 0;
    z-index: 40;
  }
}
.hero__inner .sub {
  margin: 0 auto;
  width: 44.4791666667vw;
  position: relative;
}
@media (max-width: 768px) {
  .hero__inner .sub {
    width: 100%;
  }
}
.hero__inner .sub::before {
  content: "";
  background-image: url(./images/kv_img07.097270848157868b6516.png);
  background-position: center;
  background-size: cover;
  display: block;
  width: 8.59375vw;
  height: 8.90625vw;
  position: absolute;
  top: -75%;
  left: -23%;
}
@media (max-width: 768px) {
  .hero__inner .sub::before {
    width: 11.0666666667vw;
    height: 11.0666666667vw;
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto;
    margin-bottom: 2.9333333333vw;
  }
}
.hero__inner .wrapper {
  display: grid;
  column-gap: 2.0833333333vw;
  grid-template-columns: 829fr 610fr;
}
@media (max-width: 768px) {
  .hero__inner .wrapper {
    display: flex;
    flex-direction: column;
  }
}
.hero__inner .wrapper .title {
  grid-column: 1;
  grid-row: 1/3;
  width: 43.1770833333vw;
  justify-self: center;
}
@media (max-width: 768px) {
  .hero__inner .wrapper .title {
    width: 100%;
  }
}
.hero__inner .wrapper .prods {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  margin-right: 2.6041666667vw;
}
@media (max-width: 768px) {
  .hero__inner .wrapper .prods {
    flex-direction: row;
    margin-right: 0;
    justify-content: center;
  }
}
.hero__inner .wrapper .prods__straw {
  width: 25.5208333333vw;
  margin-right: 1.3020833333vw;
}
@media (max-width: 768px) {
  .hero__inner .wrapper .prods__straw {
    width: 67.4666666667vw;
    margin-right: 0;
  }
}
.hero__inner .wrapper .prods__cap {
  width: 12.3958333333vw;
}
@media (max-width: 768px) {
  .hero__inner .wrapper .prods__cap {
    width: 32vw;
    margin-top: 0;
  }
}
.hero__inner .wrapper .prods__strong {
  width: 5vw;
  height: 4.4270833333vw;
  position: absolute;
  top: -30%;
  left: 0;
}
@media (max-width: 768px) {
  .hero__inner .wrapper .prods__strong {
    width: 14.6666666667vw;
    height: 11.3333333333vw;
    top: -25%;
    left: 2%;
  }
}
.hero__inner .wrapper .pkg {
  grid-column: 2;
  grid-row: 2;
  margin-top: -4vw;
}
@media (max-width: 768px) {
  .hero__inner .wrapper .pkg {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}
.hero__inner .wrapper .pkg--large {
  width: 11.9791666667vw;
}
@media (max-width: 768px) {
  .hero__inner .wrapper .pkg--large {
    width: 29.8666666667vw;
  }
}
.hero__inner .wrapper .pkg--short {
  width: 9.375vw;
}
@media (max-width: 768px) {
  .hero__inner .wrapper .pkg--short {
    width: 18.6666666667vw;
  }
}
.hero__curve {
  position: absolute;
  left: 0;
  bottom: -3.90625vw;
  z-index: 35;
  width: 100%;
}
@media (max-width: 768px) {
  .hero__curve {
    bottom: 0;
  }
}
.hero .bg-layer {
  position: relative;
}
.hero .bg-layer .layer {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 30;
}
.hero .bg-layer .layer1 {
  background-image: url(./images/kv_bg_img01.4d78cada857f253e77a8.png);
  top: 0;
  left: 0;
  width: 33.0729166667vw;
  height: 12.34375vw;
}
@media (max-width: 768px) {
  .hero .bg-layer .layer1 {
    background-image: url(./images/kv_bg_img01.8fceb458f4fc1433b477.png);
    width: 66.1333333333vw;
    height: 22.1333333333vw;
  }
}
.hero .bg-layer .layer2 {
  background-image: url(./images/kv_bg_img02.6e40274eef623f103c41.png);
  top: 0;
  right: 0;
  width: 43.6458333333vw;
  height: 10.8333333333vw;
}
@media (max-width: 768px) {
  .hero .bg-layer .layer2 {
    background-image: url(./images/kv_bg_img02.dc00c581b007e51f7878.png);
    width: 42vw;
    height: 15.7333333333vw;
  }
}
.hero .bg-layer .layer3 {
  background-image: url(./images/kv_bg_img03.700408b1f10e0c05ec51.png);
  bottom: 3%;
  left: 0;
  width: 16.6145833333vw;
  height: 16.3020833333vw;
  z-index: 32;
}
@media (max-width: 768px) {
  .hero .bg-layer .layer3 {
    background-image: url(./images/kv_bg_img03.3bba20be70c079d8c3b8.png);
    width: 28.2666666667vw;
    height: 36.1333333333vw;
    bottom: 3%;
    left: -12vw;
  }
}
.hero .bg-layer .layer4 {
  background-image: url(./images/kv_bg_img04.7b3e77bc95fdbfb56e3b.png);
  bottom: 0;
  right: 0;
  width: 40.2083333333vw;
  height: 18.28125vw;
  z-index: 20;
}
@media (max-width: 768px) {
  .hero .bg-layer .layer4 {
    background-image: url(./images/kv_bg_img04.4453d0524590da0613d0.png);
    width: 96.4vw;
    height: 23.4666666667vw;
    bottom: 8.9333333333vw;
    z-index: 25;
  }
}

.about {
  padding-top: 5.2083333333vw;
  padding-bottom: 4.7395833333vw;
  position: relative;
}
@media (max-width: 768px) {
  .about {
    padding-bottom: 17.3333333333vw;
  }
}
@media (max-width: 768px) {
  .about .intro {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.about .intro1 {
  text-align: center;
}
.about .intro1 img {
  width: 73.3333333333vw;
}
@media (max-width: 768px) {
  .about .intro1 img {
    width: 100%;
  }
}
.about .slider {
  margin-top: 4.84375vw;
}
@media (max-width: 768px) {
  .about .slider {
    margin-top: 9.2vw;
  }
}
.about .intro2 {
  margin-top: 7.8125vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6.25vw;
}
@media (max-width: 768px) {
  .about .intro2 {
    margin-top: 6.6666666667vw;
    gap: 8vw;
  }
}
.about .intro2 .h3 {
  width: 59.6875vw;
}
@media (max-width: 768px) {
  .about .intro2 .h3 {
    width: 100%;
  }
}
.about .intro2 .text {
  color: #804201;
  font-size: 1.5625vw;
  text-align: center;
  line-height: 2em;
  letter-spacing: 0.105em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .about .intro2 .text {
    font-size: 3.3333333333vw;
  }
}
.about::after {
  content: "";
  display: block;
  background-image: url(./images/02_bg_img.8da4ebe93a889e1fa539.png);
  background-position: center;
  background-size: cover;
  width: 28.6458333333vw;
  height: 34.0625vw;
  position: absolute;
  bottom: -3.6458333333vw;
  right: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .about::after {
    background-image: url(./images/02_bg_img.50e1c7b7439c92ee4002.png);
    width: 38.6666666667vw;
    height: 68vw;
    bottom: -4vw;
    right: 0;
  }
}

.good {
  position: relative;
  overflow: hidden;
}
.good__curve.top {
  margin-bottom: -0.2px;
}
@media (max-width: 768px) {
  .good__curve.top {
    margin-bottom: -0.1px;
  }
}
.good__curve.bottom {
  margin-top: 0;
}
@media (max-width: 768px) {
  .good__curve.bottom {
    margin-top: 0;
  }
}
.good__inner {
  background-color: rgba(130, 226, 247, 0.17);
  padding-top: 5.9375vw;
}
@media (max-width: 768px) {
  .good__inner {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    padding-top: 48vw;
  }
}
.good__title {
  width: 89.0625vw;
  position: absolute;
  top: 6.1458333333vw;
  left: 0;
}
@media (max-width: 768px) {
  .good__title {
    width: 96vw;
    top: 2.6666666667vw;
  }
}
.good__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25vw;
}
@media (max-width: 768px) {
  .good__content {
    flex-direction: column;
    align-items: center;
  }
}
.good__content.content1 .image {
  position: relative;
  width: 28.3333333333vw;
  height: 28.5416666667vw;
  opacity: 0;
}
@media (max-width: 768px) {
  .good__content.content1 .image {
    width: 100%;
    height: 90vw;
  }
}
.good__content.content1 .image .num {
  width: 9.4791666667vw;
  position: absolute;
  top: -0.3125vw;
  left: 0;
  z-index: 31;
}
@media (max-width: 768px) {
  .good__content.content1 .image .num {
    width: 30.5333333333vw;
    top: -11.3333333333vw;
  }
}
.good__content.content1 .image .strawCap {
  position: absolute;
  top: 0;
  z-index: 30;
  width: 100%;
}
.good__content.content1 .image .strong {
  width: 8.4375vw;
  position: absolute;
  top: 0;
  right: 2.6041666667vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .good__content.content1 .image .strong {
    width: 22.5333333333vw;
    top: 1.7333333333vw;
    right: 4.5333333333vw;
  }
}
.good__content.content1 .image .sugar {
  width: 11.40625vw;
  position: absolute;
  bottom: -2.8645833333vw;
  right: 1.1458333333vw;
  z-index: 32;
}
@media (max-width: 768px) {
  .good__content.content1 .image .sugar {
    width: 34vw;
    bottom: -10.5333333333vw;
    right: 0;
  }
}
.good__content.content1 .image .arrow {
  width: 12.3958333333vw;
  position: absolute;
  top: 12.2395833333vw;
  left: 6.71875vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .good__content.content1 .image .arrow {
    width: 40vw;
    top: 39.0666666667vw;
    left: 28vw;
    z-index: 33;
  }
}
.good__content.content1 .image .leaf1 {
  width: 5vw;
  position: absolute;
  top: 14.3229166667vw;
  left: -1.3020833333vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .good__content.content1 .image .leaf1 {
    width: 15.4666666667vw;
    top: 54.6666666667vw;
    left: 0;
  }
}
.good__content.content1 .image .leaf2 {
  width: 6.3020833333vw;
  position: absolute;
  top: 23.1770833333vw;
  left: 2.2395833333vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .good__content.content1 .image .leaf2 {
    width: 19.6vw;
    top: 79.8666666667vw;
    left: 13.8666666667vw;
  }
}
@media (max-width: 768px) {
  .good__content.content1 .paragraph {
    margin-top: 18.5333333333vw;
  }
}
.good__content.content2 {
  margin-top: 5.9895833333vw;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .good__content.content2 {
    flex-direction: column;
    margin-top: 19.3333333333vw;
  }
}
.good__content.content2 .image {
  position: relative;
  width: 29.8958333333vw;
  height: 28.6979166667vw;
}
@media (max-width: 768px) {
  .good__content.content2 .image {
    width: 89.3333333333vw;
    height: 90vw;
  }
}
.good__content.content2 .image .num {
  width: 10.4166666667vw;
  position: absolute;
  top: 0;
  right: -1.4583333333vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .good__content.content2 .image .num {
    width: 30.6666666667vw;
    top: -11.3333333333vw;
    right: 0;
  }
}
.good__content.content2 .image .main {
  position: absolute;
  top: 0;
  z-index: 30;
  width: 100%;
}
.good__content.content2 .image .cap {
  width: 10.5729166667vw;
  position: absolute;
  bottom: 1.0416666667vw;
  left: -3.90625vw;
  z-index: 33;
}
@media (max-width: 768px) {
  .good__content.content2 .image .cap {
    width: 30vw;
    bottom: -11.3333333333vw;
    left: 0;
  }
}
.good__content.content2 .image .pkg {
  width: 13.59375vw;
  position: absolute;
  top: 16.1979166667vw;
  left: -36.25vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .good__content.content2 .image .pkg {
    width: 34.8vw;
    top: auto;
    bottom: -39.0666666667vw;
    left: auto;
    right: 0;
  }
}
.good__content.content2 .image .arrow {
  width: 22.2916666667vw;
  position: absolute;
  top: 23.1770833333vw;
  left: -25.3645833333vw;
  z-index: 32;
}
@media (max-width: 768px) {
  .good__content.content2 .image .arrow {
    width: 38.6666666667vw;
    top: auto;
    bottom: -20vw;
    left: 21.8666666667vw;
    z-index: 35;
  }
}
.good__content.content2 .paragraph {
  margin-top: 1.5625vw;
}
@media (max-width: 768px) {
  .good__content.content2 .paragraph {
    margin-top: 47.0666666667vw;
  }
}
.good__content.content3 {
  margin-top: 6.3541666667vw;
}
@media (max-width: 768px) {
  .good__content.content3 {
    margin-top: 18.8vw;
  }
}
.good__content.content3 .image {
  position: relative;
  width: 29.8958333333vw;
  height: 28.6979166667vw;
}
@media (max-width: 768px) {
  .good__content.content3 .image {
    width: 89.3333333333vw;
    height: 90vw;
  }
}
.good__content.content3 .image .num {
  width: 10.3125vw;
  position: absolute;
  top: 0;
  left: -1.9270833333vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .good__content.content3 .image .num {
    width: 29.0666666667vw;
    top: -11.2vw;
    left: 0;
  }
}
.good__content.content3 .image .main {
  position: absolute;
  top: 0;
  z-index: 30;
  width: 100%;
}
.good__content.content3 .image .straw {
  position: absolute;
  width: 10.5729166667vw;
  top: 16.1979166667vw;
  right: -4.9479166667vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .good__content.content3 .image .straw {
    width: 31.8666666667vw;
    top: 64.5333333333vw;
    left: auto;
    right: 0;
  }
}
.good__content.content3 .image .arrow {
  position: absolute;
  width: 22.5vw;
  top: 19.7395833333vw;
  right: -25.8333333333vw;
  z-index: 32;
}
@media (max-width: 768px) {
  .good__content.content3 .image .arrow {
    width: 20vw;
    top: auto;
    bottom: -16vw;
    right: 25.3333333333vw;
  }
}
.good__content.content3 .image .pkg {
  position: absolute;
  width: 12.34375vw;
  top: 13.5416666667vw;
  right: -35vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .good__content.content3 .image .pkg {
    width: 31.7333333333vw;
    top: auto;
    bottom: -30.8vw;
    left: 20.1333333333vw;
  }
}
.good__content .paragraph {
  margin-top: 1.09375vw;
}
@media (max-width: 768px) {
  .good__content .paragraph {
    margin-top: 32.4vw;
  }
}
.good .paragraph__main {
  width: 39.4791666667vw;
  margin-bottom: 0.3645833333vw;
}
@media (max-width: 768px) {
  .good .paragraph__main {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.good .paragraph__sub {
  font-size: 1.25vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .good .paragraph__sub {
    font-size: 3.7333333333vw;
    letter-spacing: normal;
  }
}
.good .bg-item {
  position: absolute;
  opacity: 0.7;
  z-index: -1;
}
.good .bg-item.leaf-right {
  width: 42.5vw;
  top: 30.8333333333vw;
  right: -23.3333333333vw;
}
@media (max-width: 768px) {
  .good .bg-item.leaf-right {
    width: 74.8vw;
    top: 166.6666666667vw;
    right: -28.1333333333vw;
  }
}
@media (max-width: 768px) {
  .good .bg-item.leaf-right.sp-only {
    width: 74.8vw;
    top: auto;
    bottom: 40vw;
    right: -33.8666666667vw;
  }
}
.good .bg-item.leaf-left {
  width: 42.5vw;
  top: 65.15625vw;
  left: -8.6979166667vw;
}
@media (max-width: 768px) {
  .good .bg-item.leaf-left {
    width: 74.8vw;
    top: 360vw;
    left: -30.4vw;
  }
}

.ecology {
  position: relative;
  margin-top: 4.4270833333vw;
}
@media (max-width: 768px) {
  .ecology {
    margin-top: 17.3333333333vw;
  }
}
.ecology__curve.top {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .ecology__curve.top {
    margin-bottom: 0;
  }
}
.ecology__curve.bottom {
  margin-top: -2px;
}
@media (max-width: 768px) {
  .ecology__curve.bottom {
    margin-top: -1px;
  }
}
.ecology__inner {
  background-color: rgba(193, 228, 46, 0.13);
}
@media (max-width: 768px) {
  .ecology__inner {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    padding-top: 52.1333333333vw;
  }
}
.ecology__title {
  width: 77.1354166667vw;
  position: absolute;
  top: -2.6041666667vw;
  left: 0;
}
@media (max-width: 768px) {
  .ecology__title {
    width: 79.2vw;
    top: 0;
  }
}
.ecology__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1.6145833333vw;
}
@media (max-width: 768px) {
  .ecology__content {
    flex-direction: column;
    align-items: center;
  }
}
.ecology__content.content1 {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .ecology__content.content1 {
    flex-direction: column;
  }
}
.ecology__content.content1 .image {
  position: relative;
  width: 28.4375vw;
  height: 29.1145833333vw;
}
@media (max-width: 768px) {
  .ecology__content.content1 .image {
    width: 100%;
    height: 90vw;
  }
}
.ecology__content.content1 .image .num {
  width: 9.4791666667vw;
  position: absolute;
  top: 0;
  right: -0.5729166667vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .ecology__content.content1 .image .num {
    width: 31.8666666667vw;
    top: -13.7333333333vw;
    right: auto;
    left: 0;
  }
}
.ecology__content.content1 .image .main {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}
.ecology__content.content1 .paragraph__main {
  width: 40.2083333333vw;
  margin-top: 2.0833333333vw;
}
@media (max-width: 768px) {
  .ecology__content.content1 .paragraph__main {
    width: 100%;
    margin-top: 8vw;
  }
}
.ecology__content.content2 {
  margin-top: 6.40625vw;
}
@media (max-width: 768px) {
  .ecology__content.content2 {
    margin-top: 20.4vw;
  }
}
.ecology__content.content2 .image {
  position: relative;
  width: 28.4375vw;
  height: 29.1145833333vw;
}
@media (max-width: 768px) {
  .ecology__content.content2 .image {
    width: 100%;
    height: 90vw;
  }
}
.ecology__content.content2 .image .num {
  width: 9.4791666667vw;
  position: absolute;
  top: 0;
  left: -1.6145833333vw;
  z-index: 31;
}
@media (max-width: 768px) {
  .ecology__content.content2 .image .num {
    width: 32.5333333333vw;
    left: -5.3333333333vw;
    top: -12.4vw;
  }
}
.ecology__content.content2 .image .main {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}
.ecology__content.content2 .paragraph__main {
  width: 40.7291666667vw;
  margin-top: 2.0833333333vw;
}
@media (max-width: 768px) {
  .ecology__content.content2 .paragraph__main {
    width: 100%;
    margin-top: 8vw;
  }
}
.ecology .bg-item {
  position: absolute;
  z-index: -1;
}
@media (max-width: 768px) {
  .ecology .bg-item {
    opacity: 0.56;
  }
}
.ecology .bg-item.leaf-left {
  width: 28.0729166667vw;
  top: 26.7708333333vw;
  left: -11.9791666667vw;
}
@media (max-width: 768px) {
  .ecology .bg-item.leaf-left {
    width: 49.3333333333vw;
    top: 273.3333333333vw;
    left: -19.7333333333vw;
  }
}
.ecology .bg-item.leaf-right {
  width: 15.625vw;
  top: 58.3333333333vw;
  right: 0;
}
@media (max-width: 768px) {
  .ecology .bg-item.leaf-right {
    width: 36vw;
    top: 45.3333333333vw;
  }
}

.earth {
  margin-top: -1.3541666667vw;
  margin-bottom: -0.2604166667vw;
  position: relative;
}
.earth__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5.2083333333vw;
  z-index: 2;
}
@media (max-width: 768px) {
  .earth__inner {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    padding-top: 11.7333333333vw;
    background-image: url(./images/05_bg_img02.8bafd927b20588c0e7c5.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
  }
}
.earth__inner .textbox {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.earth__inner .textbox .title {
  width: 38.8541666667vw;
  margin-bottom: 2.8645833333vw;
}
@media (max-width: 768px) {
  .earth__inner .textbox .title {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.earth__inner .textbox .desc {
  text-align: center;
  font-size: 1.3020833333vw;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  font-weight: bold;
}
@media (max-width: 768px) {
  .earth__inner .textbox .desc {
    font-size: 4vw;
  }
}
.earth__inner .textbox .desc.desc1::after {
  content: "(※)";
  display: block;
  width: 4.0104166667vw;
  height: 1.8229166667vw;
  color: #804201;
  font-size: 0.9375vw;
  position: absolute;
  right: 2.6041666667vw;
  bottom: 2.0833333333vw;
}
@media (max-width: 768px) {
  .earth__inner .textbox .desc.desc1::after {
    font-size: 2vw;
    right: 20vw;
    bottom: 8vw;
  }
}
.earth__inner .textbox .desc.desc2 {
  margin-top: 2em;
  margin-bottom: 1em;
}
.earth__inner .textbox .sub {
  font-size: 0.78125vw;
  text-align: center;
}
@media (max-width: 768px) {
  .earth__inner .textbox .sub {
    font-size: 2.6666666667vw;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
}
.earth__inner .imagebox {
  width: 28.8541666667vw;
  height: 56.1979166667vw;
  position: relative;
}
@media (max-width: 768px) {
  .earth__inner .imagebox {
    display: none;
  }
}
.earth__inner .imagebox .hands-img {
  position: relative;
  z-index: 110;
}
.earth__inner .imagebox .earth-img {
  width: 20.3125vw;
  position: absolute;
  top: 14.0625vw;
  left: 3.9583333333vw;
  z-index: 100;
}
.earth__inner .imagebox .earth-img.is-active {
  animation-name: kf-fuwafuwa;
  animation-duration: 7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
}
.earth .bg-item {
  position: absolute;
  z-index: 1;
}
.earth .bg-item.leaf--left {
  width: 42.0833333333vw;
  top: -26.0416666667vw;
  left: 1.1458333333vw;
}
@media (max-width: 768px) {
  .earth .bg-item.leaf--left {
    width: 90.1333333333vw;
    bottom: -27.4666666667vw;
    top: auto;
  }
}
.earth .bg-item.leaf--right {
  width: 40.7291666667vw;
  bottom: 2.34375vw;
  right: 0;
}
@media (max-width: 768px) {
  .earth .bg-item.leaf--right {
    width: 66.6666666667vw;
    bottom: auto;
    top: -26.6666666667vw;
    right: 0;
  }
}

.products {
  margin-top: -0.15625vw;
}
.products__curve.top {
  margin-bottom: -1px;
}
.products__curve.bottom {
  margin-top: -1px;
}
.products__inner {
  background-color: #edfff4;
  padding-top: 2.2395833333vw;
  padding-bottom: 10.6770833333vw;
}
@media (max-width: 768px) {
  .products__inner {
    padding-top: 21.7333333333vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.products__inner .title {
  width: 62.9166666667vw;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .products__inner .title {
    width: 100%;
  }
}
.products__inner .slider {
  margin-top: 5.3125vw;
  margin-left: -5.3333333333vw;
  margin-right: -5.3333333333vw;
}
.products__inner .btn-area {
  margin-top: 5.2083333333vw;
  width: 100%;
}
@media (max-width: 768px) {
  .products__inner .btn-area {
    margin-top: 7.3333333333vw;
  }
}
.products__inner .more {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36.4583333333vw;
  border-radius: 4.6875vw;
  background-color: #abc741;
  padding-top: 1.8229166667vw;
  padding-bottom: 1.8229166667vw;
  border: 0.78125vw solid #ffffff;
  position: relative;
  box-shadow: 0.2083333333vw 0 0.7291666667vw 0 rgba(96, 64, 1, 0.6);
  transition: all 0.3s linear;
  cursor: pointer;
}
@media (max-width: 768px) {
  .products__inner .more {
    width: 89.3333333333vw;
    padding-top: 3.8666666667vw;
    padding-bottom: 3.8666666667vw;
    border: 2vw solid #ffffff;
    border-radius: 10.9333333333vw;
    box-shadow: 0.5333333333vw 0 1.8666666667vw 0 rgba(96, 64, 1, 0.6);
  }
}
.products__inner .more:hover {
  box-shadow: none;
  transform: translateY(4px);
  background-color: #ed724a;
}
.products__inner .more .text {
  width: 19.1666666667vw;
}
@media (max-width: 768px) {
  .products__inner .more .text {
    width: 49.4666666667vw;
  }
}
.products__inner .more .arrow {
  width: 1.0416666667vw;
  position: absolute;
  right: 3vw;
}
@media (max-width: 768px) {
  .products__inner .more .arrow {
    width: 3.6vw;
    right: 6vw;
  }
}

.qa {
  background-image: url(./images/07_bg_img01.037db2ea503776804dfc.png);
  background-position: center;
  background-size: contain;
  padding-bottom: 6.5104166667vw;
}
@media (max-width: 768px) {
  .qa {
    padding-bottom: 10.6666666667vw;
  }
}
.qa .title {
  width: 40.1041666667vw;
  margin: 0 auto;
  margin-top: -6vw;
}
@media (max-width: 768px) {
  .qa .title {
    width: 61.7333333333vw;
  }
}
@media (max-width: 768px) {
  .qa__inner {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.qa__container {
  margin-top: 4.4791666667vw;
  margin: 0 auto;
  width: 72.9166666667vw;
  padding-top: 3.1770833333vw;
  padding-bottom: 1.6145833333vw;
  padding-left: 1.5625vw;
  padding-right: 1.5625vw;
  border-radius: 1.5625vw;
  background-color: rgba(185, 215, 140, 0.4);
}
@media (max-width: 768px) {
  .qa__container {
    margin-top: 10.6666666667vw;
    width: 89.3333333333vw;
    border-radius: 4vw;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
  }
}
.qa__list {
  height: 40vw;
  overflow-y: scroll;
  background-color: #ffffff;
  padding-top: 3.125vw;
  padding-bottom: 3.125vw;
  padding-left: 3.1770833333vw;
  padding-right: 4.7916666667vw;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #a1cb5a rgba(203, 141, 117, 0.4);
}
@media (max-width: 768px) {
  .qa__list {
    height: 73.3333333333vw;
    padding-top: 5.3333333333vw;
    padding-bottom: 4vw;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
  }
}
.qa__list::-webkit-scrollbar {
  width: 0.78125vw;
  height: 7.8125vw;
}
@media (max-width: 768px) {
  .qa__list::-webkit-scrollbar {
    width: 1.8666666667vw;
    height: 18.6666666667vw;
  }
}
.qa__list::-webkit-scrollbar-track {
  background-color: rgba(203, 141, 117, 0.4);
}
@media (max-width: 768px) {
  .qa__list::-webkit-scrollbar-track {
    background-color: initial;
  }
}
.qa__list::-webkit-scrollbar-thumb {
  background-color: #a1cb5a;
  border-radius: 1.5625vw;
}
@media (max-width: 768px) {
  .qa__list::-webkit-scrollbar-thumb {
    border-radius: 1.3333333333vw;
  }
}
.qa__item {
  border-bottom: 2px dashed #e4bab0;
  padding-top: 0.9375vw;
  padding-bottom: 0.9375vw;
  display: flex;
  flex-direction: column;
  gap: 1.875vw;
}
@media (max-width: 768px) {
  .qa__item {
    padding-top: 2.6666666667vw;
    padding-bottom: 2.6666666667vw;
  }
}
.qa__item:last-child {
  border-bottom: none;
}
.qa__item .question,
.qa__item .answer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5104166667vw;
}
@media (max-width: 768px) {
  .qa__item .question,
  .qa__item .answer {
    gap: 2.6666666667vw;
  }
}
.qa__item .question .murk,
.qa__item .answer .murk {
  height: 3.3333333333vw;
  color: #ffffff;
  font-size: 1.71875vw;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 3.3333333333vw;
}
@media (max-width: 768px) {
  .qa__item .question .murk,
  .qa__item .answer .murk {
    height: 8vw;
    flex: 0 0 8vw;
    font-size: 5.0666666667vw;
  }
}
.qa__item .question .text,
.qa__item .answer .text {
  font-size: 1.09375vw;
  line-height: 1.5;
  flex: 1 1 auto;
}
@media (max-width: 768px) {
  .qa__item .question .text,
  .qa__item .answer .text {
    font-size: 3.4666666667vw;
  }
}
.qa__item .question .murk {
  background-color: #abc741;
}
.qa__item .question .text {
  font-size: 1.40625vw;
  font-weight: bold;
}
@media (max-width: 768px) {
  .qa__item .question .text {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  .qa__item .answer {
    align-items: flex-start;
  }
}
.qa__item .answer .murk {
  background-color: #cb8d75;
}

.special-feature {
  margin-top: 6.25vw;
  display: flex;
  flex-direction: column;
  gap: 6.8229166667vw;
}
@media (max-width: 768px) {
  .special-feature {
    margin-top: 10.6666666667vw;
    gap: 8vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.special-feature .title {
  margin: 0 auto;
  margin-top: 0;
  margin-bottom: 0;
  width: 21.8125vw;
}
@media (max-width: 768px) {
  .special-feature .title {
    width: 49.866667vw;
  }
}
.special-feature .list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.40625vw;
}
@media (max-width: 768px) {
  .special-feature .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.special-feature .list .link {
  width: 17.0833333333vw;
}
@media (max-width: 768px) {
  .special-feature .list .link {
    width: 40vw;
    justify-self: center;
  }
}
.special-feature .list .link.hasBorder {
  border: 1px solid #d0d3c0;
}

.bottom {
  padding-bottom: 1.0416666667vw;
}
.bottom img {
  width: 100%;
}
