@charset "UTF-8";

/* ----------------------------------------------------------------
reset
----------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
button {
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

body {
  font-family: "Noto Sans JP", sans-serif, Hiragino Sans, "ヒラギノ角ゴシック";
  -webkit-text-size-adjust: 100%;
}

img {
  vertical-align: bottom;
  width: 100%;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  background-color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
  cursor: pointer;
}

picture {
  display: block;
}

@media screen and (max-width: 768px) {
  picture img {
    height: auto;
  }
}

/* 11/7 ルビ追加 */
.report__text-rt {
  line-height: 1;
  font-feature-settings: "palt";
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.btn {
  position: relative;
}

.btn::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 13.3333333333%;
  width: 15px;
  height: 2px;
  background: #fff;
}

.btn::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 13.3333333333%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* ----------------------------------------------------------------
SCSS import
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
variable
----------------------------------------------------------------- */
html {
  font-size: 62.5%;
  color: #352b22;
}

body {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

picture {
  display: flex;
  justify-content: center;
}

.btnArea {
  padding: 6.0rem 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .btnArea {
    padding: 5rem 0 0 0;
  }

  .btnArea .deco img {
    width: 86.9333333333vw;
  }
}

.btnArea .buyBtn--01 {
  width: 30rem;
  height: auto;
  margin: 2.5rem auto 0 auto;
}

.btnArea .buyBtn--02 {
  width: 30rem;
  height: auto;
  margin: 2.5rem auto 0 auto;
}

.btnArea .buyBtn--03 {
  width: 30rem;
  height: auto;
  margin: 2.5rem auto 0 auto;
}

.btnArea .buyBtn--04 {
  width: 30rem;
  height: auto;
  margin: 2.5rem auto 0 auto;
}

.btnArea .buyBtn--05 {
  width: 30rem;
  height: auto;
  margin: 2.5rem auto 0 auto;
}

@media screen and (max-width: 768px) {
  .btnArea .buyBtn--01 {
    width: 89.552238806%;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .btnArea .buyBtn--02 {
    width: 89.552238806%;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .btnArea .buyBtn--03 {
    width: 89.552238806%;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .btnArea .buyBtn--04 {
    width: 89.552238806%;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .btnArea .buyBtn--05 {
    width: 89.552238806%;
    margin-top: 2rem;
  }
}

.btnArea .buyBtn--01 a:hover {
  display: block;
  opacity: 0.8;
}

.btnArea .buyBtn--02 a:hover {
  display: block;
  opacity: 0.8;
}

.btnArea .buyBtn--03 a:hover {
  display: block;
  opacity: 0.8;
}

.btnArea .buyBtn--04 a:hover {
  display: block;
  opacity: 0.8;
}

.btnArea .buyBtn--05 a:hover {
  display: block;
  opacity: 0.8;
}

.btnArea .buyBtn img {
  width: 100%;
}

/* 10/31追加pcのみ適用 */
.pcOnly {
  display: block;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
}

.spOnly {
  display: none;
}

@media screen and (max-width: 768px) {
  .spOnly {
    display: block;
  }
}

/* ----------------------------------------------------------------
wrapper
----------------------------------------------------------------- */
#wrapper {
  width: 100%;
  height: auto;
  /* SP */
}

@media screen and (max-width: 768px) {
  #wrapper {
    width: 100%;
    max-width: 76.8rem;
  }
}

/* ----------------------------------------------------------------
header
----------------------------------------------------------------- */
.contents {
  background-color: #f4f7f1;
  padding: 0 0 20rem 0;
  /* SP */
}

@media screen and (max-width: 768px) {
  .contents {
    padding: 0 0 10rem 0;
  }
}

.header__KV {
  display: flex;
  height: 38rem;
  flex-direction: row-reverse;
  background-image: url(../img/im_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* SP */
}

@media screen and (max-width: 768px) {
  .header__KV {
    display: flex;
    height: 60vw;
    background-image: url(../img/sp/im_kv.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.header__textArea {
  background-color: rgba(168, 212, 126, 0.9);
  display: flex;
  width: 45%;
  justify-content: flex-start;
  /* SP */
}

@media screen and (max-width: 768px) {
  .header__textArea {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__textArea-image img {
    width: 23.73333334vw;
  }
}

.header h1 {
  padding: 1.8rem 0 1.8rem 5.5rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .header h1 {
    width: 59.3333333333%;
    padding: 5% 0 5% 0;
  }
}

.header__img {
  width: 48.4rem;
  margin: 7.8rem auto 0 auto;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .header__img {
    margin: 0 auto;
    padding: 4.8rem 0 0 0;
    width: 100%;
  }

  .header__img img {
    width: 73.734vw;
  }
}

/* ----------------------------------------------------------------
main
----------------------------------------------------------------- */
.main {
  width: 64rem;
  margin: 0 auto;
  padding: 8rem 0 0 0;
  /* SP */
}

@media screen and (max-width: 768px) {
  .main {
    width: 89.3333333333%;
    display: block;
    padding: 5.4rem 0 0 0;
  }
}

/* ----------------------------------------------------------------
produce
----------------------------------------------------------------- */
.produce {
  /* SP */
}

@media screen and (max-width: 768px) {
  .produce {
    margin-bottom: -0.5rem;
    width: 100%;
    flex-wrap: wrap;
  }
}

.produce h2 {
  display: flex;
  justify-content: center;
}

.produce__banner {
  padding-bottom: 4.5rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .produce__banner {
    margin: 0 auto;
    padding-bottom: 0;
  }

  .produce__banner img {
    width: 81.333333333vw;
  }
}

.produce__title {
  padding-bottom: 5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  /* SP */
}

@media screen and (max-width: 768px) {
  .produce__title {
    margin: 0 auto;
    padding: 3rem 0 3rem 0;
  }
}

.produce__flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 62.7rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .produce__flex {
    display: block;
    padding-bottom: 0;
    width: 100%;
  }
}

.produce__img {
  padding-bottom: 2rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .produce__img img {
    width: 84vw;
    height: auto;
    margin: 0 auto;
  }
}

.produce__img2 {
  /* SP */
}

@media screen and (max-width: 768px) {
  .produce__img2 img {
    margin: 0 auto;
    width: 84vw;
  }
}

.produce__txt {
  width: 29rem;
  font-size: 1.6rem;
  line-height: 1.5;
  text-indent: 1em;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: -0.4rem;
  /* SP */
}

.produce__txt-indent {
  display: inline-block;
  text-indent: 1em;
}

@media screen and (max-width: 768px) {
  .produce__txt {
    width: 84vw;
    margin: 3.3rem auto -0.2rem auto;
    font-size: 1.6rem;
    line-height: 1.6875;
    color: #000;
    font-weight: 500;
    letter-spacing: 0px !important;
  }
}

/* ----------------------------------------------------------------
recipe
----------------------------------------------------------------- */
.recipe {
  width: 64rem;
  margin: 9.9rem auto 0 auto;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe {
    width: 100%;
    margin: 8rem 0 0 0;
  }
}

.recipe h2 {
  display: flex;
  justify-content: center;
  width: 79.7014925373%;
  margin: 0 auto;
}

.recipe__banner {
  padding-bottom: 6rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__banner {
    padding-bottom: 3rem;
  }

  .recipe__banner img {
    width: 71.2vw;
  }
}

/*レシピ上部 コンテンツ*/
/* .recipe__top {
  margin-bottom: 6rem;
  padding-top: 3.7rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 3.7rem;
  background-color: #fff;
  border-top: 0.4rem solid #8a8ad4;
  border-bottom: 0.4rem solid #8a8ad4;
}

@media screen and (max-width: 768px) {
  .recipe__top {
    margin-bottom: 4rem;
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2.5rem;
    border-top: 0.3rem solid #8a8ad4;
    border-bottom: 0.3rem solid #8a8ad4;
  }
} */

/*タイトル*/
/* .recipe__top-name {
  padding-bottom: 1rem;
  width: 19.8rem;
  border-bottom: 0.4rem dotted #8a8ad4;
}

@media screen and (max-width: 768px) {
  .recipe__top-name {
    padding-bottom: 0.7rem;
    width: 39.466666667vw;
    border-bottom: 0.3rem dotted #8a8ad4;
  }
} */

/*手順*/
/* .recipe__top .recipe__list .list:nth-child(1) {
  display: flex;
  padding-top: 4.3rem;
  line-height: 1.5;
}

.recipe__top .recipe__list .list:nth-child(2) {
  padding-top: 3.5rem;
}

.recipe__top .recipe__list .list:nth-child(3) {
  padding-top: 4.2rem;
}

@media screen and (max-width: 768px) {
  .recipe__top .recipe__list .list:first-child {
    padding-top: 3.7rem !important;
  }

  .recipe__top .recipe__list .list:nth-child(2) {
    padding-top: 1.9rem !important;
  }

  .recipe__top .recipe__list .list:nth-child(3) {
    padding-top: 1.7rem !important;
  }
} */

/*レシピ下部 コンテンツ*/
/* .recipe__bottom {
  margin-top: 6rem;
  padding-top: 3.7rem;
  padding-left: 4rem;
  padding-right: 3.5rem;
  padding-bottom: 4.2rem;
  background-color: #fff;
  border-top: 0.4rem solid #8a8ad4;
  border-bottom: 0.4rem solid #8a8ad4;
}

@media screen and (max-width: 768px) {
  .recipe__bottom {
    margin-top: 5rem;
    padding-top: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 3.2rem;
    border-top: 0.3rem solid #8a8ad4;
    border-bottom: 0.3rem solid #8a8ad4;
  }
} */

/*タイトル*/
.recipe__bottom-name {
  margin-bottom: 3rem !important;
  padding-bottom: 1rem;
  width: 23.7rem;
  border-bottom: 0.4rem dotted #78b840;
}

@media screen and (max-width: 768px) {
  .recipe__bottom-name {
    margin-bottom: 2.3rem !important;
    padding-bottom: 0.7rem;
    width: 47.2vw;
    border-bottom: 0.3rem dotted #78b840;
  }
}

/*テキスト*/
.recipe__bottom-text {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
  text-indent: 1em;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
  font-weight: 500;
  /* SP */
}


.recipe__content {
  padding: 0;
  background-color: #fff;
  /* SP */
}

.recipe h3 {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.recipe .comment2Img {
  display: flex;
  justify-content: center;
  width: 86.2686567164%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .recipe .comment2Img {
    padding-bottom: 2rem;
  }
}

.recipe__comment1 {
  padding-bottom: 4rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__comment1 {
    padding-bottom: 2rem;
  }

  .recipe__comment1 img {
    width: 77.066666667vw;
  }
}

.recipe__menu {
  padding-bottom: 8rem;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .recipe__menu {
    padding-bottom: 4.5rem;
  }
}

@media screen and (max-width: 768px) {
  .recipe__menu-image img {
    width: 89.33333334vw;
  }
}

.recipe h4 {
  display: flex;
}

.recipe h5 {
  display: flex;
}

.recipe__name {
  padding: 0 2rem;
  margin: 7.5rem 0 6rem 0;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__name {
    margin: 3.8rem 0 1.8rem 2rem;
    padding: 0;
  }

  .recipe__name img {
    width: 16.266666667vw;
  }
}

/* 202505追加：サブタイトル */
.recipe__name-01 {
  margin: 5rem 0 1rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .recipe__name-01 {
    margin: 3.5rem 0 1rem;
    font-size: 1.9rem;
  }
}

/* .recipe__name-02 {
  margin: 5rem 0 1rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .recipe__name-02 {
    margin: 3.5rem 0 1rem;
    font-size: 1.9rem;
  }
} */

.recipe__box {
  padding: 0 2rem 9.7rem;
}

.recipe__box:last-of-type {
  padding: 0 2rem 0;
}

@media screen and (max-width: 768px) {
  .recipe__box {
    padding-bottom: 6.7rem;
  }
}

.recipe__imgBox {
  width: 100%;
}

.recipe__img {
  display: flex;
  border-bottom: 0.4rem solid #78b840;
  padding-bottom: 1.5rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__img {
    border-bottom: 0.2rem solid #78b840;
    padding-bottom: 1rem;
  }
}

/* 202505追加 画像キャプション */
.recipe__img-text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1;
}

@media screen and (max-width: 768px)  {
  .recipe__img-text {
    margin-top: 0.5rem;
  }
}

.recipe__border {
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__border img {
    width: 100%;
    ;
  }
}

@media screen and (max-width: 768px) {
  .recipe__border__02 {
    width: 38.4745762712%;
  }
}

.recipe__border2 {
  margin-bottom: 0;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__border2 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .recipe__border2 img {
    width: 14.6666666667vw;
  }
}

.recipe__material h5 {
  position: relative;
  color: #000;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  padding: 2.5rem 0 1rem;
}

@media screen and (max-width: 768px) {
  .recipe__material h5 {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
}

.recipe__material ul li {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  text-align: left;
  color: #000;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material ul li {
    line-height: 1.5;
  }
}

.recipe__nowrap {
  white-space: normal;
}

@media screen and (max-width: 768px) {
  .recipe__nowrap {
    white-space: nowrap;
  }
}

.recipe__material .material__flex {
  display: flex;
  padding: 1.7rem 0 0.3rem 0;
  border-bottom: 0.4rem dotted #78b840;
  line-height: 3;
  font-size: 1.8rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex {
    border-bottom: 0.2rem dotted #78b840;
    padding: 1rem 0 0.3rem 0;
    letter-spacing: 0.01em;
  }
}

.recipe__material .material__flex--last {
  display: flex;
  padding: 1.3rem 0 0.3rem 0;
  border-bottom: 0.4rem dotted #78b840;
  line-height: 100%;
  font-size: 1.8rem;
}

/* 材料と数量が2列の場合 */
.recipe__material .material__flex--column {
  display: block;
  padding: 1.5rem 0 0.3rem 0;
  border-bottom: 0.4rem dotted #78b840;
  line-height: 100%;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex--column {
    border-bottom: 0.2rem dotted #78b840;
    padding: 1rem 0 0.3rem 0;
    letter-spacing: 0.01em;
  }
}

.recipe__material .material__flex .material__flex-fsmin {
  font-size: 1.6rem;
}

.recipe__material .material__flex--column .material__flex-fsmin {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .material__flex-nowrap {
    white-space: nowrap;
  }
}

/* 材料と分量の重なり防止 */
@media screen and (max-width: 340px) {
  .material__flex-nowrap {
    white-space: normal;
  }
}

/* 材料名かっこ部分 改行なし指定 */
.material__flex-fsmin-nowrap {
  font-size: 1.6rem;
  white-space: normal;
}

@media screen and (max-width: 768px) {
  .material__flex-fsmin-nowrap {
    line-height: 1.5625;
    margin-top: 0.1rem;
    margin-bottom: -0.1rem;
    white-space: nowrap;
  }
}


/* 材料名補足（）sp時改行なし */
.recipe__material .material__flex .material__flex-sp {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.6rem;
}

.material__flex-brackets {
  font-feature-settings: "palt";
}

.recipe__material .material__flex .textSub {
  font-size: 1.6rem;
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex .textSub {
    text-align: left !important;
  }
}

.recipe__material .material__flex.twoLine dt,
.recipe__material .material__flex.twoLine dd {
  line-height: 1.5;
}

.recipe__material .material__flex.twoLine dt {
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex.twoLine dt {
    width: 60%;
    line-height: 1.45;
  }
}

.recipe__material .material__flex.twoLine dd {
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex.twoLine dd {
    width: 50%;
  }
}

.recipe__material .material__flex dt {
  width: 50%;
  line-height: 1.63;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex dt {
    width: 60%;
    line-height: 1.39;
  }
}

/* 材料と数量が2列の場合 */
.recipe__material .material__flex--column dt {
  width: 100%;
  line-height: 1.63;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex--column dt {
    width: 100%;
    line-height: 1.39;
  }
}

.recipe__material .material__flex dd {
  width: 50%;
  padding-left: 2rem;
  line-height: 1.69;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex dd {
    width: 40%;
    text-align: right;
    padding-left: 0;
    line-height: 1.4;
  }
}

/* 材料と数量が2列の場合 */
.recipe__material .material__flex--column dd {
  width: 100%;
  line-height: 1.69;
  padding-left: 320px;
  margin-left: auto;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex--column dd {
    width: 100%;
    text-align: right;
    padding-left: 0;
    line-height: 1.4;
  }
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex .material__flex--w100 {
    width: 100%;
  }
}

.recipe__material .material__listTop {
  padding: 3.2rem 0 0.1rem 0;
  /* SP */
}


@media screen and (max-width: 768px) {
  .recipe__material .material__listTop {
    padding-top: 1.4rem;
    padding-bottom: 0.3rem;
  }
}

/* 20250203追加：dl上スペース有 */
.recipe__material .material__space {
  padding: 4.5rem 0 0.3rem 0;
}

@media screen and (max-width: 768px) {
  .recipe__material .material__space {
    padding: 3.5rem 0 0.3rem 0;
  }
}

.recipe__material .material__block {
  display: block;
  line-height: 100%;
}

.recipe__material .material__block dt {
  width: 100%;
  padding: 2.2rem 0 1rem 0;
  border-bottom: 0.4rem dotted #3db01a;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__block dt {
    padding: 1.5rem 0 1rem 0;
    border-bottom: 0.2rem dotted #3db01a;
  }
}

.recipe__material .material__block dd {
  width: 100%;
  padding: 2.2rem 0 1rem 0;
  border-bottom: 0.4rem dotted #3db01a;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__block dd {
    border-bottom: 0.2rem dotted #3db01a;
  }
}

.recipe__material .material__block dd span {
  display: block;
  width: 50%;
  margin-left: auto;
  padding-left: 2rem;
}

@media screen and (max-width: 768px) {
  .recipe__material .material__block dd span {
    width: 100%;
    margin: 0;
    padding-left: 0;
    text-align: right;
  }
}

.recipe__material .material__blockSp {
  display: flex;
  line-height: 100%;
  padding: 2.4rem 0 1rem 0;
  border-bottom: 0.4rem dotted #3db01a;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__blockSp {
    display: block;
    border-bottom: 0;
    padding: 0;
  }
}

.recipe__material .material__blockSp dt {
  width: 50%;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__blockSp dt {
    width: 100%;
    padding: 1.5rem 0 1rem 0;
    border-bottom: 0.2rem dotted #3db01a;
  }
}

.recipe__material .material__blockSp dd {
  width: 50%;
  padding-left: 1rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__blockSp dd {
    width: 100%;
    padding: 1.5rem 0 1rem 0;
    border-bottom: 0.2rem dotted #3db01a;
  }
}

@media screen and (max-width: 768px) {
  .recipe__material .material__blockSp dd span {
    display: block;
    text-align: right;
  }
}

.recipe__material .material__flex--tb {
  display: flex;
  padding: 2.4rem 0 1rem 0;
  border-bottom: 0.4rem dotted #3db01a;
  border-top: 0.4rem dotted #3db01a;
  line-height: 100%;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex--tb {
    padding: 1.5rem 0 1rem 0;
    border-bottom: 0.2rem dotted #3db01a;
    border-top: 0.2rem dotted #3db01a;
  }
}

.recipe__material .material__flex--tb dt {
  width: 50%;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex--tb dt {
    width: 60%;
  }
}

.recipe__material .material__flex--tb dd {
  width: 50%;
  padding-left: 1rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flex--tb dd {
    width: 40%;
    text-align: right;
    padding-left: 0;
  }
}

.recipe__material .material__last {
  padding-bottom: 0.3rem !important;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__last {
    padding-bottom: 0 !important;
  }
}

.recipe__material .border__a {
  padding: 2.4rem 0 1rem 0;
}

.recipe__material .border__a dt {
  position: relative;
  font-size: 1.8rem;
  color: #000;
  line-height: 3;
  text-indent: 0.2rem;
  font-weight: 600;
}

.recipe__material .material__flex-sub {
  font-size: 1.6rem;
  line-height: 1;
}

.recipe__material .material__flexA {
  border-left: 0.1rem solid #000;
  margin-left: 1rem;
}

.recipe__material .material__flexA li {
  margin-left: 1rem;
}

.recipe__material .material__flexA li:first-child {
  border-top: 0.4rem dotted #78b840;
  margin-left: 0.7rem;
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flexA li:first-child {
    border-top: 0.2rem dotted #78b840;
  }
}

.recipe__material .material__flexA dt {
  line-height: 1.62;
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flexA dt {
    line-height: 1.4;
  }
}

.recipe__material .material__flexA dd {
  padding-left: 1rem;
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flexA dd {
    padding-left: 0;
  }
}

.recipe__material .material__flexA .material__flex {
  padding: 1.5rem 0 0.4rem;
}

@media screen and (max-width: 768px) {
  .recipe__material .material__flexA .material__flex {
    padding: 0.8rem 0 0.5rem 0;
  }
}

.recipe__material .material__ab h5 {
  position: relative;
  color: #000;
  font-size: 1.8rem;
  line-height: 3;
  padding: 2.4rem 0 1rem 0;
  text-indent: 0.2rem;
  line-height: 100%;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__material .material__ab h5 {
    font-size: 1.8rem;
    padding: 1.5rem 0 1rem 0;
    text-indent: 0.3rem;
  }
}

.recipe__material .border__b {
  padding: 2.4rem 0 1rem 0;
}

.recipe__material .border__b dt {
  position: relative;
  font-size: 1.8rem;
  color: #000;
  line-height: 3;
  text-indent: 0.2rem;
  font-weight: 600;
}

.recipe__material .flex__a .flex__b {
  position: relative;
  padding-left: 2.3rem;
}

.recipe__material .flex__a .flex__b li {
  padding-left: 2.3rem;
}

.recipe__process {
  padding-top: 6rem;
}

@media screen and (max-width: 768px) {
  .recipe__process {
    padding-top: 5rem;
  }
}

.recipe__list {
  margin: 0 0rem 0 -0.3rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}

@media screen and (max-width: 768px) {
  .recipe__list {
    margin: 0 0.8rem 0 -0.5rem;
  }
}

.recipe__list .list {
  display: flex;
  padding: 3.9rem 0 0 0;
  line-height: 1.5;
}

.recipe__list .list:nth-child(1) {
  padding-top: 4.2rem;
}

@media screen and (max-width: 768px) {
  .recipe__list .list {
    padding-top: 1.5rem !important;
  }

  .recipe__list .list:nth-child(1) {
    padding-top: 2.3rem !important;
  }

  .recipe__list .list:nth-child(2) {
    padding-top: 2rem !important;
  }

  .recipe__list .list:nth-child(5) {
    padding-top: 2rem !important;
  }

  .recipe__list .list:nth-child(6) {
    padding-top: 2rem !important;
  }

  .recipe__list .list:nth-child(7) {
    padding-top: 1.8rem !important;
  }
}

/*20240802追加*/
.recipe__list .list2 {
  display: flex;
  padding-top: 3.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .recipe__list .list2 {
    padding-top: 4rem !important;
  }
}
/**/


.recipe__list .list__img img {
  width: 2.4rem;
  height: 2.5rem;
  box-sizing: content-box;
}

@media screen and (max-width: 768px) {
  .recipe__list .list__img img {
    /* width: 7.33333333vw;
    height: 6.6666667vw; */

    width: 2.75rem;
    height: 2.5rem;
  }
}

.recipe__list .list__img {
  display: block;
  padding-right: 2rem;
}

.recipe__comment2 {
  padding: 8rem 0 4rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__comment2 {
    padding: 4rem 0 0;
  }

  .recipe__comment2 img {
    width: 77.066666667vw;
  }
}

.recipe__name2 {
  padding: 0 2rem;
  margin: 7.6rem 0 6rem 0;
  /* SP */
}

@media screen and (max-width: 768px) {
  .recipe__name2 {
    padding: 0;
    margin: 3.7rem 0 2rem 2rem;
  }

  .recipe__name2 img {
    width: 71.333333333vw;
  }
}

.recipe__dish {
  padding: 0 2rem 2.5rem;
}

@media screen and (max-width: 768px) {
  .recipe__dish {
    padding: 0;
    margin-left: 1.8rem;
    margin-bottom: 2rem;
  }

  .recipe__dish--one {
    width: 72.8vw;
    margin-top: 3rem;
  }

  .recipe__dish--two {
    width: 43.46666667vw;
    margin-top: 1.0rem;
  }
}

/* レシピボックス内 注意事項 */
.recipe__caution {
  margin-top: 3.2rem;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.6rem;
  line-height: 1.375;
}

@media screen and (max-width: 768px) {
  .recipe__caution {
    margin-top: 1.5rem;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.buyBtn2 {
  width: 30rem;
  margin: 0 auto;
  padding: 6.4rem 0;
  /* SP */
}

@media screen and (max-width: 768px) {
  .buyBtn2 {
    width: 89.5522%;
  }
}

/* ----------------------------------------------------------------
supplement
----------------------------------------------------------------- */
.supplement {
  width: 64rem;
  margin: 0 auto;
  padding-top: 10rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .supplement {
    width: 100%;
    margin: 0 auto;
    padding-top: 8rem;
    margin-bottom: -0.5rem;
  }
}

.supplement h3 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 4.1rem 0;
  /* SP */
}

@media screen and (max-width: 768px) {
  .supplement h3 {
    margin: 0 auto;
  }
}

.supplement__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .supplement__flex {
    flex-direction: column-reverse;
    margin-top: 4rem;
    margin-bottom: 0;
  }
}

.supplement__text {
  text-indent: 1em;
  font-size: 1.6rem;
  width: 29rem;
  line-height: 1.5;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.05rem;
  margin-top: -0.6rem;
  margin-bottom: -0.5rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .supplement__text {
    width: 94.0298507463%;
    font-size: 1.6rem;
    margin: 3.4rem auto 0rem;
    letter-spacing: 0;
    line-height: 1.6875;
  }
}

@media screen and (max-width: 768px) {
  .supplement__imgBox {
    margin: 0 auto;
  }
}

.supplement__image {
  /* SP */
}

@media screen and (max-width: 768px) {
  .supplement__image img {
    width: 84vw;
    margin: 0 auto;
  }
}

.supplement__image2 {
  margin-top: 2rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .supplement__image2 img {
    width: 84vw;

  }
}

.supplement2 {
  width: 64rem;
  margin: 0 auto;
  /* SP */
}

@media screen and (max-width: 768px) {
  .supplement2 {
    width: 100%;
    margin: 0 auto;
  }
}

.supplement2 h3 {
  display: flex;
  justify-content: center;
  /* SP */
}

@media screen and (max-width: 768px) {
  .supplement2 h3 {
    margin: 0 auto;
    width: 91.0447761194%;
  }
}

.supplement2__title {
  padding: 6rem 0 4rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .supplement2__title {
    padding: 4rem 0 0 0;
  }
}

.supplement2__flex {
  flex-direction: row-reverse;
}

.btnBuy3 {
  width: 30rem;
  margin: 0 auto;
  margin: 6.4rem auto 0 auto;
  /* SP */
}

@media screen and (max-width: 768px) {
  .btnBuy3 {
    width: 89.5522%;
    height: auto;
    margin: 5.4rem auto 0 auto;
  }
}

/* ----------------------------------------------------------------
producer
----------------------------------------------------------------- */
.producer {
  padding: 10rem 0 0 0;
  /* SP */
}

@media screen and (max-width: 768px) {
  .producer {
    padding: 8rem 0 0 0;
    width: 100%;
    margin: 0 auto;
  }
}

.producer h2 {
  display: flex;
  justify-content: center;
  width: 84.7619047619%;
  margin: 0 auto;
}

.producer__banner {
  padding-bottom: 8rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .producer__banner {
    padding-bottom: 2.5rem;
  }

  .producer__banner img {
    width: 71.06666667vw;
  }
}

.producer__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 6rem 6rem 4rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .producer__flex {
    align-items: center;
    flex-direction: column;
    padding: 0 0 5.1rem;
  }
}

.producer__face {
  /* SP */
}

@media screen and (max-width: 768px) {
  .producer__face {
    height: auto;
    margin: 2.1rem auto 0;
  }

  .producer__face img {
    width: 40.266666667vw;
  }
}

.producer__comment {
  display: block; 
  /* SP */
}

@media screen and (max-width: 768px) {
  .producer__comment {
    margin: 0 auto;
    padding-bottom: 0;
    padding-top: 2.3rem;
  }

  .producer__comment img {
    width: 84vw;
  }
}

.producer__img {
  display: flex;
  justify-content: space-between;
  /* SP */
}

@media screen and (max-width: 768px) {
  .producer__img {
    display: block;
  }
}

.producer__Img01 {
  /* SP */
}

@media screen and (max-width: 768px) {
  .producer__Img01 {
    height: auto;
    padding-bottom: 1.95rem;
    margin: 0 auto;
  }

  .producer__Img01 img {
    width: 84vw;
  }
}

.producer__Img02 {
  height: 20rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .producer__Img02 {
    height: auto;
    margin: 0 auto;
  }

  .producer__Img02 img {
    width: 84vw;
  }
}

.producer__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-indent: 1.6rem;
  padding: 5.5rem 3rem 0 2rem;
  margin: 0 auto;
  color: #000;
  letter-spacing: 0.05rem;
  margin-bottom: -0.4rem;
  text-align: justify;
  /* SP */
}

@media screen and (max-width: 768px) {
  .producer__text {
    width: 94.0298507463%;
    padding: 3.4rem 0 0 0;
    letter-spacing: 0;
    line-height: 1.6875;
    text-align: start;
  }
}

.producer__caution {
  font-size: 1.2rem;
  margin: 2.7rem 0 -0.5rem 0; 
  padding: 0rem 3rem 0 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .producer__caution {
    font-size: 1.3rem;
    line-height: 1.538;
    padding: 0 1rem 0rem;
    margin: 2.3rem 0 -0.5rem 0;
  }
}

.producer__scene {
  margin-top: 6.1rem;
}

@media screen and (max-width: 768px) {
  .producer__scene {
    margin-top: 4rem;
    width: 84vw;
    margin-left: auto;
    margin-right: auto;
  }
}


.btnBuy4 {
  width: 30rem;
  height: auto;
  margin: 0 auto;
  padding-bottom: 10rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .btnBuy4 {
    width: 89.5522%;
    height: auto;
    padding-bottom: 8rem;
  }
}

/* ----------------------------------------------------------------
backNumber
----------------------------------------------------------------- */
.report {
  padding: 10rem 0 0 0;
  /* SP */
}

@media screen and (max-width: 768px) {
  .report {
    padding: 8rem 0 0 0;
    width: 100%;
    margin: 0 auto -0.5rem;
  }
}

.report h2 {
  display: flex;
  justify-content: center;
  width: 84.7619047619%;
  margin: 0 auto;
}

.report__banner {
  padding-bottom: 6rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .report__banner {
    padding-bottom: 4.9rem;

  }

  .report__banner img {
    width: 75.6vw;
  }
}

.report__flex {
  display: flex;
  justify-content: space-around;
  padding: 0 2rem 6rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .report__flex {
    display: block;
    padding: 0 0 5rem;
  }
}

.report__face {
  width: 21.8rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .report__face {
    height: auto;
    width: 58.5074626866%;
    margin: 2.5rem auto 0;
  }
}

.report__comment {
  display: block;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2.6rem;
  margin-left: 2.2rem;
  width: 21.9rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .report__comment {
    width: 94.0298507463%;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.report__img {
  display: flex;
  justify-content: space-between;
  /* SP */
}

@media screen and (max-width: 768px) {
  .report__img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 84vw;
  }
}

.report__Img01 {
  /* SP */
}

@media screen and (max-width: 768px) {
  .report__Img01 {
    height: auto;
    margin: 0 auto;
  }

  .report__Img01 img {
    width: 84vw;
  }
}

.report__Img02 {
  height: 20rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .report__Img02 {
    height: auto;
    margin: 0 auto;
  }

  .report__Img02 img {
    width: 84vw;
  }
}

.report__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-indent: 1.5rem;
  padding: 7rem 2.2rem 0 2rem;
  margin: 0 auto;
  color: #000;
  letter-spacing: 0.05em;
  /* SP */
}

@media screen and (max-width: 768px) {
  .report__text {
    width: 94.0298507463%;
    padding: 4.5rem 0 0;
    letter-spacing: 0;
    line-height: 1.6875;
  }
}

/* .report__text-ruby{
  margin-top: 1rem;
} */

/* Safariのみblock要素にする */
/* _::-webkit-full-page-media, _:future, :root .report__text-ruby {
  display: inline-block;
} */


.report__Img03 {
  margin-bottom: 0.2rem;
  padding-top: 6rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .report__Img03 {
    margin-bottom: 0;
    height: auto;
    padding-top: 3.8rem;
  }

  .report__Img03 img {
    width: 84vw;
  }
}

.report__Img04 {
  padding-top: 60px;
  /* SP */
}

@media screen and (max-width: 768px) {
  .report__Img04 {
    height: auto;
    padding-top: 2rem;
  }

  .report__Img04 img {
    width: 84vw;
  }
}

.btnBuy5 {
  width: 30rem;
  height: auto;
  margin: 0 auto;
  padding-bottom: 10rem;
  /* SP */
}

@media screen and (max-width: 768px) {
  .btnBuy5 {
    width: 89.5522%;
    height: auto;
    padding-bottom: 8rem;
  }
}

/* ----------------------------------------------------------------
backNumber
----------------------------------------------------------------- */
.backNum {
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .backNum {
    margin-top: 8rem;
  }
}

.backNum__title {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .backNum__title {
    margin: 0 auto;
  }

  .backNum__title img {
    width: 71.2vw;
  }
}

.backNum__menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .backNum__menu {
    margin: 0;
  }
}

.backNum__menu::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 173px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #78b840;
}

@media screen and (max-width: 768px) {
  .backNum__menu::before {
    right: 5.3334vw;
    width: 6.67vw;
    height: 6.67vw;
  }
}

.backNum__menu::after {
  content: "";
  display: block;
  position: absolute;
  right: 182px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .backNum__menu::after {
    right: 7.7334vw;
    width: 2.67vw;
    height: 2.67vw;
    border-top: 0.534vw solid #fff;
    border-right: 0.534vw solid #fff;
  }
}

.backNum__menu .monthryCrops {
  display: flex;
  justify-content: center;
  align-items: center;
}

.backNum__table {
  position: relative;
  margin: 6rem 0 0 0;
  padding: 0 0 3.3rem 0;
  background: #fff;
  border-top: 2px solid #69645f;
  border-bottom: 3px solid #69645f;
}

@media screen and (max-width: 768px) {
  .backNum__table {
    margin-top: 3.9rem;
    padding-bottom: 1.75rem;
  }
}

.backNum__table::after {
  content: "";
  position: absolute;
  margin: 2.9rem 0;
  width: 100%;
  height: 0.2rem;
  border-bottom: 0.2rem solid #69645f;
}

@media screen and (max-width: 768px) {
  .backNum__table::after {
    margin: 1.4rem 0;
  }
}

.backNum__table-head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.7rem auto 1.6rem;
}

@media screen and (max-width: 768px) {
  .backNum__table-head {
    margin: 2.8rem auto;
  }

  .backNum__table-title img {
    width: 65.06666667vw;
  }
}

.backNum__table a:hover {
  opacity: 0.8;
}

.backNum__acc {
  margin: 0 auto;
  width: 60rem;
  border-top: 1px solid #cdcdcd;
}

@media screen and (max-width: 768px) {
  .backNum__acc {
    width: 88.0597014925%;
  }
}

.backNum__acc:last-of-type {
  border-bottom: 1px solid #cdcdcd;
}

.backNum__head:hover {
  display: block;
  opacity: 0.8;
  cursor: pointer;
}

.backNum__table ul {
  display: none;
  border-top: 1px solid #cdcdcd;
}

.backNum__table li {
  position: relative;
  border-bottom: 1px solid #cdcdcd;
}

.backNum__table li:last-child {
  border-bottom: 0px solid #cdcdcd;
}