@charset "UTF-8";
/* --------------------------------------------------
   SP／PCのサイズ感を揃えるための設定

   見出し類は clamp(最小, ○vw, 最大) で SP→PC に約1.6〜1.8倍に拡大されるが、
   本文の px 直指定は拡大されないため、PCで本文だけ極端に小さく見えていた。
   fluid() は指定値（SPカンプ値）をそのまま維持したうえで、
   既存の見出しと同じ区間で $pcScale 倍まで滑らかに拡大する。

   ★ PC全体の文字の大きさは $pcScale の数値だけで調整できます
      1.4 = 控えめ ／ 1.6 = 標準 ／ 1.8 = SPカンプの比率に完全一致
-------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/*/////////////////////////////
共通装飾クラス
/////////////////////////////*/
/*/////////////////////////////
リセットCSS
/////////////////////////////*/
*, *::before, *::after {
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

/*
=====================================================
よく使用するクラス等
=====================================================
*/
a {
  text-decoration: none;
  color: #333333;
}

a:hover {
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a img:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.clear {
  clear: both;
  line-height: 0px;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
  overflow: hidden;
  zoom: 1;
  /*for IE 5.5-7*/
}

/* Hides from IE-mac \*/
.clearfix {
  display: block;
}

/* End hide from IE-mac */
.img_left {
  float: left;
  margin-right: 45px;
  margin-bottom: 15px;
}

.img_right {
  float: right;
  margin-left: 45px;
  margin-bottom: 20px;
}

.img_fit {
  width: 100%;
  height: auto;
}

.txt_right {
  text-align: right;
}

.txt_left {
  text-align: left;
}

.txt_center {
  text-align: center;
}

.v_align_bottom {
  vertical-align: bottom;
}

.mb_5 {
  margin-bottom: 5px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.mb_15 {
  margin-bottom: 15px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.mb_25 {
  margin-bottom: 25px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.mb_35 {
  margin-bottom: 35px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.mb_80 {
  margin-bottom: 80px !important;
}

.mb_100 {
  margin-bottom: 100px !important;
}

.mb_150 {
  margin-bottom: 150px !important;
}

.mb_200 {
  margin-bottom: 200px !important;
}

.mt_5 {
  margin-top: 5px !important;
}

.mt_10 {
  margin-top: 10px !important;
}

.mt_15 {
  margin-top: 15px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mt_25 {
  margin-top: 25px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mt_75 {
  margin-top: 75px !important;
}

.mt_100 {
  margin-top: 100px !important;
}

.mr_0 {
  margin-right: 0px !important;
}

.mr_10 {
  margin-right: 10px !important;
}

.mr_15 {
  margin-right: 15px !important;
}

.mr_20 {
  margin-right: 20px !important;
}

.mr_30 {
  margin-right: 30px !important;
}

.mr_50 {
  margin-right: 50px !important;
}

.pl_10 {
  padding-left: 10px !important;
}

.pl_20 {
  padding-left: 20px !important;
}

.pl_30 {
  padding-left: 30px !important;
}

.pl_50 {
  padding-left: 50px !important;
}

.pl_75 {
  padding-left: 75px !important;
}

.pl_100 {
  padding-left: 100px !important;
}

.font_sss {
  font-size: 8px;
}

.font_ss {
  font-size: 10px;
}

.font_s {
  font-size: 13px;
}

.font_m {
  font-size: 15px;
}

.font_l {
  font-size: 18px;
}

.font_ll {
  font-size: 20px;
}

.font_3l {
  font-size: 25px;
}

.font_4l {
  font-size: 30px;
}

.font_5l {
  font-size: 50px;
}

.font_it {
  font-family: Helvetica, Arial, sans-serif;
  font-style: italic;
}

.font_cap {
  font-size: 10px;
  line-height: 1.3;
  margin-top: 20px;
}

.ptop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 11;
}

.ptop img {
  filter: Alpha(Opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

.ptop img:hover {
  filter: Alpha(Opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  cursor: pointer;
}

#fb-root {
  display: none;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .ptop {
    bottom: 2%;
    right: 2%;
    z-index: 9999;
  }
  .pic100p {
    width: 100%;
  }
  .pic90p {
    width: 90%;
  }
  .pic80p {
    width: 80%;
  }
  .pic70p {
    width: 70%;
  }
  .pic60p {
    width: 60%;
  }
  .pic50p {
    width: 50%;
  }
  .pic40p {
    width: 40%;
  }
  .pic30p {
    width: 30%;
  }
  .pic20p {
    width: 20%;
  }
  .pic10p {
    width: 10%;
  }
}
html {
  background: #1C1510;
}

body {
  min-width: 320px;
  color: #211914;
  background: #1C1510;
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-loading {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  background: #eee8de;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.is-loaded .loading-screen {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-screen__content {
  width: min(42vw, 190px);
  text-align: center;
}
.loading-screen__content img {
  display: block;
  width: 100%;
  animation: loading-logo 1.2s ease-in-out infinite alternate;
}
.loading-screen__content span {
  position: relative;
  display: block;
  width: 72%;
  height: 2px;
  margin: 20px auto 0;
  overflow: hidden;
  background: rgba(74, 39, 19, 0.16);
}
.loading-screen__content span::after {
  position: absolute;
  inset: 0;
  background: #c93628;
  content: "";
  transform: translateX(-100%);
  animation: loading-line 1.1s ease-in-out infinite;
}

@keyframes loading-logo {
  from {
    opacity: 0.55;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(-2px);
  }
}
@keyframes loading-line {
  0% {
    transform: translateX(-100%);
  }
  55%, 100% {
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .loading-screen__content img,
  .loading-screen__content span::after {
    animation: none;
  }
  .hero .swiper-slide img {
    transform: none !important;
    transition: none !important;
  }
}
main,
.site-header,
.site-footer {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: clamp(66px, 16.2vw, 130px);
  background: #eee8de;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 4.8%;
}

.site-logo {
  width: 42%;
  max-width: 222px;
}
.site-logo img {
  display: block;
  width: 100%;
}

.buy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6%;
  width: 43.5%;
  min-height: 58%;
  padding: 0 4%;
  border-radius: 5px;
  color: #fff;
  background: #c93628;
  box-shadow: 0 3px 8px rgba(74, 40, 28, 0.28);
  font-size: clamp(12px, 2.6vw, 21px);
  font-weight: 800;
  white-space: nowrap;
}
.buy-button:hover {
  text-decoration: none;
  opacity: 0.88;
}
.buy-button svg {
  width: 12%;
  min-width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.hero {
  position: relative;
  height: calc(100vh - clamp(66px, 16.2vw, 130px));
  height: calc(100svh - clamp(66px, 16.2vw, 130px));
  overflow: hidden;
  color: #fff;
  background: #35261f;
}
.hero .kv-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero .swiper-wrapper,
.hero .swiper-slide {
  height: 100%;
}
.hero .swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.hero .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.hero .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 5.2s ease-out;
  will-change: transform;
}
.hero .swiper-slide-active img {
  transform: scale(1.08);
}
.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 7% 7.2% 5%;
}
.hero__summer {
  width: 28%;
  max-width: 144px;
}
.hero__copy {
  position: absolute;
  right: 7.2%;
  bottom: 0;
  left: 7.2%;
  isolation: isolate;
}
.hero__copy::before {
  position: absolute;
  z-index: -1;
  top: -24%;
  bottom: -8%;
  left: 50%;
  width: 100vw;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.22) 18%, rgba(0, 0, 0, 0.68) 52%, rgba(0, 0, 0, 0.9) 100%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}
.hero__lead {
  margin: 3% 0 1.2%;
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.01em;
}
.hero__lead em {
  color: #e9a43c;
  font-style: normal;
}
.hero h1 img {
  display: block;
  width: 100%;
  filter: brightness(0) invert(1);
}
.hero__sauce {
  display: flex;
  align-items: flex-end;
  /* justify-content: flex-end; */
  min-height: 13vw;
  margin-top: 2%;
  position: relative;
}
.hero__sauce p {
  font-size: clamp(9px, 1.9vw, 15px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: clamp(10px, 1.88vw + 1px, 16px);
  margin-left: 15%;
}
.hero__sauce img {
  position: absolute;
  right: -2%;
  bottom: -12%;
  width: 42%;
}

.release {
  display: flex;
  align-items: center;
  gap: 2.5%;
  line-height: 1;
}
.release strong {
  padding: 1.8% 4%;
  border-radius: 7px;
  background: #d6382a;
  font-size: clamp(12px, 2.65vw, 21px);
  letter-spacing: 0.35em;
  text-indent: 0.35em;
}
.release span {
  font-size: clamp(8px, 1.9vw, 15px);
  font-weight: 800;
  letter-spacing: 0.25em;
}

.process {
  background: #f7f3e9 url("../img/bg_texture.jpg") center top/100% auto repeat-y;
}

.section-intro {
  padding: 19% 4% 13%;
}
.section-intro h2 {
  margin-top: 10%;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(25px, 5.4vw, 43px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.08em;
}
.section-intro__text {
  margin-top: 12%;
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  line-height: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 3%;
  color: #9e8e76;
  font-size: clamp(8px, 1.7vw, 14px);
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1;
}
.eyebrow::before {
  width: 12.5%;
  height: 2px;
  background: #c83a2c;
  content: "";
}
.eyebrow strong {
  color: #c83a2c;
}

.process__main-image {
  display: block;
  width: 100%;
  aspect-ratio: 804/540;
  object-fit: cover;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 9% 3% 11%;
}

.process-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 8% 5% 12%;
  border-bottom: 1px solid #ded5c5;
}
.process-card:nth-child(odd):not(.process-card--wide):not(.process-card--finish) {
  border-right: 1px solid #ded5c5;
}
.process-card__number {
  display: block;
  margin-bottom: 9%;
  color: #c9382a;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(31px, 6vw, 48px);
  line-height: 1;
}
.process-card p {
  flex: 1;
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  font-weight: 600;
  line-height: 2.2;
}
.process-card img {
  display: block;
  width: 100%;
  margin-top: 10%;
  aspect-ratio: 1;
  object-fit: cover;
}
.process-card--wide, .process-card--finish {
  grid-column: 1/-1;
}
.process-card--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
  padding-block: 9%;
}
.process-card--wide img {
  margin-top: 0;
}
.process-card--finish {
  padding: 10% 3.5% 7%;
  border-bottom: 0;
}
.process-card--finish .process-card__number {
  margin-bottom: 6%;
}
.process-card--finish img {
  aspect-ratio: 740/560;
  margin-top: 8%;
}

.ingredient {
  overflow: hidden;
  color: #f3eee5;
  background: #17100d url("../img/bg_tako.jpg") right top/52% auto no-repeat;
}
.ingredient__inner {
  padding: 14% 4% 11%;
}
.ingredient .eyebrow {
  margin-left: -4.3%;
}
.ingredient .eyebrow::before {
  background: #dca248;
}
.ingredient .eyebrow strong {
  color: #dca248;
}
.ingredient h2 {
  margin: 13% 0 12%;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(28px, 5.4vw, 44px);
  line-height: 1.75;
  letter-spacing: 0.08em;
}
.ingredient p {
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  line-height: 2.05;
}
.ingredient h3 {
  margin: 11% 0 8%;
  padding-left: 5%;
  border-left: 4px solid #d53b2f;
  color: #dfa644;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(19px, 3.9vw, 31px);
  line-height: 1.65;
}
.ingredient__harbor {
  display: block;
  width: 100%;
  margin-bottom: 10%;
}
.ingredient__octopus {
  position: relative;
}
.ingredient__octopus > img {
  display: block;
  width: 100%;
}
.ingredient__octopus > p {
  position: absolute;
  top: -11%;
  right: 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: #cb3829;
  line-height: 1;
  transform: rotate(-8deg);
}
.ingredient__octopus small {
  font-size: clamp(11px, 2.5vw, 20px);
  font-weight: 700;
}
.ingredient__octopus strong {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(50px, 12vw, 96px);
  font-weight: 500;
}
.ingredient__octopus em {
  font-size: 0.5em;
  font-style: normal;
}

.story {
  position: relative;
  min-height: min(275vw, 1630px);
  overflow: hidden;
  padding: 18% 4% 0;
  background: #efe5d1;
}
.story .eyebrow {
  margin-left: -4.3%;
}
.story__heading {
  position: relative;
  z-index: 1;
  margin: 14% 0 8%;
}
.story__heading::after {
  position: absolute;
  z-index: -1;
  top: -33%;
  right: 3%;
  color: #ded2bc;
  font-family: Georgia, serif;
  font-size: clamp(76px, 19vw, 152px);
  font-weight: 700;
  line-height: 1;
  content: "”";
}
.story__heading p {
  margin-bottom: 2%;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(14px, 3.3vw, 26px);
  font-weight: 600;
}
.story__heading h2 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px, 5.8vw, 46px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
.story__message {
  position: relative;
  z-index: 2;
  padding: 6% 5.5% 7%;
  padding-bottom: clamp(50px, 9.38vw + 5px, 80px);
  background: rgba(255, 253, 247, 0.72);
}
.story__message p {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  font-weight: 600;
  line-height: 2.15;
}
.story__profile {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 4%;
  width: 46%;
  color: #8e7f69;
}
.story__profile p {
  padding-bottom: 4%;
  border-bottom: 1px solid #d8cdbb;
  font-size: clamp(10px, 2.5vw, 20px);
  font-weight: 600;
  line-height: 1.7;
}
.story__profile strong {
  display: block;
  margin-top: 4%;
  color: #33271f;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 4.1vw, 33px);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.story__person {
  position: absolute;
  z-index: 3;
  right: -2%;
  bottom: 0;
  width: 64%;
  max-width: 384px;
}

.scene {
  padding: 18% 4% 22%;
  background: #f7f3e9 url("../img/bg_texture.jpg") center top/100% auto repeat-y;
}
.scene .eyebrow {
  margin-left: -4.3%;
}
.scene > h2 {
  margin: 12% 0 13%;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(25px, 5.8vw, 46px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.scene-list {
  display: grid;
  gap: clamp(32px, 10vw, 80px);
}

.scene-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(72vw, 648px);
  overflow: hidden;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 2px 10px rgba(77, 57, 38, 0.04);
}
.scene-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scene-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10% 11%;
}
.scene-card__body span {
  color: #cb3b30;
  font-size: clamp(8px, 1.9vw, 15px);
  font-weight: 800;
  letter-spacing: 0.24em;
}
.scene-card__body h3 {
  margin: 7% 0 12%;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(19px, 4.3vw, 34px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.05em;
}
.scene-card__body p {
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  font-weight: 500;
  line-height: 1.85;
}

.arrange {
  background: #fff;
}
.arrange__visual {
  display: block;
  width: 100%;
}
.arrange__intro {
  padding: 7% 4% 10%;
}
.arrange__intro h2 {
  margin: 7% 0 6%;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 5.4vw, 43px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
.arrange__intro > p {
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  line-height: 2.05;
}
.arrange__session {
  margin-top: 8%;
}
.arrange__session img {
  display: block;
  width: 100%;
  margin-bottom: clamp(20px, 3.75vw + 2px, 32px);
}
.arrange__session figcaption {
  padding: 3.5% 4%;
  border-top: 0;
  border-radius: 5px;
  color: #6f6254;
  background: #f5f0e6;
  font-size: clamp(11px, 2.15vw, 17px);
  line-height: 1.75;
}
.arrange__session figcaption a {
  display: inline-block;
  margin-top: 1.5%;
  color: #c53a30;
  font-weight: 700;
}

.arrange-feature {
  display: flex;
  align-items: flex-end;
  gap: 3%;
  width: 100%;
  margin-left: -4.3%;
  padding: 0 3% 2.5% 4.3%;
  border-bottom: 1px solid #c83a2c;
}
.arrange-feature span {
  color: #9e8e76;
  font-size: clamp(7px, 1.65vw, 13px);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.2em;
}
.arrange-feature strong {
  color: #c83a2c;
  font-size: clamp(8px, 1.8vw, 14px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.12em;
}

.arrange-list {
  display: grid;
  gap: 0;
  padding: 0 4% 16%;
}

.arrange-card {
  padding: 0 0 10%;
  border-bottom: 1px solid #e2d8c8;
}
.arrange-card:last-child {
  border-bottom: none;
}
.arrange-card + .arrange-card {
  padding-top: 10%;
}
.arrange-card__image {
  position: relative;
}
.arrange-card__image::after {
  position: absolute;
  top: 6.3%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32.5%;
  height: 13.7%;
  border-radius: 0 7px 7px 0;
  color: #fff;
  background: #c83a2d;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(15px, 4vw, 35px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  content: attr(data-label);
}
.arrange-card__image > img {
  display: block;
  width: 100%;
  border-radius: 7px;
}
.arrange-card__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25%;
  gap: 5%;
  min-height: min(67vw, 536px);
  padding: 7% 2% 3%;
}
.arrange-card__text h3 {
  margin-bottom: 9%;
  padding-left: 4%;
  border-left: 3px solid #c9362b;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 4vw, 32px);
  font-weight: 600;
  line-height: 1.5;
}
.arrange-card__text p {
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  line-height: 2;
}
.arrange-card__voice {
  align-self: end;
  text-align: center;
}
.arrange-card__voice img {
  display: block;
  width: 100%;
  border-radius: 50%;
}
.arrange-card__voice figcaption {
  margin-top: 8%;
  color: #7f7160;
  font-size: clamp(10px, 1.88vw + 1px, 16px);
  line-height: 1.55;
}
.arrange-card__voice figcaption strong {
  color: #342a22;
  font-weight: 600;
  font-size: clamp(12px, 2.19vw + 1.5px, 19px);
}

.spec {
  background: #f7f3e9 url("../img/bg_texture.jpg") center top/100% auto repeat-y;
}
.spec__visual-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 804/610;
  overflow: hidden;
}
.spec__visual {
  position: absolute;
  inset: -5% 0;
  display: block;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 58%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.03);
  will-change: transform;
}
.spec__inner {
  padding: 11% 7% 8%;
}
.spec .eyebrow {
  gap: 4%;
  margin-left: -8%;
}
.spec .eyebrow::before {
  display: block;
  width: 13%;
}
.spec h2 {
  margin: 1% 0 7%;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(25px, 5.2vw, 42px);
  font-weight: 600;
}
.spec__sauce {
  position: relative;
  min-height: min(78vw, 702px);
  padding-top: 10%;
}
.spec__sauce h3 {
  color: #c7392d;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 700;
}
.spec__sauce p {
  width: 100%;
  margin-top: 5%;
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  line-height: 1.8;
}
.spec__sauce img {
  position: absolute;
  right: 12%;
  bottom: 0;
  width: 68%;
}

.spec-list {
  border-top: 1px solid #d8cdbb;
}
.spec-list > div {
  display: grid;
  grid-template-columns: 37% 1fr;
  padding: 5% 1%;
  border-bottom: 1px solid #d8cdbb;
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  line-height: 1.7;
}
.spec-list dt {
  font-weight: 700;
}
.spec-list__nutrition dd {
  line-height: 1.9;
}
.spec-list__nutrition small {
  display: inline-block;
  margin-top: 3%;
  color: #776b5d;
  font-size: clamp(12px, 2.19vw + 1.5px, 19px);
}

.order {
  position: relative;
  min-height: min(144vw, 1566px);
  overflow: hidden;
  color: #fff;
  background: #18130f url("../img/bg_order.jpg") center/cover no-repeat;
  text-align: center;
}
.order::before {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
}
.order__inner {
  position: relative;
  z-index: 1;
  padding: 18% 8% 10%;
}
.order__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  color: #dda449;
  font-size: clamp(9px, 2vw, 16px);
  font-weight: 800;
  letter-spacing: 0.28em;
}
.order__label::before, .order__label::after {
  width: 13%;
  height: 1px;
  background: currentColor;
  content: "";
}
.order h2 {
  margin: 5% 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(27px, 6.2vw, 50px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
.order__inner > p:not(.order__label) {
  font-size: clamp(14px, 2.5vw + 2px, 22px);
  line-height: 1.9;
}
.order__buttons {
  display: grid;
  gap: clamp(20px, 3.75vw + 2px, 32px);
  width: 80%;
  margin: 10% auto 0;
}

.order-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(58px, 15vw, 120px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 7px;
  color: #fff;
  background: rgba(0, 0, 0, 0.56);
  font-size: clamp(13px, 3vw, 24px);
  font-weight: 700;
}
.order-button:hover {
  text-decoration: none;
  opacity: 0.86;
}
.order-button span {
  position: absolute;
  right: 6%;
  display: grid;
  place-items: center;
  width: 1.45em;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #28201a;
  background: #fff;
  font-size: 1em;
  line-height: 1;
}
.order-button--primary {
  border-color: #cb392d;
  background: #cb392d;
}
.order-button--primary span {
  color: #cb392d;
}

.site-footer {
  min-height: min(87vw, 783px);
  padding: 12% 5% 8%;
  color: #c9beac;
  background: #17120f;
  text-align: center;
}
.site-footer > img {
  width: 42%;
  filter: brightness(0) invert(1);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.88vw + 1px, 16px) 5%;
  margin: 8% 0 5%;
}
.site-footer a,
.site-footer > p {
  color: #a99d8b;
  font-size: clamp(13px, 2.5vw + 1px, 21px);
}
.site-footer small {
  display: block;
  margin-top: 8%;
  font-size: clamp(9px, 1.56vw + 1.5px, 14px);
  letter-spacing: 0.1em;
}

#pageTop {
  position: fixed;
  z-index: 90;
  right: max(12px, (100vw - 900px) / 2 + 12px);
  bottom: 16px;
  width: clamp(44px, 12vw, 58px);
}
#pageTop img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 900px) {
  body {
    box-shadow: 0 0 40px rgba(50, 35, 25, 0.13);
  }
  .hero {
    height: calc(100vh - 130px);
    height: calc(100svh - 130px);
  }
  .hero .swiper-slide img {
    object-position: center 47%;
  }
  .hero__sauce {
    min-height: 110px;
  }
  .section-intro {
    padding-top: 130px;
  }
  .process-list {
    padding-bottom: 80px;
  }
}

/*# sourceMappingURL=takoshu.css.map */
