﻿@charset "UTF-8";
@media screen and (max-width: 1919px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1920 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 390 * 100vw);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #6b5e53;
}

/*----------------------------------
  common
-----------------------------------*/
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

.hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .hidden-pc {
    display: inline;
  }
}

.section__heading {
  height: 31.25rem;
}
@media screen and (max-width: 767px) {
  .section__heading {
    height: 230px;
  }
}

.section__heading__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-title {
  text-align: center;
}

.section-title__num span {
  color: #f80;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.125rem;
}
@media screen and (max-width: 767px) {
  .section-title__num span {
    font-size: 23px;
    line-height: 30px;
  }
}
.section-title__num {
  color: #f80;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 3.125rem;
}
@media screen and (max-width: 767px) {
  .section-title__num {
    font-size: 16px;
    line-height: 30px;
  }
}

.section-title__main {
  margin-top: 1.875rem;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 4.1875rem;
  letter-spacing: -0.07rem;
}
@media screen and (max-width: 767px) {
  .section-title__main {
    margin-top: 10px;
    font-size: 23px;
    line-height: 25px;
    letter-spacing: 1px;
  }
}

.section-title__text {
  margin-top: 2.875rem;
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .section-title__text {
    margin-top: 10px;
    font-size: 12px;
    line-height: 20px;
  }
}

/*----------------------------------
  anim
-----------------------------------*/
.anim-box.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.5s cubic-bezier(0.18, 1, 0.25, 1), -webkit-transform 0.5s cubic-bezier(0.18, 1, 0.25, 1);
  transition: opacity 0.5s cubic-bezier(0.18, 1, 0.25, 1), -webkit-transform 0.5s cubic-bezier(0.18, 1, 0.25, 1);
  transition: opacity 0.5s cubic-bezier(0.18, 1, 0.25, 1), transform 0.5s cubic-bezier(0.18, 1, 0.25, 1);
  transition: opacity 0.5s cubic-bezier(0.18, 1, 0.25, 1), transform 0.5s cubic-bezier(0.18, 1, 0.25, 1), -webkit-transform 0.5s cubic-bezier(0.18, 1, 0.25, 1);
}

.anim-box.fadein.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*----------------------------------
  header
-----------------------------------*/
.header {
  height: 6.9375rem;
  position: fixed; /* ヘッダーを固定 */
  top: 2.125rem; /* 上部に配置 */
  left: 50%;
  translate: -50%;
  width: 100%; /* 横幅を全体に広げる */
  background-color: #fff; /* ヘッダーの背景色（必要に応じて変更） */
  z-index: 1000; /* 重なり順を他の要素より前に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングを含めてボックスサイズを計算 */
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.03);
  max-width: calc(100% - 5.25rem);
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .header {
    height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    top: 11px;
    max-width: calc(100% - 10px);
    border-radius: 22px;
  }
}

.header.is-drawer-open {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header__inner {
  height: inherit;
  width: 100%;
  padding-block: 2.25rem;
  padding-inline: 2.0625rem 1.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-inline: 8px;
    padding-block: 5px;
  }
}

.header__inner > * {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__inner.is-hidden > *:not(.drawer-icon) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header__logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 15.375rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 116px;
  }
}
.header__logo:hover {
  opacity: 0.6;
}

.header-logo__link img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.header-logo__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header-logo__link:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1099px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.375rem;
}

.header__nav-item a {
  display: inline-block;
  color: #000;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.106875rem;
  border-bottom: 1px solid transparent;
}
@media (any-hover: hover) {
  .header__nav-item a:hover {
    border-bottom: 1px solid #000;
  }
}

.header__btn a {
  display: inline-block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1125rem;
  border-radius: 99px;
  background: #be1a21;
  padding: 1.0625rem 2.9375rem;
}

/*----------------------------------
  mv
-----------------------------------*/
.mv {
  position: relative;
  background: url(../../img/food/pic_fv.webp) no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
	.mv {
		height: 60vh;
	}
}
.mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(79, 32, 0, 0.42)), color-stop(50%, rgba(79, 32, 0, 0.28)), to(rgba(79, 32, 0, 0.42)));
  background: linear-gradient(180deg, rgba(79, 32, 0, 0.42) 0%, rgba(79, 32, 0, 0.28) 50%, rgba(79, 32, 0, 0.42) 100%);
  z-index: 1;
}

.mv__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 100%;
}

.mv-title__main {
  color: #fff;
  text-align: center;
  font-size: 5.625rem;
  font-weight: 900;
  line-height: 6.625rem;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 767px) {
  .mv-title__main {
    font-size: 30px;
    line-height: 50px;
    letter-spacing: 1px;
  }
}

.mv-title__lead {
  margin-top: 1.6875rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mv-title__lead {
    margin-top: 10px;
  }
}
.mv-title__lead span:nth-of-type(1) {
  font-size: 2.375rem;
  font-weight: 500;
  line-height: 2.125rem;
  letter-spacing: 0.125rem;
}
@media screen and (max-width: 767px) {
  .mv-title__lead span:nth-of-type(1) {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
  }
}
.mv-title__lead span:nth-of-type(2) {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.9125rem;
}
@media screen and (max-width: 767px) {
  .mv-title__lead span:nth-of-type(2) {
    margin-top: 2px;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
  }
}

/*----------------------------------
  drawer
-----------------------------------*/
.drawer-icon {
  position: relative;
  z-index: 61;
  width: 34px;
  height: 34px;
  border: 1px solid #be1a21;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1099px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-checked .drawer-icon__bar {
  background-color: #fff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 11px;
  left: 8px;
  width: 18px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  top: 11px;
  left: 8px;
  width: 18px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.drawer-icon.is-checked .drawer-icon__bar--text {
  color: #fff;
  font-size: 5px;
  bottom: 4px;
}
.drawer-icon.is-checked {
  background-color: #be1a21;
  border: none;
}

.drawer-icon__bar {
  position: absolute;
  left: 7px;
  height: 2px;
  background-color: #be1a21;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: top 0.3s ease, left 0.3s ease, width 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, left 0.3s ease, width 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, left 0.3s ease, width 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transition: top 0.3s ease, left 0.3s ease, width 0.3s ease, transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 7px;
  width: 20px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
  width: 15px;
}

.drawer-icon__bar--text {
  position: absolute;
  left: 50%;
  bottom: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #be1a21;
  font-size: 6px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.drawer-content {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: #be1a21;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
@media screen and (min-width: 1100px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content.is-checked {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.drawer-content.is-checked .drawer-content__menu {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__menu {
  min-height: 100dvh;
  padding: calc(72px + 28px) 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 18px;
  opacity: 0;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-transition: opacity 0.4s ease 0.08s, -webkit-transform 0.4s ease 0.08s;
  transition: opacity 0.4s ease 0.08s, -webkit-transform 0.4s ease 0.08s;
  transition: opacity 0.4s ease 0.08s, transform 0.4s ease 0.08s;
  transition: opacity 0.4s ease 0.08s, transform 0.4s ease 0.08s, -webkit-transform 0.4s ease 0.08s;
}

.drawer-content__link {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  position: relative;
  padding-block: 6px;
}
.drawer-content__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  margin: 6px auto 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.drawer-content.is-checked .drawer-content__link::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.drawer-content.is-checked .drawer-content__link:nth-child(1)::after {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.drawer-content.is-checked .drawer-content__link:nth-child(2)::after {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.drawer-content.is-checked .drawer-content__link:nth-child(3)::after {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.drawer-content.is-checked .drawer-content__link:nth-child(4)::after {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.drawer-content.is-checked .drawer-content__link:nth-child(5)::after {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.drawer-content.is-checked .drawer-content__link:nth-child(6)::after {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.drawer-content.is-checked .drawer-content__link:nth-child(7)::after {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.drawer-content.is-checked .drawer-content__link:nth-child(8)::after {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.drawer-content.is-checked .drawer-content__link:nth-child(9)::after {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

.drawer-content.is-checked .drawer-content__link:nth-child(10)::after {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

body.is-fixed {
  overflow: hidden;
}

/*----------------------------------
  source
-----------------------------------*/
.source__inner {
  padding-inline: 12.5rem;
  padding-block: 10.9375rem;
  max-width: 1920px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .source__inner {
    padding-inline: 20px;
    padding-block: 50px;
  }
}

.source-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .source-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.source-card__body {
  width: 50.1333333333%;
}
@media screen and (max-width: 767px) {
  .source-card__body {
    width: 100%;
  }
}

.source-card__title {
  color: #ca0000;
  padding-bottom: 0.75rem;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 4.2rem;
  letter-spacing: -0.07rem;
  border-bottom: 3px solid #692a00;
}
@media screen and (max-width: 767px) {
  .source-card__title {
    padding-bottom: 2px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
    border-bottom: 2px solid #692a00;
  }
}

.source-card__lead {
  margin-top: 1.5rem;
  color: #4f2000;
  font-size: 2rem;
  font-weight: 900;
  line-height: 2.7875rem;
}
@media screen and (max-width: 767px) {
  .source-card__lead {
    margin-top: 10px;
    font-size: 18px;
    line-height: 30px;
  }
}

.source-card__text {
  margin-top: 1.875rem;
  color: #692a00;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.9125rem;
}
@media screen and (max-width: 767px) {
  .source-card__text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 30px;
  }
}

.source-card__image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .source-card__image {
    width: 100%;
  }
}
.source-card__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------
  scene
-----------------------------------*/
.scene {
  background: #f7f4ef;
}

.scene__inner {
  padding-inline: 11.125rem;
  padding-block: 11.125rem;
  max-width: 1920px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .scene__inner {
    padding-inline: 20px;
    padding-block: 50px;
  }
}

.scene__title {
  color: #4f2000;
  font-size: 3rem;
  font-weight: 900;
  line-height: 4.2rem;
  letter-spacing: -0.07rem;
}
@media screen and (max-width: 767px) {
  .scene__title {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
  }
}

.scene__cards {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .scene__cards {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.scene__cards {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.scene__cards .scene-card:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.scene__cards .scene-card:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.scene__cards .scene-card:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.scene-card {
  border-radius: 2.349px;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2), 0 4px 16px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2), 0 4px 16px 0 rgba(0, 0, 0, 0.1);
}

.scene-card__image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.scene-card__body {
  padding: 1.6875rem 2.3125rem 3.125rem 2.3125rem;
}
@media screen and (max-width: 767px) {
  .scene-card__body {
    padding: 20px;
  }
}

.scene-card__num {
  padding: 0.375rem 3.125rem 0.4375rem 2.3125rem;
  color: #fff;
  background-color: #ca0000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: -2.3125rem;
  font-size: 3.375rem;
  font-weight: 900;
  line-height: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .scene-card__num {
    padding: 2px 20px 3px 20px;
    font-size: 20px;
    line-height: 30px;
    margin-left: -20px;
  }
}

.scene-card__title {
  margin-top: 1.125rem;
  color: #4f2000;
  font-size: 2.3125rem;
  font-weight: 900;
  line-height: 2.8125rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .scene-card__title {
    margin-top: 10px;
    font-size: 20px;
    line-height: 30px;
  }
}

.scene-card__lead {
  color: #4f2000;
  margin-top: 1.875rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.875rem;
}
@media screen and (max-width: 767px) {
  .scene-card__lead {
    margin-top: 15px;
    font-size: 14px;
    line-height: 20px;
  }
}

.scene-card__list {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .scene-card__list {
    margin-top: 10px;
  }
}
.scene-card__list span:nth-of-type(1) {
  color: #ca0000;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.5rem;
  letter-spacing: 0.014375rem;
}
@media screen and (max-width: 767px) {
  .scene-card__list span:nth-of-type(1) {
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 1px;
  }
}
.scene-card__list span:nth-of-type(2) {
  color: #4f2000;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .scene-card__list span:nth-of-type(2) {
    font-size: 14px;
    line-height: 20px;
  }
}

.scene-card__text {
  margin-top: 1.6875rem;
  color: #4f2000;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .scene-card__text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 30px;
  }
}

/*----------------------------------
  brand
-----------------------------------*/
.brand__inner {
  margin-inline: auto;
  max-width: 1920px;
  padding-inline: 19.375rem;
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .brand__inner {
    padding-inline: 20px;
    padding-block: 50px;
  }
}

.brand__heading {
  background: url(../../img/food/bg_brand.webp) no-repeat center center/cover;
  height: 34.375rem;
}
@media screen and (max-width: 767px) {
  .brand__heading {
    height: 230px;
  }
}

.section-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .section-cards {
    gap: 30px;
  }
}

.section-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2), 0 4px 16px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2), 0 4px 16px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .section-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    margin-inline: auto;
  }
  .section-card.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.section-card__image--opacity {
  width: 36.9230769231%;
}
@media screen and (max-width: 767px) {
  .section-card__image--opacity {
    width: 100%;
    height: 310px;
  }
}
.section-card__image--opacity img {
  height: 35rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .section-card__image--opacity img {
    height: 100%;
    width: 100%;
  }
}

.section-card__image {
  width: 63.0769230769%;
}
@media screen and (max-width: 767px) {
  .section-card__image {
    width: 100%;
  }
}
.section-card__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
	height:100%;
}

.section-card__content {
  position: absolute;
  top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .section-card__content {
    top: 20px;
  }
}
.section-card__content.--left {
  left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .section-card__content.--left {
    left: 10px;
  }
}
.section-card__content.--right {
  right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .section-card__content.--right {
    right: unset;
    left: 10px;
  }
}

.section-card__body {
  padding-inline: 1.25rem;
  min-height: 20rem;
}
.section-card__body.--background {
  margin-top: 1.1875rem;
  background: rgba(255, 255, 255, 0.8);
  padding-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .section-card__body.--background {
    min-height: unset;
    margin-top: 10px;
    padding-top: 20px;
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .section-card__body {
    padding-inline: 10px;
  }
}

.section-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  background: -webkit-gradient(linear, left bottom, left top, from(#ca0000), to(#ca0000)), #692a00;
  background: linear-gradient(0deg, #ca0000 0%, #ca0000 100%), #692a00;
  padding: 0.5625rem 1.5625rem 0.4375rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .section-card__title {
    gap: 3px;
    padding: 2px 20px 3px 20px;
  }
}
.section-card__title span:nth-of-type(1) {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 3rem;
  letter-spacing: -0.07rem;
}
@media screen and (max-width: 767px) {
  .section-card__title span:nth-of-type(1) {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
  }
}
.section-card__title span:nth-of-type(2) {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.875rem;
  letter-spacing: -0.07rem;
}
@media screen and (max-width: 767px) {
  .section-card__title span:nth-of-type(2) {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1px;
  }
}

.section-card__lead {
  color: #ca0000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .section-card__lead {
    font-size: 16px;
    line-height: 20px;
  }
}
.section-card__lead.--nomargin {
  margin-top: 0;
}

.section-card__text {
  margin-top: 1.5rem;
  color: #4f2000;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .section-card__text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 20px;
  }
}

.brand-card__title--large {
  width: 36.125rem;
}
@media screen and (max-width: 767px) {
  .brand-card__title--large {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.brand-card__title--small {
  width: 35.375rem;
}
@media screen and (max-width: 767px) {
  .brand-card__title--small {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/*----------------------------------
  support
-----------------------------------*/
.support__heading {
  background: url(../../img/food/bg_support.webp) no-repeat center center/cover;
  width: 100%;
}

.support__inner {
  margin-inline: auto;
  max-width: 1920px;
  padding-inline: 19.375rem;
  padding-block: 16rem;
}
@media screen and (max-width: 767px) {
  .support__inner {
    padding-inline: 20px;
    padding-block: 50px;
  }
}

/*----------------------------------
  solution
-----------------------------------*/
.solution__inner {
  margin-inline: auto;
  max-width: 1920px;
  padding-inline: 19.375rem;
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .solution__inner {
    padding-inline: 20px;
    padding-block: 50px;
  }
}

.solution__heading {
  background: url(../../img/food/bg_solution.webp) no-repeat center center/cover;
  width: 100%;
}

.solution-bottom-block {
  background: #f7f4ef;
}

.solution-bottom-block__inner {
  margin-inline: auto;
  max-width: 1920px;
  padding-inline: 17.5rem;
  padding-block: 8rem 9rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom-block__inner {
    padding-inline: 20px;
    padding-block: 50px;
  }
}

.solution-bottom__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom__cards {
    gap: 50px;
  }
}

.solution-bottom-card {
  background: #fff;
  -webkit-box-shadow: 2px 2px 6px 6px rgba(0, 0, 0, 0.13);
          box-shadow: 2px 2px 6px 6px rgba(0, 0, 0, 0.13);
  padding: 1.875rem 1.875rem 2.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom-card {
    padding: 10px;
  }
}

.solution-bottom-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom-card__head {
    gap: 5px;
  }
}

.solution-bottom-card__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.solution-bottom-card__body {
  padding-top: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom-card__body {
    padding-top: 20px;
  }
}

.solution-bottom-card__title {
  gap: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom-card__title {
    gap: 10px;
  }
}
.solution-bottom-card__title img {
  max-width: 21.875rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom-card__title img {
    max-width: 100%;
    margin-inline: auto;
  }
}

.solution-bottom-card__title--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 5.25rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom-card__title--column {
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.solution-bottom-card__title-main {
  color: #ca0000;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 4.1875rem;
  letter-spacing: 0.07rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom-card__title-main {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 1px;
  }
}

.solution-bottom-card__lead {
  margin-top: 1.6875rem;
  color: #ca0000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.125rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom-card__lead {
    margin-top: 10px;
    font-size: 16px;
    line-height: 20px;
  }
}

.solution-bottom-card__text {
  margin-top: 1.5625rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .solution-bottom-card__text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
}

/*----------------------------------
  strength
-----------------------------------*/
.strength__inner {
  padding-inline: 1.5625rem;
  padding-block: 7.375rem;
  max-width: 1920px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .strength__inner {
    padding-inline: 20px;
    padding-block: 50px;
  }
}

.strength-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 18.75rem;
}
@media screen and (max-width: 767px) {
  .strength-title {
    padding-inline: 0;
  }
}

.strength-title__main {
  color: #2d1f14;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 4.1875rem; /* 120% */
  letter-spacing: -0.07rem;
}
@media screen and (max-width: 767px) {
  .strength-title__main {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
  }
}

.strength-title__sub {
  color: #2d1f14;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 3.625rem; /* 182.5% */
  letter-spacing: -0.07rem;
}
@media screen and (max-width: 767px) {
  .strength-title__sub {
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 1px;
  }
}

.strength-lead {
  margin-top: 1.875rem;
  color: #ca0000;
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 4.625rem;
}
@media screen and (max-width: 767px) {
  .strength-lead {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 25px;
  }
}

.strength__cards {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .strength__cards {
    margin-top: 50px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.strength__cards .strength-card:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.strength__cards .strength-card:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.strength__cards .strength-card:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.strength__cards .strength-card:nth-child(4) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.strength-card {
  background: #692a00;
  padding: 1.5625rem 2.3125rem 3.125rem 2.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .strength-card {
    padding: 10px;
  }
}

.strength-card__title {
  color: #fff;
  font-size: 4.375rem;
  font-weight: 900;
  line-height: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .strength-card__title {
    font-size: 22px;
    line-height: 25px;
  }
}

.strength-card__sub-title {
  margin-top: 1.25rem;
  color: #ff8800;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.875rem;
}
@media screen and (max-width: 767px) {
  .strength-card__sub-title {
    margin-top: 4px;
    font-size: 14px;
    line-height: 25px;
  }
}

.strength-card__lead {
  margin-top: 1.3125rem;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 2.8125rem;
  letter-spacing: -0.046875rem;
}
@media screen and (max-width: 767px) {
  .strength-card__lead {
    margin-top: 10px;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 1px;
  }
}

.strength-card__text {
  margin-top: 0.9375rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.9375rem;
  margin-top: auto;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .strength-card__text {
    padding-top: 10px;
    font-size: 13px;
    line-height: 25px;
  }
}

/*----------------------------------
  promise
-----------------------------------*/
.promise {
  background: #311200;
}

.promise__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 7.9375rem;
}
@media screen and (max-width: 767px) {
  .promise__inner {
    padding-block: 50px;
    padding-inline: 20px;
  }
}

.promise__contents {
  color: #fff;
}

.promise__title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 4.1875rem;
  letter-spacing: -0.07rem;
}
@media screen and (max-width: 767px) {
  .promise__title {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 1px;
  }
}

.promise__text {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 350;
  line-height: 1.875rem;
}
@media screen and (max-width: 767px) {
  .promise__text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 25px;
  }
}

.promise__note {
  display: block;
  margin-top: 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .promise__note {
    margin-top: 18px;
    font-size: 16px;
    line-height: 25px;
  }
}

/*----------------------------------
  footer
-----------------------------------*/
.footer__inner {
  padding-inline: 1.25rem;
  padding-block: 11.0625rem 10.625rem;
  max-width: 1920px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-inline: 20px;
    padding-block: 82px 58px;
  }
}

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer-container {
    gap: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__info {
    gap: 30px;
  }
}

.footer__logo a img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__logo a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .footer__logo a:hover {
    opacity: 0.7;
  }
}

.footer__address {
  color: #333;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__address {
    font-size: 14px;
  }
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

.footer-nav__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.footer-nav__heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer-nav__heading {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

.footer-nav__heading a {
  color: #333;
  font-weight: 700;
}

@media (any-hover: hover) {
  .footer-nav__heading a:hover:hover {
    border-bottom: 1px solid #555;
  }
}

.footer-nav__subheading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.875rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .footer-nav__subheading {
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav__subheading.--margin {
    margin-top: 20px;
  }
}

.footer-nav__subheading a {
  color: #333;
  font-weight: 700;
}

.footer-nav__subheading a:hover {
  border-bottom: 1px solid #555;
}

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer-nav__list {
    gap: 4px;
  }
}
.footer-nav__list.--margin {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer-nav__list.--margin {
    margin-top: 13px;
    gap: 4px;
  }
}

.footer-nav__list li a {
  color: #555;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .footer-nav__list li a {
    font-size: 14px;
  }
}

.footer-nav__list li a:hover {
  border-bottom: 1px solid #555;
}

.footer-bottom {
  background: #000;
  color: #fff;
}

.footer-bottom__inner {
  padding-inline: 1.25rem;
  max-width: 1920px;
  margin-inline: auto;
  padding-block: 1.75rem;
}
@media screen and (max-width: 767px) {
  .footer-bottom__inner {
    padding-block: 24px 15px;
    padding-inline: 20px;
  }
}

.footer-bottom__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer-bottom__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}

.footer-copy {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .footer-copy {
    font-size: 10px;
  }
}

.footer-privacy {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .footer-privacy {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */