@charset "UTF-8";
html {
  font-size: 62.5%;
  /* 10px */
}

body {
  /* bodyにはサイト全体でベースとなるプロパティを記述 */
  background: #fffbf3;
  /* パターン画像を使用する場合は背景画像の値を追加 */
  color: #000;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, Meiryo, sans-serif;
  font-size: 1.6rem;
  /* ベースのフォントサイズを16pxに */
  /* line-height: 1.5; なくてもOK */
  color: #000;
}
@media screen and (max-width: 576px) {
  body {
    font-size: 1.3rem;
  }
}

main {
  width: 100%;
  overflow-x: hidden;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 576px) {
  .pc-none {
    display: block;
  }
}

/* =================================
以下、サイトのCSS
================================= */
.mainvisual_content {
  width: 100%;
  background-color: #fff7e7;
  position: relative;
}

/* ヘッダー */
.header {
  display: flex;
  justify-content: space-between;
  z-index: 20;
  /* position: fixed; */
}

.header_logo {
  padding: 32px 50px;
  background-color: #fff;
  border-radius: 0 0 30px 0;
}
@media screen and (max-width: 576px) {
  .header_logo {
    padding: 24px 37px 23px 37px;
  }
}
.header_logo img {
  width: 91px;
  height: auto;
}

/* オンラインショップへの誘導ボタン */
.btn_onlineshop {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  background-color: #fff;
  border: 1px solid #6c400f;
  border-radius: 50px;
  padding: 9px 23px 9px 28px;
  margin-right: 50px;
  transition: 0.5s;
}
@media screen and (max-width: 576px) {
  .btn_onlineshop {
    padding: 6px 19px;
    margin-right: 10px;
  }
}
.btn_onlineshop img {
  width: 90px;
  height: auto;
}
.btn_onlineshop:hover {
  transform: scale(1.1, 1.1);
}

/* インナー */
.inner_wrap {
  width: calc(100% - 20px);
  max-width: 960px;
  margin: 0 auto;
}

/* メインビジュアル */
.mainvisual {
  width: 100%;
  height: 100vh;
  background-color: #fff7e7;
  background: url(../img/mainvisual_back_Illustrator.png) no-repeat center bottom/contain;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .mainvisual {
    height: 80lvh;
    background: url(../img/mv_sp_bg01.png) no-repeat center bottom/cover;
  }
}

.mainvisual_cloud {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.mainvisual_cloud img {
  position: absolute;
  animation: cloudMove 60s linear infinite;
  /* アニメーション適用 */
}

@keyframes cloudMove {
  0% {
    transform: translateX(0);
    /* 初期位置 */
  }
  100% {
    transform: translateX(-120vw);
    /* 画面外まで移動 */
  }
}
.mainvisual_cloud_left {
  width: 8%;
  height: auto;
  left: 3%;
  /* 初期位置を画面の外に配置 */
  top: 175px;
  animation-duration: 28s;
  /* アニメーション速度を少し遅めに設定 */
}

.mainvisual_cloud_left2 {
  width: 11%;
  height: auto;
  left: 18%;
  top: 111px;
  width: 11%;
  animation-duration: 10s;
}

.mainvisual_cloud_left3 {
  width: 7%;
  height: auto;
  left: 40%;
  top: 87px;
  animation-duration: 23s;
}

.mainvisual_cloud_right1 {
  width: 10%;
  height: auto;
  right: 30%;
  top: 222px;
  animation-duration: 18s;
}

.mainvisual_cloud_right2 {
  width: 10%;
  height: auto;
  right: 5%;
  top: 167px;
  animation-duration: 19s;
}

.mainvisual_text {
  position: relative;
  z-index: 100;
  font-size: 2.5rem;
  color: #fff7e7;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .mainvisual_text {
    font-size: 1.6rem;
  }
}

.line1 {
  position: absolute;
  display: inline-block;
  top: 120px;
  right: 16%;
  width: 366px;
  height: 42px;
  padding: 5px 0 5px 12px;
}
@media screen and (max-width: 576px) {
  .line1 {
    width: -moz-max-content;
    width: max-content;
    height: auto;
    top: 116px;
    left: 46%;
    transform: translateX(-50%);
    right: auto;
    padding: 4px 16px;
  }
}

.line2 {
  position: absolute;
  display: inline-block;
  top: 178px;
  right: 12%;
  width: 216px;
  height: 42px;
  padding: 5px 0 5px 12px;
}
@media screen and (max-width: 576px) {
  .line2 {
    width: -moz-max-content;
    width: max-content;
    height: auto;
    top: 157px;
    left: calc(50% + 80px);
    transform: translateX(-50%);
    right: auto;
  }
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(0);
  }
  50% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.line1::before,
.line2::before {
  background: #b00003;
  border-radius: 10px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  animation: bg 4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
@media screen and (max-width: 576px) {
  .line1::before,
  .line2::before {
    border-radius: 5px;
  }
}

.inn {
  position: relative;
  z-index: 2;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-5deg);
  }
  50% {
    transform: translate(0, -5px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(5deg);
  }
}
.mainvisual_bee {
  position: absolute;
  left: -280px;
  bottom: 400px;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  .mainvisual_bee {
    width: 80px;
    height: auto;
    left: -120px;
    bottom: 260px;
    z-index: 99;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .mainvisual_bee {
    left: -50px;
    bottom: 220px;
    width: 36px;
  }
}

@keyframes floating-y {
  0% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(-5%);
  }
}
.mainvisual_bee_traces {
  position: absolute;
  left: -140px;
  bottom: 380px;
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}
@media screen and (max-width: 768px) {
  .mainvisual_bee_traces {
    left: -40px;
    bottom: 260px;
    width: 80px;
    height: 40px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .mainvisual_bee_traces {
    left: -16px;
    bottom: 220px;
    z-index: 99;
    width: 40px;
    height: 21px;
  }
}

.mainvisual_inn {
  position: relative;
  max-width: 400px;
  width: 48%;
  height: 100vh;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mainvisual_inn {
    width: 60%;
    max-width: 320px;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .mainvisual_inn {
    height: 80lvh;
    max-width: 240px;
    min-width: 200px;
    width: 80%;
  }
}

.mainvisual_syouhin {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 80px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 5;
}

.mainvisual_honey {
  position: absolute;
  bottom: 130px;
  left: -80px;
  z-index: 6;
}
@media screen and (max-width: 576px) {
  .mainvisual_honey {
    left: -50px;
    bottom: 140px;
  }
}
.mainvisual_honey img {
  width: 194px;
  height: auto;
}
@media screen and (max-width: 576px) {
  .mainvisual_honey img {
    width: 132px;
  }
}

.mainvisual_butter {
  width: 19%;
  height: auto;
  position: absolute;
  bottom: 90px;
  right: 90px;
  margin: 0 auto;
  z-index: 6;
}
@media screen and (max-width: 576px) {
  .mainvisual_butter {
    right: 40px;
    bottom: 120px;
  }
}
.mainvisual_butter img {
  height: auto;
}
@media screen and (max-width: 576px) {
  .mainvisual_butter img {
    width: 127px;
  }
}

.mainvisual_shadow {
  width: 28%;
  height: auto;
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 4;
}
@media screen and (max-width: 576px) {
  .mainvisual_shadow {
    bottom: 64px;
  }
}

/* メインビジュアルの中のdivを指定 */
@keyframes poyoyon {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0);
  }
  65% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
  20%, 100% {
    opacity: 1;
  }
}
.mainvisual_inn div:nth-child(1) {
  animation: poyoyon 1s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}
.mainvisual_inn div:nth-child(2) {
  animation: poyoyon 2s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}
.mainvisual_inn div:nth-child(3) {
  animation: poyoyon 2.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes slideIn01 {
  0% {
    transform: translateX(-800px);
  }
  60% {
    transform: translateX(0);
  }
}
.mainvisual_fence_left {
  width: 26%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: slideIn01 3s 1;
  z-index: 99;
}
@media screen and (max-width: 576px) {
  .mainvisual_fence_left {
    width: 38%;
  }
}

@keyframes slideIn02 {
  10% {
    transform: translateX(800px);
  }
  70% {
    transform: translateX(0);
  }
}
.mainvisual_fence_right {
  width: 24%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  animation: slideIn02 3s 1;
  z-index: 99;
}
@media screen and (max-width: 576px) {
  .mainvisual_fence_right {
    width: 38%;
  }
}

/* キャッチコピー */
.catchphrase_position_area {
  transform: translateY(-4px);
  margin-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .catchphrase_position_area {
    margin-bottom: 50px;
  }
}

.catchphrase {
  background: url(../img/text\ back_line.png), url(../img/text\ back_vector.png);
  background-size: 86%, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center center, top;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .catchphrase {
    background-size: cover, cover;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .catchphrase {
    margin-bottom: 50px;
  }
}
.catchphrase p {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  padding: 100px 0;
  line-height: 300%;
  letter-spacing: 1.8px;
  /* opacity: 0;  */
  /* transform: translateY(60px); */
  transition: all 1s ease;
}
@media screen and (max-width: 768px) {
  .catchphrase p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .catchphrase p {
    font-size: 1.3rem;
    text-align: left;
    padding: 60px 20px 75px;
    line-height: 1.6;
  }
}
.catchphrase.visible {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に移動 */
}

/* .catchphrase p {
    opacity: 0; 
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.catchphrase p.show {
    opacity: 1;
    transform: translateY(0);
} */
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* こだわりの素材 */
.material {
  overflow-x: hidden;
}

.material_title_flex {
  position: relative;
  display: flex;
  justify-content: center;
}

.material_title {
  position: relative;
}
.material_title h2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
  color: #6c400f;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .material_title h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
}
.material_title h3 img {
  display: block;
  width: 112px;
  height: 24px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .material_title h3 img {
    width: 80px;
    height: 18px;
    margin-bottom: 10px;
  }
}
.material_title .material_title_bee_traces01 {
  position: absolute;
  left: -150px;
  bottom: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 576px) {
  .material_title .material_title_bee_traces01 {
    width: 60px;
    height: 64px;
    left: -70px;
    bottom: 36px;
  }
}
.material_title .material_title_bee_traces02 {
  position: absolute;
  right: -100px;
  bottom: 68px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 576px) {
  .material_title .material_title_bee_traces02 {
    width: 48px;
    height: 21px;
    right: -32px;
    bottom: 30px;
  }
}
.material_title .material_title_bee {
  position: absolute;
  right: -126px;
  bottom: 56px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 576px) {
  .material_title .material_title_bee {
    width: 54px;
    height: 54px;
    right: -28px;
    bottom: 20px;
  }
}

@keyframes flyingBeeDynamic {
  0% {
    transform: translate(0, 0);
    /* 初期位置 */
  }
  10% {
    transform: translate(5px, -2.5px);
    /* 軽く上昇 */
  }
  20% {
    transform: translate(10px, 5px);
    /* 最初の下降 */
  }
  30% {
    transform: translate(15px, 1px);
    /* 少し上昇（下降より浅い） */
  }
  40% {
    transform: translate(20px, 4px);
    /* 再び下降（前より浅い） */
  }
  50% {
    transform: translate(25px, 2px);
    /* 再度上昇（さらに浅い） */
  }
  60% {
    transform: translate(30px, 3.5px);
    /* 下降（さらに浅い） */
  }
  70% {
    transform: translate(35px, 2.5px);
    /* 上昇（ほぼ揺れを感じる） */
  }
  80% {
    transform: translate(40px, 3px);
    /* 少し下降 */
  }
  90% {
    transform: translate(45px, 2.8px);
    /* 軽い上昇 */
  }
  100% {
    transform: translate(50px, 3px);
    /* 最終位置で揺れが終わる */
  }
}
.material_title_bee {
  animation: flyingBeeDynamic 4s cubic-bezier(0.42, 0, 0.58, 1) forwards 0.5s;
  /* 滑らかな動き */
}

.material_flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 60px;
  opacity: 0;
  transform: translateY(60px);
  /* 初期位置 (左にオフセット) */
  transition: all 1s ease;
}
@media screen and (max-width: 768px) {
  .material_flex {
    gap: 0 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .material_flex {
    grid-template-columns: 1fr;
    align-items: center;
  }
}
.material_flex.visible {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に移動 */
}
.material_flex .material_flex_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.material_flex .material_flex_item img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .material_flex .material_flex_item img {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .material_flex .material_flex_item img {
    max-width: 200px;
    margin-bottom: 20px;
  }
}
.material_flex .material_flex_item .material_flex_title {
  font-size: 2.3rem;
  font-weight: bold;
  color: #6c400f;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .material_flex .material_flex_item .material_flex_title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .material_flex .material_flex_item .material_flex_title {
    font-size: 1.8rem;
    margin-bottom: 13px;
  }
}
.material_flex .material_flex_item .material_title_explanation {
  display: inline-block;
  /* color: #6C400F; */
  line-height: 2.8rem;
  width: 100%;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .material_flex .material_flex_item .material_title_explanation {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .material_flex .material_flex_item .material_title_explanation {
    max-width: 270px;
    line-height: 1.8;
    height: auto;
    margin-bottom: 40px;
  }
}

/* ボタン */
.link_btn {
  background-color: #6c400f;
  width: 100%;
  max-width: 436px;
  color: #fff;
  text-align: center;
  padding: 22px 0;
  margin: 0 auto;
  border-radius: 50px;
  margin-bottom: 80px;
  transition: 0.5s;
}
@media screen and (max-width: 576px) {
  .link_btn {
    padding: 17px 0;
    font-size: 1.5rem;
    max-width: 242px;
    margin-bottom: 50px;
  }
}
.link_btn a {
  display: block;
}
.link_btn:hover {
  background-color: #b00003;
  transform: scale(1.1, 1.1);
}

/* 製造工程の上にいるハチ */
.produce_on_bee {
  text-align: center;
  margin-bottom: -15px;
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.produce_on_bee_big {
  transform: rotate(1deg);
}
@media screen and (max-width: 576px) {
  .produce_on_bee_big {
    width: 80px;
    height: auto;
  }
}

.produce_on_bee_small {
  padding-bottom: 2px;
}
@media screen and (max-width: 576px) {
  .produce_on_bee_small {
    width: 40px;
    height: auto;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(180px);
    opacity: 0;
  }
  100% {
    transform: translatey(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.produce_position_arrou_big {
  animation: yurayura1 2s linear;
}
@media screen and (max-width: 576px) {
  .produce_position_arrou_big {
    width: 52px;
    height: auto;
  }
}

@keyframes yurayura1 {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0);
  }
}
.produce_position_arrou_small {
  animation: yurayura2 2s linear;
}
@media screen and (max-width: 576px) {
  .produce_position_arrou_small {
    width: 40px;
    height: auto;
  }
}

@keyframes yurayura2 {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0);
  }
}
/* 製造工程 */
.produce {
  overflow: hidden;
  position: sticky;
}

.produce_title_header {
  position: relative;
  background-image: url(../img/produce_back.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 60px 0 80px 0;
  margin-top: 5px;
}
@media screen and (max-width: 576px) {
  .produce_title_header {
    padding: 40px 0;
  }
}

.produce_position_arrou_big {
  position: absolute;
  top: -8px;
  right: calc(50% + 110px);
}
@media screen and (max-width: 576px) {
  .produce_position_arrou_big {
    right: calc(50% + 90px);
  }
}

.produce_position_arrou_small {
  position: absolute;
  top: 57px;
  left: calc(50% + 155px);
}
@media screen and (max-width: 576px) {
  .produce_position_arrou_small {
    top: 32px;
    left: calc(50% + 100px);
  }
}

.produce_title h2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
  color: #6c400f;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .produce_title h2 {
    font-size: 2.2rem;
  }
}
.produce_title h3 img {
  display: block;
  width: 100%;
  max-width: 112px;
  height: 24px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .produce_title h3 img {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
  }
}

.produce_flex {
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 50px;
  background-color: #fff;
  justify-content: flex-start;
}
@media screen and (max-width: 576px) {
  .produce_flex {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .produce_flex .produce_flex_pic img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 1038px;
    height: 125px;
  }
}

.produce_title_bottom {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: #6c400f;
  padding: 0 10px 180px;
  background-color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .produce_title_bottom {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .produce_title_bottom {
    padding: 0 10px 100px;
  }
}

/* ナッツタイム */
.natstime {
  background-image: url(../img/nutstime_back_img.jpg), url(../img/nutstime_back.png);
  background-size: 180px 180px, auto 100px;
  background-repeat: repeat, no-repeat;
  background-position: center, center;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .natstime {
    margin-bottom: 60px;
  }
}
.natstime .natstime_inner {
  width: 100%;
  overflow-x: hidden;
}

.natstime_title_top {
  width: 100%;
  height: 96px;
  position: absolute;
  top: -96px;
  left: 0;
  background: url(../img/nutstime_back.png) no-repeat center top/cover;
}
@media screen and (max-width: 576px) {
  .natstime_title_top {
    height: 60px;
    top: -60px;
    background-position: left top;
  }
}

.natstime_title {
  padding-top: 20px;
}
.natstime_title h2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
  color: #6c400f;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .natstime_title h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.natstime_title h3 img {
  display: block;
  width: 198px;
  height: 24px;
  margin: 0 auto;
  margin-bottom: 15px;
}
@media screen and (max-width: 576px) {
  .natstime_title h3 img {
    width: 146px;
    height: auto;
    margin-bottom: 10px;
  }
}

.natstime_flex {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  padding-bottom: 42px;
}
@media screen and (max-width: 576px) {
  .natstime_flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    padding-bottom: 120px;
  }
}
.natstime_flex .natstime_flex_item {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  color: #6c400f;
}
.natstime_flex .natstime_flex_item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .natstime_flex .natstime_flex_item img {
    max-width: 280px;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .natstime_flex .natstime_flex_item img {
    max-width: 100%;
  }
}
.natstime_flex .natstime_flex_item p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .natstime_flex .natstime_flex_item p {
    bottom: 8%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .natstime_flex .natstime_flex_item p {
    font-size: 1.3rem;
  }
}

/* ナッツタイム（1枚目） */
.natstime_flex_page1 {
  top: 35px;
  transform: rotate(5deg);
}

/* ナッツタイム（2枚目） */
/* ナッツタイム（3枚目） */
.natstime_flex_page3 {
  top: 35px;
  transform: rotate(-9deg);
}
@media screen and (max-width: 576px) {
  .natstime_flex_page3 {
    top: 40px;
    transform: rotate(8deg);
  }
}

/* ナッツタイム（4枚目） */
.natstime_flex_page4 {
  top: 60px;
  transform: rotate(2deg);
}
@media screen and (max-width: 576px) {
  .natstime_flex_page4 {
    top: 40px;
    transform: rotate(-2deg);
  }
}

/* ナッツタイム（5枚目） */
.natstime_flex_page5 {
  top: 40px;
  transform: rotate(5deg);
}

/* ナッツタイム（6枚目） */
.natstime_flex_page6 {
  transform: rotate(-5deg);
  top: 29px;
}
@media screen and (max-width: 576px) {
  .natstime_flex_page6 {
    top: 60px;
  }
}

.natstime_title_bottom {
  height: 96px;
  background-color: #fffbf3;
  background-image: url(../img/nutstime_back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  transform: scale(1, -1);
}
@media screen and (max-width: 576px) {
  .natstime_title_bottom {
    height: 60px;
  }
}

/* メインビジュアルの中のdivを指定
.natstime_flex div:nth-child(1) {
    animation: slideinTop 1s forwards;
  }
.natstime_flex div:nth-child(2) {
    animation: slideinTop 1.4s forwards;
  }
.natstime_flex div:nth-child(3) {
    animation: slideinTop 1.8s forwards;
  }
.natstime_flex div:nth-child(4) {
    animation: slideinTop 2.2s forwards;
  }
.natstime_flex div:nth-child(5) {
    animation: slideinTop 2.6s forwards;
  }
.natstime_flex div:nth-child(6) {
    animation: slideinTop 3s forwards;
  }

@keyframes slideinTop {
    0% {
    opacity: 0;
    transform: translateY(-50px);
    }
    100% {
    opacity: 1;
    transform: translateY(0);
    }
} */
/* 商品詳細 */
.productinprice_flex {
  display: flex;
  margin-bottom: 65px;
}
@media screen and (max-width: 576px) {
  .productinprice_flex {
    flex-direction: column-reverse;
  }
}

.productinprice_flex_pic {
  max-width: 449px;
}
@media screen and (max-width: 768px) {
  .productinprice_flex_pic {
    max-width: 48%;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .productinprice_flex_pic {
    max-width: 100%;
  }
}

.productinprice_flex_pic img {
  border-radius: 20px 0 0 20px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 576px) {
  .productinprice_flex_pic img {
    border-radius: 0 0 20px 20px;
  }
}

.productinprice_flex_text {
  color: #6c400f;
  background-color: #fff;
  border-radius: 0 20px 20px 0;
  padding: 42px 56px 26px 47px;
}
@media screen and (max-width: 576px) {
  .productinprice_flex_text {
    border-radius: 20px 20px 0 0;
    padding: 30px 32px;
  }
}
.productinprice_flex_text h2 {
  font-size: 2.5rem;
  color: #6c400f;
  font-weight: bold;
  letter-spacing: 1px;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .productinprice_flex_text h2 {
    font-size: 2rem;
  }
}

.productinprice_flex_price {
  display: flex;
  align-items: baseline;
  padding-bottom: 20px;
}

.productinprice_price_number {
  font-size: 2.5rem;
  color: #dda000;
  letter-spacing: 1.3px;
  font-weight: bold;
}

.productinprice_price_tax {
  font-size: 1.5rem;
  color: #6c400f;
  padding-left: 7px;
}
@media screen and (max-width: 768px) {
  .productinprice_price_tax {
    font-size: 1.4rem;
  }
}

.productinprice_flex_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 7px 0 7px 0;
}
.productinprice_flex_list dt,
.productinprice_flex_list dd {
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .productinprice_flex_list dt,
  .productinprice_flex_list dd {
    font-size: 1.4rem;
  }
}

/* dlにマージントップ
flexとrapをつける
箱（縦幅）の中の何％かで調節する・dtの方に幅をつける！
ddの方に大きい％をつける
paddingもいるかも */
.productinprice_flex_text dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: dashed 1px #e4d7bd;
  margin-bottom: 25px;
}
.productinprice_flex_text dt {
  font-weight: 500;
  width: 35%;
  padding: 10px 4px 10px;
  border-top: dashed 1px #e4d7bd;
}
.productinprice_flex_text dd {
  align-items: center;
  width: 65%;
  padding: 10px 0;
  border-top: dashed 1px #e4d7bd;
}

.productinprice_btn_text {
  text-align: center;
  margin-bottom: 16px;
}

/* 商品詳細購入ボタン */
.link_btn_productinprice {
  background-color: #6c400f;
  width: 190px;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  margin: 0 auto;
  border-radius: 50px;
}
@media screen and (max-width: 576px) {
  .link_btn_productinprice {
    font-size: 1.5rem;
    padding: 12px 0;
  }
}
.link_btn_productinprice a {
  display: block;
}
.link_btn_productinprice:hover {
  background-color: #b00003;
}

/* レビュー */
.review {
  margin-bottom: 100px;
}
@media screen and (max-width: 576px) {
  .review {
    margin-bottom: 140px;
  }
}

.review_inner {
  position: relative;
  background-color: #f8f2e5;
  border-radius: 20px;
  padding: 120px 0 30px 0;
}
@media screen and (max-width: 576px) {
  .review_inner {
    padding: 80px 0 15px 0;
  }
}
@media screen and (max-width: 576px) {
  .review_inner .review_reviewer {
    width: 60px;
    height: auto;
  }
}

.review_1,
.review_2,
.review_3 {
  display: flex;
  margin: 0 40px 15px 48px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .review_1,
  .review_2,
  .review_3 {
    margin: 0 32px 15px 20px;
  }
}
@media screen and (max-width: 576px) {
  .review_1,
  .review_2,
  .review_3 {
    margin: 0 10px 15px 10px;
    align-items: flex-start;
  }
}

.review_title {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  padding-top: 23px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background-image: url(../img/tag.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 285px;
  height: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .review_title {
    top: -2px;
    padding-top: 16px;
    max-width: 196px;
    font-size: 1.5rem;
  }
}

.review_1_noflex,
.review_2_noflex,
.review_3_noflex {
  background-color: #fff;
  background-size: 763px;
  padding: 10px 12px 10px 21px;
  display: inline-block;
  width: 100%;
  max-width: 760px;
  border-radius: 11px;
  margin-left: 5px;
}

.review_0_noflex_text {
  line-height: 130%;
}

.star {
  margin-bottom: 11px;
}
@media screen and (max-width: 576px) {
  .star {
    margin-bottom: 5px;
    margin-left: -2px;
  }
}

/* メディア出演 */
.media {
  width: 100%;
  height: 80vh;
  background: #fffbf3 url(../img/natus_pic.png) no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
}
@media screen and (max-width: 576px) {
  .media {
    height: 40vh;
    background-size: cover;
  }
}
.media p {
  position: absolute;
  top: 6%;
  color: #fff;
  font-weight: 650;
  text-align: center;
  line-height: 150%;
  background: url(../img/media_tag.png) no-repeat;
  background-size: contain;
  padding: 27px 80px 17px 80px;
}
.media p span {
  font-size: 1.2rem;
}
@media screen and (max-width: 576px) {
  .media p {
    width: 100%;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-position: center center;
  }
}

/*  */
/* 関連商品とフッターのエリア */
.position_area {
  transform: translateY(-45px);
  height: 803px;
}

/* 関連商品のボタン */
.relatedproducts {
  width: 100%;
  background-color: #dda000;
  border-radius: 50px 50px 0 0;
}
.relatedproducts h2 {
  padding: 60px 0 60px 0;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 576px) {
  .relatedproducts h2 {
    font-size: 1.8rem;
    padding: 50px 0 40px 0;
  }
}

.relatedproducts_flex {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 32px 83px;
}
@media screen and (max-width: 768px) {
  .relatedproducts_flex {
    gap: 32px 32px;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .relatedproducts_flex {
    max-width: 240px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 40px;
    padding-bottom: 80px;
  }
}

.relatedproducts_kohousou img,
.relatedproducts_kokoa img,
.relatedproducts_batapi img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.komento {
  font-weight: bold;
  display: block;
  color: #6c400f;
  padding: 13px 12px 15px 12px;
  background-color: #feeeaf;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 25px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .komento {
    font-size: 1.3rem;
  }
}
.komento::after {
  display: block;
  content: "";
  background-image: url(../img/speech\ bubble_under.png);
  background-size: cover;
  width: 15px;
  height: 19px;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 4px);
  z-index: -1;
}

.relatedproducts_kohousou_content,
.relatedproducts_kokoa_content {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .relatedproducts_kohousou_content,
  .relatedproducts_kokoa_content {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.relatedproducts_batapi_content {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .relatedproducts_batapi_content {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.price {
  color: #6c400f;
  font-size: 2.1rem;
  font-weight: bold;
  background: linear-gradient(180deg, #dda000 0%, #dda000 50%, #fac63a 50%, #fac63a 100%);
  width: 100%;
  max-width: 137px;
  height: 35px;
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 576px) {
  .price {
    height: 16px;
    margin: 0 auto 40px auto;
    font-size: 1.8rem;
  }
}
.price span {
  font-size: 1.5rem;
  padding-left: 5px;
}
@media screen and (max-width: 576px) {
  .price span {
    font-size: 1.2rem;
  }
}

.relatedproducts_kohousou,
.relatedproducts_kokoa,
.relatedproducts_batapi {
  position: relative;
}

.link_btn_relatedproducts {
  background-color: #6c400f;
  width: 100%;
  max-width: 190px;
  color: #fff;
  text-align: center;
  padding: 18px 59px;
  margin: 0 auto;
  border-radius: 50px;
  margin-bottom: 55px;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .link_btn_relatedproducts {
    font-size: 1.4rem;
    padding: 16px 51px;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .link_btn_relatedproducts {
    margin-bottom: 0;
  }
}
.link_btn_relatedproducts a {
  display: block;
}
.link_btn_relatedproducts:hover {
  background-color: #b00003;
  transform: scale(1.1, 1.1);
}
.link_btn_relatedproducts:hover .komento {
  transform-origin: center bottom;
  animation: yurayura 2s linear;
}

/* 関連商品のhover */
@keyframes yurayura {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
/* ページトップボタン */
.pagetotop_btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  opacity: 0;
  /* 初期状態は非表示 */
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 576px) {
  .pagetotop_btn img {
    width: 74px;
    height: auto;
  }
}
.pagetotop_btn.show {
  opacity: 1;
  /* ふわっと表示 */
  visibility: visible;
}

/* フッター */
.footer {
  display: flex;
  background-color: #fff;
  text-align: left;
  color: #6c400f;
  padding: 30px 50px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .footer {
    padding: 30px 10px;
    flex-direction: column;
  }
}
.footer img {
  margin-bottom: 12px;
}
.footer ul {
  display: flex;
  position: absolute;
  bottom: 20px;
  right: 180px;
}
@media screen and (max-width: 576px) {
  .footer ul {
    position: static;
  }
}
.footer li {
  margin-left: 19px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .footer li {
    font-size: 1rem;
    margin-top: 10px;
    margin-left: 0;
  }
  .footer li img {
    width: 17px;
    height: auto;
    margin-bottom: 0;
    margin-left: 3px;
  }
}

/* 商品 */
/* 私たちについて */
/* お問い合わせ *//*# sourceMappingURL=style.css.map */