@charset "UTF-8";
/*
  ----------------
  Import all
  ----------------
*/
/*--------------------------------------------------
 Mixin
--------------------------------------------------*/
/*--------------------------------------------------
 Setting
--------------------------------------------------*/
:root {
  --color-base: #fff;
  --color-main: #fbf0f3;
  --color-sub: #fae9ed;
  --bg-white: #fff;
  --bg-gray: #f6f6f6;
  --bg-base: #edebda;
  --text-white: #fdfceb;
  --text-black: #333;
  --text-link: #007bff;
  --text-link-hover: #0056b3;
  --border-gray: #ddd;
  --border-red: #ff0000;
  --button-disabled: #ddd;
  --button-error: #dc3545;
  --button-success: #28a745;
  --button-warning: #ffc107;
  --button-info: #17a2b8;
}
/*
  ----------------
  ユーティリティー
  ----------------
*/
.container {
  position: relative;
  padding: 0 5vmin;
}
@media all and (min-width: 768px) {
  .container {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  height: 1px;
  width: 1px;
}
/*
  ----------------
  レスポンシブ用のユティリティー
  ----------------
*/
@media all and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width : 767px) {
  .pc-only {
    display: none !important;
  }
}
/*--------------------------------------------------
 Base
--------------------------------------------------*/
/*
  ----------------
  Base styles
  ----------------
  */
html {
  overflow-x: hidden;
}
body {
  background-color: var(--bg-base);
}
.site-wrapper {
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
main {
  -webkit-box-flex: 1;
          flex: 1;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}
@media (any-hover: hover) {
  a {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
  }
  a:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
}
a::before, a::after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
figure {
  margin: 0;
}
@media all and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*
  ----------------
  Base font settings
  ----------------
*/
body {
  color: #000;
  font-size: 14px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media all and (min-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
  }
}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 20px;
}
h3 {
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
  font-size: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
ul,
ol,
dl,
dt,
dd {
  padding: 0;
  margin: 0;
}
li,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
  cursor: pointer;
}
p {
  margin-top: 0;
  margin-bottom: 0;
}
input[type=submit],
input[type=reset],
input[type=button],
button {
  background: none;
  border: 0;
  color: inherit;
  /* cursor: default; */
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: button; /* for input */
  -webkit-user-select: none; /* for button */
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
}
button:focus {
  outline: 0;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
[role=button] {
  color: inherit;
  cursor: default;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  white-space: pre;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media all and (min-width: 768px) {
  a[href^=tel] {
    pointer-events: none;
  }
}
/*--------------------------------------------------
 Modules
--------------------------------------------------*/
/*
  ----------------
   Modules common
  ----------------
*/
/*
  ----------------
  Header common
  ----------------
*/
/*
  ----------------
  Footer common
  ----------------
*/
.footer {
  background-color: #fdfceb;
  padding-inline: 40px;
}
@media all and (max-width : 767px) {
  .footer {
    padding: 56px 20px 0;
  }
}
.footer__wrap {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  -webkit-filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
          filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
  margin-inline: auto;
  padding-block: 28px 18px;
  max-width: 1280px;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  gap: 20px;
}
.footer__logo {
  margin-inline: auto;
  max-width: 140px;
  width: 100%;
}
.footer__copy {
  color: #814444;
  font-size: 10px;
}
/*--------------------------------------------------
 Pages
--------------------------------------------------*/
/*
  ----------------
  Pages Common
  ----------------
*/
/* ========================================
  ヒーローセクション
======================================== */
.hero {
  position: relative;
}
.hero__wrap {
  position: relative;
  padding-inline: 58px;
}
@media all and (max-width : 767px) {
  .hero__wrap {
    padding-inline: 0;
  }
}
.hero__image {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
  height: auto;
  max-width: 1280px;
  width: 100%;
}
.hero__content {
  padding: 4.285vw 58px 0;
  text-align: center;
  height: 100%;
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: start;
          justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media all and (min-width: 1401px) {
  .hero__content {
    padding-top: 60px;
  }
}
@media all and (max-width : 767px) {
  .hero__content {
    -webkit-box-pack: center;
            justify-content: center;
    padding: 0 0 20.26vw;
  }
}
.hero__title {
  -webkit-filter: drop-shadow(2.9374px 2.9374px 11.7498px #897651);
          filter: drop-shadow(2.9374px 2.9374px 11.7498px #897651);
  max-width: 885px;
  width: 63.21vw;
}
@media all and (max-width : 767px) {
  .hero__title {
    width: 84vw;
  }
}
.hero__catch {
  color: var(--text-white);
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  font-size: 1.714vw;
  margin-top: 3vw;
}
@media all and (min-width: 1401px) {
  .hero__catch {
    font-size: 24px;
    margin-top: 42px;
  }
}
@media all and (max-width : 767px) {
  .hero__catch {
    font-size: 4.53vw;
    margin-top: 9vw;
  }
}
.hero__banner {
  margin-top: 2.1428vw;
  max-width: 28.57vw;
  width: 100%;
}
@media all and (min-width: 1401px) {
  .hero__banner {
    margin-top: 30px;
    max-width: 400px;
  }
}
@media all and (max-width : 767px) {
  .hero__banner {
    margin-top: 16vw;
    max-width: 46.93vw;
  }
}
.hero__icon {
  width: 13px;
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media all and (max-width : 767px) {
  .hero__icon {
    bottom: -40px;
  }
}
/* === 紹介セクション（ヒーロー下） ===================== */
.intro {
  position: relative;
}
.intro::before {
  background: url(../../assets/images/intro_bg.webp) 50%/contain no-repeat;
  content: "";
  aspect-ratio: 1;
  width: 57.142vw;
  position: absolute;
  bottom: -50px;
  right: 38px;
}
@media all and (min-width: 1401px) {
  .intro::before {
    width: 800px;
  }
}
@media all and (max-width : 767px) {
  .intro::before {
    bottom: -9px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 387px;
  }
}
.intro__wrap {
  padding: 90px 40px 145px;
  max-width: 980px;
  margin: 0 auto;
}
@media all and (max-width : 767px) {
  .intro__wrap {
    padding: 32px 20px 330px 40px;
  }
}
.intro__title {
  color: var(--text-white);
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  letter-spacing: 12px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.intro__title-l {
  font-size: 67px;
  line-height: 1.6;
}
@media all and (max-width : 767px) {
  .intro__title-l {
    font-size: 44px;
  }
}
.intro__title-m {
  font-weight: bold;
  font-size: 43px;
  letter-spacing: 0.2px;
}
@media all and (max-width : 767px) {
  .intro__title-m {
    font-size: 28px;
  }
}
.intro__body {
  padding-top: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 27px;
}
@media all and (max-width : 767px) {
  .intro__body {
    gap: 15px;
    padding-top: 25px;
  }
}
.intro__lead {
  color: var(--text-white);
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 0.2px;
}
@media all and (max-width : 767px) {
  .intro__lead {
    font-size: 13px;
  }
}
/* === おいしさの秘密セクション ===================== */
.secret__wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 53px 40px 156px;
}
@media all and (max-width : 767px) {
  .secret__wrap {
    padding: 40px 0 70px;
  }
}
.secret__list {
  padding-top: 45px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 60px;
}
@media all and (max-width : 767px) {
  .secret__list {
    gap: 50px;
    padding-top: 32px;
  }
}
.secret__item {
  background: #fff;
  border-radius: 40px;
  -webkit-filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
          filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
  padding: 60px;
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 32px;
}
@media all and (max-width : 767px) {
  .secret__item {
    border-radius: 0 40px 40px 0;
    margin-right: 20px;
    padding: 40px 30px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    gap: 26px;
  }
}
.secret__item.--reverse {
  grid-template-columns: 1fr 256px;
}
@media all and (min-width: 768px) {
  .secret__item.--reverse .secret__item-image {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .secret__item.--reverse .secret__item-body {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}
@media all and (max-width : 767px) {
  .secret__item.--reverse {
    border-radius: 40px 0 0 40px;
    margin-right: 0;
    margin-left: 20px;
  }
}
@media all and (max-width : 767px) {
  .secret__item-image {
    display: grid;
    place-items: center;
  }
}
@media all and (max-width : 767px) {
  .secret__item-image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 232px;
    max-width: 250px;
  }
}
.secret__item-title {
  color: #dc4836;
  font-family: "Zen Maru Gothic";
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
}
@media all and (max-width : 767px) {
  .secret__item-title {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media all and (max-width : 767px) {
  .secret__item:nth-child(n+2) .secret__item-title {
    text-align: center;
  }
}
.secret__item-text {
  color: #814444;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -1px;
  margin-top: 30px;
  text-align: left;
}
@media all and (max-width : 767px) {
  .secret__item-text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -1.2px;
    margin-top: 20px;
  }
}
/* === フレーバー紹介セクション ===================== */
.flavor {
  margin-inline: auto;
  max-width: 1400px;
  width: 100%;
}
.flavor__wrap {
  padding: 48px 40px 165px;
  max-width: 1080px;
  margin: 0 auto;
}
@media all and (max-width : 767px) {
  .flavor__wrap {
    padding: 52px 0 75px;
  }
}
.flavor__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.flavor__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
@media all and (max-width : 767px) {
  .flavor__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
.flavor__item.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}
@media all and (min-width: 768px) {
  .flavor__item.--reverse {
    margin-top: -24px;
  }
}
@media all and (max-width : 767px) {
  .flavor__item.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
@media all and (min-width: 768px) {
  .flavor__item:nth-child(3) {
    margin-top: -44px;
  }
}
.flavor__item-image {
  width: 100%;
}
@media all and (min-width: 768px) {
  .flavor__item-image {
    margin-left: calc((700px - 50%) * -1);
    max-width: 684px;
    -webkit-transform: translateY(-35px);
            transform: translateY(-35px);
  }
}
@media all and (max-width : 767px) {
  .flavor__item-image {
    margin-top: -50px;
    overflow-x: hidden;
  }
}
@media all and (max-width : 767px) {
  .flavor__item:nth-child(3) .flavor__item-image {
    margin-top: -30px;
  }
}
@media all and (max-width : 767px) {
  .flavor__image-photo {
    min-width: calc(100% + 70px);
  }
}
@media all and (max-width : 767px) {
  .flavor__item.--reverse .flavor__image-photo {
    min-width: calc(100% + 30px);
    margin-left: -18px;
  }
}
@media all and (max-width : 767px) {
  .flavor__item:nth-child(3) .flavor__image-photo {
    min-width: calc(100% + 15px);
  }
}
.flavor__item.--reverse .flavor__item-image {
  margin-left: 0;
}
@media all and (min-width: 768px) {
  .flavor__item.--reverse .flavor__item-image {
    margin-right: calc((700px - 50%) * -1);
    max-width: 644px;
  }
}
@media all and (max-width : 767px) {
  .flavor__item.--reverse .flavor__item-image {
    margin-top: -10px;
  }
}
.flavor__item-body {
  max-width: 540px;
  width: 100%;
}
@media all and (min-width: 768px) {
  .flavor__item-body {
    margin-left: -25px;
  }
}
@media all and (max-width : 767px) {
  .flavor__item-body {
    padding-inline: 28px;
  }
}
@media all and (max-width : 767px) {
  .flavor__item.--reverse .flavor__item-body {
    margin-top: -25px;
  }
}
.flavor__item-title {
  color: #fdfceb;
  font-family: "Zen Maru Gothic";
  font-size: 32px;
  font-weight: bold;
}
@media all and (max-width : 767px) {
  .flavor__item-title {
    font-size: 24px;
  }
}
@media all and (max-width : 767px) {
  .flavor__item.--reverse .flavor__item-title {
    text-align: right;
  }
}
.flavor__item-text {
  color: #fdfceb;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -1px;
  margin-top: 16px;
}
@media all and (max-width : 767px) {
  .flavor__item-text {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 9px;
  }
}
.flavor__item-note {
  color: #fdfceb;
  font-size: 14px;
  margin-top: 16px;
}
@media all and (max-width : 767px) {
  .flavor__item-note {
    font-size: 12px;
    margin-top: 9px;
  }
}
/* === Our Story セクション ===================== */
.story {
  background: #fdfceb;
}
.story__wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 40px 0;
}
@media all and (max-width : 767px) {
  .story__wrap {
    padding: 54px 20px;
  }
}
.story__list {
  padding-top: 66px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 80px;
}
@media all and (max-width : 767px) {
  .story__list {
    padding: 40px 20px;
    gap: 20px;
  }
}
.story__item {
  display: -webkit-box;
  display: flex;
  gap: 40px;
}
@media all and (max-width : 767px) {
  .story__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 10px;
  }
}
@media all and (min-width: 768px) {
  .story__item.--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }
}
.story__item-image {
  width: 100%;
}
@media all and (min-width: 768px) {
  .story__item-image {
    max-width: 360px;
  }
}
.story__item-body {
  max-width: 480px;
  width: 100%;
}
.story__item-title {
  color: #dc4836;
  font-family: "Zen Maru Gothic";
  font-size: 26px;
  font-weight: bold;
}
@media all and (max-width : 767px) {
  .story__item-title {
    font-size: 20px;
    text-align: center;
  }
}
.story__item-text {
  color: #814444;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -1px;
  margin-top: 16px;
}
@media all and (max-width : 767px) {
  .story__item-text {
    margin-top: 10px;
  }
}
.story__item-note {
  font-size: 14px;
}
.story__item-link {
  color: #dc4836;
  font-size: 14px;
}
/* === NEWS セクション ===================== */
.news__wrap {
  padding: 32px 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px;
}
@media all and (max-width : 767px) {
  .news__wrap {
    padding: 0 20px;
    padding-bottom: 40px;
  }
}
.news__box {
  background: #fff;
  border-radius: 40px;
  -webkit-filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
          filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
  padding: 25px 60px;
}
@media all and (max-width : 767px) {
  .news__box {
    padding: 0 20px 30px;
  }
}
.news__title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #d10000;
}
.news__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  padding: 16px 0;
  position: relative;
}
@media all and (max-width : 767px) {
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    padding: 10px 0;
  }
}
.news__item + .news__item::before {
  background-image: -webkit-radial-gradient(circle, #948782 1px, transparent 1px);
  background-image: radial-gradient(circle, #948782 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 10px 2px;
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.news__date {
  color: #dc4836;
  font-size: 14px;
}
.news__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-left: 16px;
}
@media all and (max-width : 767px) {
  .news__text {
    margin-left: 0;
  }
}
.bg-section {
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-section.--01 {
  background-image: url(../../assets/images/bg01_pc.webp);
  background-position: 50% 100%;
}
@media all and (max-width : 767px) {
  .bg-section.--01 {
    background-image: url(../../assets/images/bg01_sp.webp);
  }
}
.bg-section.--02 {
  background-color: #e7312e;
  background-image: url(../../assets/images/bg02_pc.webp);
  background-position: 50% 100%;
}
@media all and (max-width : 767px) {
  .bg-section.--02 {
    background-image: url(../../assets/images/bg02_sp.webp);
  }
}
.bg-section.--03 {
  background-color: #fdfceb;
  background-image: url(../../assets/images/bg03_pc.webp);
  background-position: 50% 100%;
}
@media all and (max-width : 767px) {
  .bg-section.--03 {
    background-image: url(../../assets/images/bg03_sp.webp);
  }
}
.bg-section.--04 {
  background-color: #fdfceb;
}
.heading {
  display: grid;
  place-items: center;
}
.heading__icon {
  width: 32px;
}
@media all and (max-width : 767px) {
  .heading__icon {
    width: 22px;
  }
}
.heading__title {
  color: #dc4836;
  font-weight: bold;
  font-family: "Zen Maru Gothic";
  font-size: 46px;
}
@media all and (max-width : 767px) {
  .heading__title {
    font-size: 28px;
  }
}
.flavor .heading__title {
  color: #fdfceb;
}
.heading__title-sub {
  color: #814444;
  font-family: "Zen Maru Gothic";
  font-size: 32px;
  font-weight: bold;
}
@media all and (max-width : 767px) {
  .heading__title-sub {
    font-size: 18px;
    letter-spacing: 0;
  }
}
.heading__lead {
  color: #814444;
  font-family: "Zen Maru Gothic";
  font-size: 28px;
  font-weight: bold;
}
@media all and (max-width : 767px) {
  .heading__lead {
    font-size: 18px;
    margin-top: 8px;
  }
}