@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap');
@font-face {
  font-family: 'Zen Kaku Gothic';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../font/ZenKakuGothicAntique-subset.woff2') format('woff2'), url('../font/ZenKakuGothicAntique-subset.woff') format('woff');
}
:root {
  --main: #FEF100;
  --sub: #C0A202;
  --text: #000000;
  --white: #ffffff;
  --gray: ##07070;
  --font-ja: "Zen Old Mincho", serif;
  --font-gothic: "Zen Kaku Gothic", sans-serif;
  --font-size: 1rem; /* デフォルト16px */
  --bold: 700;
  --content-width: 1200px;
  --content-width-narrow: 980px;
  --space-section: 120px;
  --space-section-sp: 64px;
  --header-height: 112px;
  --header-height-sp: 56px;
}
/* reset */
* { margin: 0; padding: 0; box-sizing: border-box;}
html { font-size: 100%; scroll-padding-top: var(--header-height);}
body {
  background: url(../img/bg.png) repeat-y;
  background-size: 100%;
  font-family: var(--font-ja);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
ul, ol { list-style-type: none;}
h1, h2, h3, h4 { font-size: inherit; font-weight: 500; word-break: auto-phrase;}
a { color: var(--text); text-decoration: none; transition: all .3s ease;}
a::before, a::after { transition: all .3s ease;}
p > a { text-decoration: underline;}
img { max-width: 100%; height: auto; vertical-align: bottom;}
iframe { width: 100%; height: 100%; vertical-align: bottom;}
mark, em, small { color: inherit; font-style: normal; font-size: inherit; font-weight: inherit; background-color: transparent;}
strong { color: inherit; font-style: normal; font-size: inherit; font-weight: var(--bold); background-color: transparent;}
/* reset end */

/* component */
.l-wrapper {
  max-width: 1920px;
  margin: auto;
}
.l-inner {
  width: 90%;
  max-width: var(--content-width);
  margin: auto;
}
.l-section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}
.c-section-title {
  max-width: 350px;
  margin: 0 auto 40px;
}
.c-section-text {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
}
.c-btn {
  display: inline-block;
  font-family: var(--font-gothic);
  color: var(--white);
  font-size: 1.125rem;
  text-align: center;
  border-radius: 30px;
  padding: 12px 80px;
  position: relative;
}
.c-btn:hover { opacity: .8;}
.c-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
}
.c-btn::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  border-radius: 1px;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 48px;
  margin: auto;
}
.c-btn--online { background-color: #629D9D;}
.c-btn--online::before { background-image: url(../img/icon-cart.png);}
.c-btn--cf { background-color: #536F42; border: 2px solid var(--white);}
.c-btn--cf::before { background-image: url(../img/icon-flag.png);}
.c-line-deco {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 3px;
  background-color: #D3B759;
  margin: 16px 0;
  position: relative;
}
.c-line-deco::before,
.c-line-deco::after {
  content: "";
  display: block;
  width: 32px;
  height: 29px;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-line-deco::before { background-image: url(../img/line-l.png);}
.c-line-deco::after { background-image: url(../img/line-r.png);}
/* component end */

/* header */
.header {
  width: 100%;
  max-width: 1920px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  column-gap: 5%;
  align-items: center;
  padding: 8px 2%;
  position: absolute;
  z-index: 9;
}
.header__logo {
  min-width: max-content;
  display: flex;
  align-items: center;
  column-gap: 16px;
  line-height: 1.2;
}
.header__logo-img {
  width: 80px;
}
.header__logo-head {
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  margin-bottom: 8px;
}
.header__logo-disc {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: 2em;
  row-gap: 1em;
  font-weight: var(--bold);
  line-height: 1.2;
  letter-spacing: 0;
}
.header__nav-list a { display: block; position: relative;}
.header__nav-list a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: transparent;
  position: absolute;
  bottom: -6px;
  left: 0;
}
.header__nav-list a:hover::after {
  background-color: var(--text);
}
/* header end */

/* fv */
.fv {
  height: 68vw;
  max-height: 920px;
  background: var(--white) url(../img/fv-bg.jpg) no-repeat center right;
  background-size: cover;
  padding-top: var(--header-height);
}
.fv__inner {
  width: 90%;
  max-width: var(--content-width);
  margin: auto;
}
.fv__box {
  width: 37.5%;
  max-width: 450px;
  height: max-content;
  margin-top: 48px;
}
.fv__img {
  width: 80%;
  margin: 0 auto 32px;
}
.fv__link .c-btn { width: 100%; padding: 6px;}
.fv__link .c-btn::before { left: 56px;}
.fv__link .c-btn::after { right: 64px;}
.fv__link .c-btn--online { background-color: var(--main); color: var(--text); border: 2px solid var(--main);}
.fv__link .c-btn--online::before { background-image: url(../img/icon-cart-color.png);}
.fv__link .c-btn--online::after { border-color: var(--text);}
.fv__link .c-btn--cf { color: var(--text); background-color: var(--white); border: 2px solid #536F42;}
.fv__link .c-btn--cf::before { background-image: url(../img/icon-flag-color.png);}
.fv__link .c-btn--cf::after { border-color: #536F42;}
.fv__link .c-btn + .c-btn { margin-top: 16px;}
/* fv end */

/* intro */
.intro {
  background-color: var(--white);
  background-image: url(../img/intro-deco-food.png);
  background-repeat: no-repeat;
  background-size: 24%;
  background-position-y: bottom;
  background-position-x: 5%;
}
.intro::before,
.intro::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
}
.intro::before {
  width: 14.27vw;
  aspect-ratio: 274 / 194;
  background-image: url(../img/intro-deco-lemon1.png);
  top: 18px;
  left: 23px;
}
.intro::after {
  width: 12.76vw;
  aspect-ratio: 245 / 248;
  background-image: url(../img/intro-deco-lemon2.png);
  bottom: 32px;
  right: 40px;
}
.intro__box {
  display: flex;
  align-items: center;
  column-gap: 2%;
  padding: 0 2% 0 5%;
  position: relative;
}

.intro__text {
  width: 598px;
  font-size: 1.25rem;
}
.intro__text-head {
  font-weight: var(--bold);
  letter-spacing: 0.2em;
  border-bottom: 1px solid #C0A202;
  padding-bottom: 8px;
  margin-bottom: 32px;
  position: relative;
}
.intro__text-head::after {
  content: "";
  display: block;
  width: 144px;
  height: 146px;
  background: url(../img/intro-deco-leaf.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -25px;
  right: 54px;
}
.intro__text-head em { color: #BFA200; font-size: 2rem;}
.intro__text-content { border-bottom: 1px solid #C0A202; padding: 16px 0 8px;}
.intro__text-content em { font-size: 120%;}
.intro__text-content .brown { color: #AF6500;}
.intro__text-content .red { color: #FF5757;}
.intro__text-content .orange { color: #FFB100;}
.intro__text-content .yellow { color: #E3C900;}
.intro__img {
  width: calc(98% - 598px);
}
/* intro end */

/* product */
.product__head {
  max-width: 800px;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 auto 56px;
}
/* product end */

/* cook */
.cook {
  background-color: var(--white);
}
.cook::before,
.cook::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
}
.cook::before {
  width: 10.48vw;
  aspect-ratio: 302 / 365;
  background-image: url(../img/cook-deco-lemon1.png);
  top: 48px;
  left: 55px;
}
.cook::after {
  width: 14.5vw;
  aspect-ratio: 416 / 457;
  background-image: url(../img/cook-deco-lemon2.png);
  bottom: 0;
  right: 0;
}
.cook__list {
  display: flex;
  column-gap: 12%;
  margin-top: 64px;
}
.cook__item {
  flex: 1;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  padding-left: 56px;
  position: relative;
}
.cook__item::before {
  content: attr(data-no);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: url(../img/cook-no-bg.png) no-repeat;
  background-size: contain;
  font-family: var(--font-gothic);
  font-size: 1rem;
  font-weight: bold;
  padding-right: 2px;
  padding-bottom: 2px;
  position: absolute;
  top: 0;
  left: 16px;
}
.cook__item::after {
  content: "";
  display: block;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: -56px;
}
.cook__item:nth-of-type(1):after { background-image: url(../img/cook1.png);}
.cook__item:nth-of-type(2):after { background-image: url(../img/cook2.png);}
.cook__item:nth-of-type(3):after { background-image: url(../img/cook3.png);}
.cook__item .arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 32px solid #B3B4B5;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  bottom: 120px;
  right: calc(-20% + -16px);
}
/* cook end */

/* special */
.special {
  background-color: rgba(255, 255, 255, .8);
  padding: 64px 0;
  margin: 64px;
}
.special__box {
  display: flex;
  flex-direction: column;
  row-gap: 56px;
}
.special__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.special__item::after {
  content: "";
  width: calc(95% - 485px);
  height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
}
.special__item:nth-child(odd):after { border-radius: 30px 0 0 30px;}
.special__item:nth-child(even):after { border-radius: 0 30px 30px 0;}
.special__item:nth-of-type(1):after { background-image: url(../img/special1.jpg);}
.special__item:nth-of-type(2):after { background-image: url(../img/special2.jpg);}
.special__item:nth-of-type(3):after { background-image: url(../img/special3.jpg);}
.special__item:nth-child(even) {
  flex-direction: row-reverse;
}
.special__item-content {
  width: 485px;
}
.special__item-head {
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--sub);
  padding-bottom: 16px;
  padding-left: 5rem;
  margin-bottom: 32px;
  position: relative;
}
.special__item-head::before {
  content: attr(data-no);
  color: var(--sub);
  font-size: 6rem;
  font-style: italic;
  position: absolute;
  bottom: -8px;
  left: 4%;
}
.special__item-head em {
  display: block;
  color: #546F41;
  font-size: 2rem;
}
.special__item-text {
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  line-height: 1.75;
  word-break: auto-phrase;
  padding: 0 4%;
}
/* special end */

/* topping */
.topping {
  padding: 64px 0;
}
.topping__inner {
  max-width: 1440px;
  background-color: var(--white);
  border-radius: 10vw;
  padding: 64px 5%;
}
.topping__head {
  max-width: 800px;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0 auto 40px;
}
.topping__head-head {
  font-size: 1.5rem;
}
.topping__head-deco {
  font-size: 2.5rem;
  font-weight: var(--bold);
}
.topping__head-deco em {
  color: #FAB700;
}
.topping__head-text {
  font-size: 1.25rem;
}
.topping__box {
  display: flex;
  column-gap: 2%;
}
.topping__item {
  flex: 1;
  border: 2px solid #707070;
  border-radius: 10px;
  box-shadow: 12px 12px 7px rgba(0, 0, 0, .16);
}
.topping__item img {
  border-radius: 8px 8px 0 0;
}
.topping__item-content {
  max-width: max-content;
  padding: 24px 5% 32px;
  margin: auto;
}
.topping__item-head {
  font-size: 1.5rem;
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: 8px;
}
.topping__item-text {
  letter-spacing: 0.1em;
  line-height: 1.6;
}
/* topping end */

/* cf */
.cf {
  background-color: var(--white);
}
.cf__box {
  display: flex;
  align-items: center;
  column-gap: 2%;
}
.cf__content {
  flex: 1;
}
.cf__content-head {
  font-size: 2.25rem;
  line-height: 1.75;
  margin: 0 0 48px 4%;
}
.cf__content-head .c-line-deco {
  width: 104%;
  margin-top: 32px;
  margin-left: -4%;
}
.cf__content-text {
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.2em;
  margin-left: 4%;
}
.cf__img {
  flex: 1;
}
.cf__img img {
  display: block;
  border-radius: 20px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, .44);
}
.cf__link {
  text-align: center;
  margin: 64px auto 0;
}
.cf__link a { margin-bottom: 8px;}
.cf__thanks {
  max-width: var(--content-width-narrow);
  background-image: url(../img/frame-top.png), url(../img/frame-bottom.png);
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%;
  background-position: top left, bottom left;
  text-align: center;
  padding: 40px;
  margin: 64px auto 0;
}
.cf__thanks-head {
  max-width: max-content;
  font-size: 2rem;
  font-weight: var(--bold);
  border-bottom: 2px solid #C0A202;
  padding: 8px 64px;
  margin: 0 auto 16px;
}
.cf__thanks-text {
  font-size: 1.25rem;
  margin-bottom: 1em;
}
.cf__thanks-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1em;
  font-size: 1.5rem;
  margin: 40px 0;
}
/* cf end */

/* shop */
.shop__box {
  border-radius: 20px;
  padding: 64px 5%;
}
.shop__box--online {
  background-color: #F0F6F6;
}
.shop__box--real {
  background-color: var(--white);
  margin-top: 40px;
}
.shop__head {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 640px;
  height: 60px;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: var(--bold);
  line-height: 60px;
  text-align: center;
  margin: 0 auto 24px;
}
.shop__head::before,
.shop__head::after {
  content: "";
  display: block;
  width: 40px;
  height: 60px;
  mask-size: contain;
}
.shop__box--online .shop__head::before { mask-image: url(../img/title-deco-l.svg);  background-color: #629D9D;}
.shop__box--online .shop__head::after { mask-image: url(../img/title-deco-r.svg);  background-color: #629D9D;}
.shop__box--real .shop__head::before { mask-image: url(../img/title-deco-l.svg);  background-color: #88924E;}
.shop__box--real .shop__head::after { mask-image: url(../img/title-deco-r.svg);  background-color: #88924E;}
.shop__head-inner {
  width: calc(100% - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 32px;
}
.shop__head-inner::before {
  content: "";
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
}
.shop__box--online .shop__head-inner { background-color: #629D9D;}
.shop__box--online .shop__head-inner::before { background-image: url(../img/icon-cart.png);}
.shop__box--real .shop__head-inner { background-color: #88924E;}
.shop__box--real .shop__head-inner::before { background-image: url(../img/icon-shop.png);}
.shop__head-text {
  font-size: 1.5rem;
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: 40px;
}
.shop__link {
  text-align: center;
}
.shop__link::before {
  content: "";
  display: block;
  max-width: 830px;
  aspect-ratio: 1245 / 563;
  background: url(../img/online-shop.png) no-repeat;
  background-size: contain;
  margin: 0 auto 40px;
}
.shop__link .c-btn--online { display: block; max-width: 640px; margin: auto;}
.shop__link .c-btn--online::before { content: none;}
.shop__content-head {
  background-color: #CED895;
  font-size: 1.5rem;
  font-weight: var(--bold);
  text-align: center;
  letter-spacing: 0.1em;
  padding: 4px 1em;
}
.shop__content-head::before { content: "- ";}
.shop__content-head::after { content: " -";}
.shop__content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
}
.shop__content-list li {
  padding: 8px 0;
  border-bottom: 2px dotted #CED895;
}
.shop__content-list a {
  display: block;
  padding: 8px 16px 0;
}
.shop__content-list a:hover {
  background-color: #F0F6F6;
}
.shop__content-list .name {
  display: block;
  font-size: 1.25rem;
  font-weight: var(--bold);
  padding-left: 28px;
  position: relative;
}
.shop__content-list .name::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/icon-map.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.shop__content-list .map {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 8px;
  font-size: 0.875rem;
  color: #88924E;
  text-decoration: underline;
  margin-top: 4px;
}
.shop__content-list .map::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon-link.png) no-repeat;
  background-size: contain;

}
.shop__content-list li:nth-child(odd) { margin-right: -1px;}
.shop__content-list li:nth-child(even) { margin-left: -1px;}
.shop__content-list li:nth-child(odd) a { border-right: 2px dotted #CED895;}
.shop__content-list li:nth-child(even) a { border-left: 2px dotted #CED895;}
.shop__content-text { text-align: center;}
/* shop end */

/* about */
.about {
  background-color: var(--white);
}
.about__bg { margin: 2vw 0; position: relative;}
.about__bg::before,
.about__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 2vw;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
}
.about__bg::before { background-image: url(../img/bg-wave-top.png); background-position-y: bottom; top: -2vw;}
.about__bg::after { background-image: url(../img/bg-wave-bottom.png); background-position-y: top; bottom: -2vw;}
.about__head::after {
  content: "";
  display: block;
  aspect-ratio: 1200 / 520;
  background: url(../img/about.png) no-repeat;
  background-size: contain;
  margin-top: 40px;
}
.about__content {
  max-width: var(--content-width-narrow);
  margin: auto;
}
.about__content-head {
  color: #546F41;
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 16px;
}
.about__content-text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.1em;
  padding: 0 5%;
}
/* about end */

/* link */
.link__web-box,
.link__sns-box {
  max-width: var(--content-width-narrow);
  margin: 24px auto 0;
}
.link__web-item {
  padding: 16px 0;
  position: relative;
}
.link__web-item::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 4px solid var(--text);
  border-right: 4px solid var(--text);
  transform: rotate(45deg);
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  margin: auto;
}
.link__web-item + .link__web-item { border-top: 1px solid #707070;}
.link__web-item a {
  display: flex;
  align-items: center;
  column-gap: 5%;
}
.link__web-item a:hover {
  background-color: rgba(254, 241, 0, .4);
}
.link__web-item-logo {
  width: 28%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 10px;
  padding: 16px;
}
.link__web-item-logo img {
  height: 100%;
  object-fit: contain;
}
.link__web-item-text {
  width: 67%;
  font-size: 1.75rem;
  font-weight: var(--bold);
  letter-spacing: 0.15em;
}
.link__web-item-text small {
  font-size: 80%;
}
.link__sns-head {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  width: 100%;
  font-size: 1.75rem;
  font-weight: var(--bold);
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}
.link__sns-head::before,
.link__sns-head::after {
  content: "";
  display: block;
  flex-grow: 1;
  height: 1px;
  background-color: var(--text);
} 
.link__sns-list {
  display: flex;
}
.link__sns-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.link__sns-item + .link__sns-item {
  border-left: 1px solid var(--text);
}
.link__sns-item a {
  display: block;
  padding: 4px 8px 40px;
}
.link__sns-item a:hover {
  background-color: rgba(254, 241, 0, .4);
}
.link__sns-item a::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto 24px;
}
.link__sns-item.instagram a::before { background-image: url(../img/sns-instagram.png);}
.link__sns-item.threads a::before { background-image: url(../img/sns-threads.png);}
.link__sns-item.line a::before { background-image: url(../img/sns-line.png);}
.link__sns-item p:first-child {
  font-size: 1.25rem;
  font-weight: var(--bold);
  margin-bottom: 8px;
}
/* link end */

/* footer */
.footer {
  padding: 24px 5%;
}
.footer__copy {
  font-size: 0.875rem;
  text-align: center;
}
/* footer end */

/* sp-menu */
  .sp-menu {
    display: block;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: var(--main);
    border: 1px solid #000;
    border-radius: 2px;
    position: relative;
  }
  .sp-menu-bar,
  .sp-menu-bar::before,
  .sp-menu-bar::after {
    width: 20px;
    height: 1px;
    background-color: #000;
    border-radius: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform .3s;
  }
  .sp-menu-bar::before { content: ""; margin-bottom: 6px;}
  .sp-menu-bar::after { content: ""; margin-top: 6px;}
  .active .sp-menu-bar { height: 0;}
  .active .sp-menu-bar::before { transform: rotate(45deg); margin-bottom: -1px;}
  .active .sp-menu-bar::after {transform: rotate(-45deg); margin-top: 0;}
/* sp-menu end */

@media (min-width: 1024px) {
  .l-view-sp { display: none;}
}
@media (max-width: 1023px) {
  html { scroll-padding-top: var(--header-height-sp);}
  body.active { height: 100vh; overflow: hidden;}
  small { font-size: 0.875rem;}
  .l-inner { max-width: 600px;}
  .l-view-pc { display: none;}
  .l-section { padding: var(--space-section-sp) 0;}
  .c-section-title { max-width: 200px; margin-bottom: 24px;}
  .c-section-text { font-size: 1.25rem; margin-bottom: 32px;}
  .c-btn { font-size: 1rem; padding: 12px 64px;}
  .c-btn::before { left: 24px;}
  .c-btn::after { right: 24px;}
  .c-line-deco { height: 2px; margin: 8px 0;}
  .c-line-deco::before, .c-line-deco::after { width: 16px; height: 15px;}
  .header { height: var(--header-height-sp); position: fixed; background-color: var(--white);}
  .header__nav-list {
    width: 100%;
    height: calc(100vh - var(--header-height-sp));
    background-color: rgba(254, 241, 0, .8);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: absolute;
    left: 0;
    top: var(--header-height-sp);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s;
    overflow-y: auto;
  }
  .header__nav-list.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header__nav-list::before {
    content: "Site MENU";
    display: block;
    text-align: center;
    border-bottom: 1px solid;
    padding-bottom: 4px;
    margin-bottom: 16px;
  }
  .header__nav-item {
    width: 80%;
    background-color: var(--white);
    text-align: center;
    margin: 0 auto;
  }
  .header__nav-item a { padding: 12px 24px;}
  .header__nav-item:first-of-type a { padding-top: 40px;}
  .header__nav-item:last-of-type a { padding-bottom: 40px;}
  .header__nav-item:first-of-type { border-radius: 4px 4px 0 0;}
  .header__nav-item:last-of-type { border-radius: 0 0 4px 4px; position: relative;}
  .header__nav-item:last-of-type::after {
    content: "";
    width: 64px;
    height: 64px;
    background: url(../img/cook-deco-lemon2.png) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: -2px;
  }
  .header__logo { column-gap: 8px;}
  .header__logo-img { width: 44px;}
  .header__logo-head { font-size: 1.125rem; letter-spacing: 0; margin-bottom: 0;}
  .header__logo-disc { display: none;}
  .fv {
    height: auto;
    min-height: 100vh;
    background-image: url(../img/fv-bg-sp.jpg);
    background-position: center center;
    padding-top: var(--header-height-sp);
    position: relative;
  }
  .fv__box { width: 100%; margin: 0;}
  .fv__img { width: 68%; margin: 8px auto;}
  .fv__link {
    width: 90%;
    max-width: 600px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    margin: auto;
  }
  .fv__link .c-btn + .c-btn { margin-top: 12px;}
  .fv__link .c-btn::before { left: 20px;}
  .fv__link .c-btn::after { right: 24px;}
  .intro { background-size: 200px; background-position: bottom center; padding: 40px 0 120px;}
  .intro::before, .intro::after { width: 32vw; max-width: 200px;}
  .intro::before { top: 4px; left: 4px;}
  .intro::after { top: 300px; bottom: auto; right: 4px;}
  .intro__box { flex-direction: column-reverse; padding: 0;}
  .intro__text-head { padding-left: 13%; margin-bottom: 16px;}
  .intro__text-head::after { max-width: 16%; background-position: bottom right; left: -4%; right: auto; bottom: 0;}
  .intro__text { width: 100%; font-size: max(3vw, 1rem);}
  .intro__text-head em { font-size: max(4.5vw, 1.5rem);}
  .intro__text-content { padding: 16px 2% 8px;}
  .intro__text-content em { font-size: max(3.75vw, 1.25rem);}
  .intro__img { width: 80%; max-width: 400px; padding-left: 4%; margin: 0 auto 40px;}
  .product__head { font-size: 1.25rem; margin-bottom: 32px;}
  .special__box { row-gap: 40px;}
  .special__item,
  .special__item:nth-child(even) { flex-direction: column-reverse;}
  .special__item::after { content: none;}
  .special__item-content { width: 100%;}
  .special__item-head { font-size: 1.25rem; padding-left: 0; padding-bottom: 8px; margin-bottom: 16px;}
  .special__item-text::before {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 675 / 450;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 8px;
  }
  .special__item:nth-of-type(1) .special__item-text::before { background-image: url(../img/special1.jpg);}
  .special__item:nth-of-type(2) .special__item-text::before { background-image: url(../img/special2.jpg);}
  .special__item:nth-of-type(3) .special__item-text::before { background-image: url(../img/special3.jpg);}
  .special__item-head em { font-size: 1.5rem;}
  .special__item-head::before { position: static; display: block; font-size: 3rem;}
  .special__item-text { font-size: 1rem; letter-spacing: 0.1em; padding: 0 2%;}
  .cook::before { width: 20vw; max-width: 120px; top: 160px; left: 5%;}
  .cook::after { width: 24vw; max-width: 160px; top: 240px; bottom: auto; right: 2%;}
  .cook__list { flex-direction: column; row-gap: 64px; margin-top: 40px;}
  .cook__item { width: 80%; max-width: 320px; font-size: 1.125rem; padding-left: 40px; margin: auto;}
  .cook__item::before { left: 0;}
  .cook__item::after { margin-left: -40px;}
  .cook__item .arrow {
    bottom: -40px;
    left: 0;
    right: 0;
    margin: auto;
    border-top: 24px solid #B3B4B5;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: none;
  }
  .special { padding: 40px 0; margin: 40px 4%;}
  .topping { padding: 0 0 40px;}
  .topping__inner { padding: 40px 4%;}
  .topping__head { margin-bottom: 32px;}
  .topping__head-head { font-size: 1.25rem;}
  .topping__head-deco { font-size: 1.5rem;}
  .topping__head-text { font-size: 1.125rem; margin-top: 24px;}
  .topping__box { flex-direction: column; row-gap: 16px;}
  .topping__item { box-shadow: 8px 8px 5px rgba(0, 0, 0, .16);}
  .topping__item-content { padding: 16px 5% 20px;}
  .topping__item-head { font-size: 1.125rem; word-break: auto-phrase;}
  .cf__content-head { font-size: 1.25rem; text-align: center; margin-bottom: 24px;}
  .cf__content-head .c-line-deco { margin-top: 16px;}
  .cf__content-text { font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 24px;}
  .cf__box { display: block;}
  .cf__img { width: 92%; margin: auto;}
  .cf__img img { box-shadow: 6px 6px 6px rgba(0, 0, 0, .44);}
  .cf__link { margin-top: 40px;}
  .cf__thanks { margin-top: 40px; padding: 32px 4%;}
  .cf__thanks-head { font-size: 1.25rem; border-width: 1px; padding: 8px;}
  .cf__thanks p { font-size: 0.875rem;}
  .cf__thanks-list { grid-template-columns: 1fr; row-gap: 8px; font-size: 1.25rem; margin: 24px 0 0;}
  .shop__box { padding: 40px 5%;}
  .shop__head { height: 48px; font-size: 1.25rem; line-height: 48px;}
  .shop__head::before, .shop__head::after { width: 32px; height: 48px;}
  .shop__head-inner { column-gap: 8px;}
  .shop__head-inner::before { width: 20px; height: 20px;}
  .shop__head-text { font-size: 1.125rem; margin-bottom: 24px;}
  .shop__content-list { grid-template-columns: 1fr; margin-bottom: 24px;}
  .shop__content-list a { padding: 0 4px;}
  .shop__content-list li:nth-child(odd) a { border-right: none;}
  .shop__content-list li:nth-child(even) a { border-left: none;}
  .shop__content-head { font-size: 1.125rem;}
  .shop__content-list .name { font-size: 1rem;}
  .about__bg { margin: 5vw 0;}
  .about__bg::before { background-image: url(../img/bg-wave-top-sp.png); height: 5vw; top: -5vw;}
  .about__bg::after { background-image: url(../img/bg-wave-bottom-sp.png); height: 5vw; bottom: -5vw;}
  .about__head::after { background-image: url(../img/about-sp.png); aspect-ratio: 1346 / 779;}
  .about__content-head { font-size: 1.5rem; letter-spacing: 0.08em;}
  .about__content-text { font-size: 1.125rem; letter-spacing: 0.05em;}
  .link__web-item::after { content: none;}
  .link__web-item:first-of-type { padding-top: 0;} 
  .link__web-item a { flex-direction: column; row-gap: 8px;}
  .link__web-item-logo { width: 100%; height: 120px;}
  .link__web-item-text { width: 100%; font-size: 1.125rem; letter-spacing: 0.05em; text-align: center;}
  .link__sns-head { column-gap: 1rem; font-size: 1.25rem; letter-spacing: 0.05em; margin-bottom: 24px;}
  .link__sns-item { padding: 0;}
  .link__sns-item a { padding-bottom: 8px;}
  .link__sns-item a::before { width: 40px; height: 40px;}
  .link__sns-item p:first-child { font-size: 1rem;}
  .link__sns-item p:last-child { font-size: 0.75rem;}
  .footer__copy { font-size: 0.75rem;}
}