@charset "UTF-8";
/*==================================================================
    style.css
===================================================================*/
:root {
  --s0: 0.5em;
  --s1: calc(var(--s0) * 1);
  --s2: calc(var(--s0) * 2);
  --s3: calc(var(--s0) * 3);
  --s4: calc(var(--s0) * 4);
  --s5: calc(var(--s0) * 5);
  --s6: calc(var(--s0) * 6);
  --s7: calc(var(--s0) * 7);
  --s8: calc(var(--s0) * 8);
  --s10: calc(var(--s0) * 10);
  --s13: calc(var(--s0) * 13);
  --s15: calc(var(--s0) * 15);
  --s19: calc(var(--s0) * 19);
  --s9: calc(var(--s0) * 9);
  --s11: calc(var(--s0) * 11);
  --s12: calc(var(--s0) * 12);
  --s14: calc(var(--s0) * 14);
}

:root {
  --spa: 15px;
}
@media screen and (max-width: 768px) {
  :root {
    --spa: calc(20 / 390 * 100vw);
  }
}

:root {
  --k: #111;
  --k2: #333;
  --k3: #555;
  --w: #fff;
  --g1: #f5f5f5;
  --g2: #ededed;
  --g3: #ccc;
  --g4: #aaa;
  --g5: #777;
  --g6: #666;
  --c1: #f5b720;
  --c2: #721b00;
  --c3: #fae88f;
  --c4: #f49f43;
  --c5: #b277e0;
  --c6: #e0c332;
  --cCaution: #e20c0c;
}

:root {
  --fzS: 1.4rem;
  --fz: 1.6rem;
  --fzM: 1.8rem;
  --fzL: 2rem;
}
@media screen and (max-width: 768px) {
  :root {
    --fzS: 1.3rem;
    --fz: 1.5rem;
    --fzM: 1.7rem;
    --fzL: 1.9rem;
  }
}

:root {
  --lhS: 1.4;
  --lh: 1.8;
  --lhL: 2.4;
}
@media screen and (max-width: 768px) {
  :root {
    --lhS: 1.4;
    --lh: 1.8;
    --lhL: 2.4;
  }
}

:root {
  --font1: "Tilt Warp", sans-serif;
  --font2: "Roboto", sans-serif;
}

:root {
  --bdrs1: 4px;
  --bdrs2: 6px;
  --opacity: 0.5;
  --bxs1: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  --bxs2: 0px -6px 0px -2px rgba(0, 0, 0, 0.2) inset;
  --txs1: 0px 0px 12px rgba(0, 0, 0, 0.6);
  --grd1: linear-gradient(135deg, #ffa84c 0%, #ff7b0d 100%);
}

:root {
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --linear: cubic-bezier(0, 0, 1, 1);
  --In: cubic-bezier(0.42, 0, 1, 1);
  --Out: cubic-bezier(0, 0, 0.58, 1);
  --InOut: cubic-bezier(0.42, 0, 0.58, 1);
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1);
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1);
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
  --easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1);
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --time: 200ms;
  --transition: all var(--time) var(--Out);
  --ease1: all var(--time) var(--ease);
  --ease2: all var(--time) cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease3: all var(--time) var(--easeInOutCubic);
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    reset
===================================================================*/
html {
  overflow-x: hidden;
  background: #fff;
  font-size: 62.5%;
}

body {
  min-width: 320px;
  word-wrap: break-word;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none;
}

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

fieldset {
  border: none;
}

address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul,
ol,
menu {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

abbr {
  border: none;
  font-variant: normal;
}

sub {
  vertical-align: text-bottom;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
object,
embed {
  max-width: 100%;
  height: auto;
}

object,
embed {
  height: 100%;
}

img {
  vertical-align: bottom;
}

strong {
  font-style: normal;
  font-weight: bold;
}

em {
  font-style: normal;
  font-weight: normal;
}

pre,
code,
kbd,
samp {
  font-family: monospace;
  line-height: 1;
}

/*  touch
---------------------------------------------*/
a,
img,
button,
input[type=button],
input[type=submit],
.touch-hover {
  -webkit-tap-highlight-color: transparent;
}

/*  box-sizing
---------------------------------------------*/
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

/*  table
---------------------------------------------*/
table {
  empty-cells: show;
  font-size: inherit;
}

/*  list
---------------------------------------------*/
li {
  list-style: none;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    utility
===================================================================*/
/* ------------------------------------------------------------------
  Visual utility
-------------------------------------------------------------------*/
/*  display
---------------------------------------------*/
.noDisplay {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

/* ======= display none ======= */
@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}
/*  position
---------------------------------------------*/
.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

/*  float
---------------------------------------------*/
.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.clear {
  clear: both !important;
}

/*  hover
---------------------------------------------*/
.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/*  .scrollWSp SP時に横幅からはみ出す要素(tableなど)に囲って使用
---------------------------------------------*/
@media screen and (max-width: 768px) {
  .scrollWSp {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
/* .firstload ※初回読み込み時のCSSトランジション防止
------------------------------------------------*/
.firstload {
  transition: 0s !important;
}

/* ------------------------------------------------------------------
  width utility
-------------------------------------------------------------------*/
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

/* ------------------------------------------------------------------
  BoxModel utility
-------------------------------------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

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

.ml0 {
  margin-left: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

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

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

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

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

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

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

.ml10 {
  margin-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

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

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

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

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

.ml15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

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

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

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

.ml20 {
  margin-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

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

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

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

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

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

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

.ml30 {
  margin-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

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

.mt35 {
  margin-top: 35px !important;
}

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

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

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

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

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

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

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

.ml50 {
  margin-left: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

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

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

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

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

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

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

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

/* ------------------------------------------------------------------
  Text utiity
-------------------------------------------------------------------*/
.bold {
  font-weight: bold !important;
}

.italic {
  font-style: italic !important;
}

.note {
  color: var(--g1);
  margin-left: 1em;
  text-indent: -1em;
}

.underline {
  text-decoration: underline !important;
}

.textNoLine {
  text-decoration: none !important;
}

/*  font-family
---------------------------------------------*/
.font1 {
  font-family: var(--font1) !important;
}

.font2 {
  font-family: var(--font2) !important;
}

/*  color
---------------------------------------------*/
.white {
  color: var(--w);
}

.black {
  color: var(--k);
}

.c-caution {
  color: var(--cCaution);
}

/*  align
---------------------------------------------*/
.middle {
  vertical-align: middle !important;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

/* font-size
---------------------------------------------*/
.fz {
  font-size: var(--fz);
}

.fz-s {
  font-size: var(--fzS);
  line-height: var(--lhS);
}

.fz-l {
  font-size: var(--fzL);
  line-height: var(--lhL);
}

.fz8 {
  font-size: 0.8rem !important;
}

.fz9 {
  font-size: 0.9rem !important;
}

.fz10 {
  font-size: 1rem !important;
}

.fz11 {
  font-size: 1.1rem !important;
}

.fz12 {
  font-size: 1.2rem !important;
}

.fz13 {
  font-size: 1.3rem !important;
}

.fz14 {
  font-size: 1.4rem !important;
}

.fz15 {
  font-size: 1.5rem !important;
}

.fz16 {
  font-size: 1.6rem !important;
}

.fz17 {
  font-size: 1.7rem !important;
}

.fz18 {
  font-size: 1.8rem !important;
}

.fz19 {
  font-size: 1.9rem !important;
}

.fz20 {
  font-size: 2rem !important;
}

.fz21 {
  font-size: 2.1rem !important;
}

.fz22 {
  font-size: 2.2rem !important;
}

.fz23 {
  font-size: 2.3rem !important;
}

.fz24 {
  font-size: 2.4rem !important;
}

.fz25 {
  font-size: 2.5rem !important;
}

.fz26 {
  font-size: 2.6rem !important;
}

.fz27 {
  font-size: 2.7rem !important;
}

.fz28 {
  font-size: 2.8rem !important;
}

.fz29 {
  font-size: 2.9rem !important;
}

.fz30 {
  font-size: 3rem !important;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    general
===================================================================*/
/* -----------------------------------------------
    font
------------------------------------------------*/
body {
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    layout
===================================================================*/
/*  container
---------------------------------------------*/
.container {
  width: 100%;
  max-width: 1030px;
  padding-right: var(--spa);
  padding-left: var(--spa);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .container {
    max-width: auto;
  }
}
.container.-large {
  max-width: 1310px;
}
@media screen and (max-width: 768px) {
  .container.-large {
    max-width: auto;
  }
}
@media screen and (min-width: 1501px) {
  .container.-large {
    max-width: 1430px;
  }
}
.container.-small {
  max-width: 990px;
}
@media screen and (max-width: 768px) {
  .container.-small {
    max-width: auto;
  }
}
.container.-min {
  max-width: 930px;
}
@media screen and (max-width: 768px) {
  .container.-min {
    max-width: auto;
  }
}
.container.-fluid {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.container--fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    headline
===================================================================*/
/*==================================================================
    .h01
===================================================================*/
.h01 {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  font-size: 3rem;
  line-height: normal;
  font-weight: 700;
  font-family: var(--font1);
  color: #d9301a;
}
.h01 span {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 0.8em;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .h01 span {
    font-size: 1.8rem;
  }
}
.h01 span::before, .h01 span::after {
  flex-shrink: 0;
  display: block;
  content: "";
  width: 12px;
  height: 19px;
  background-image: url(/kikkoman/honmirin-series/img/honmirin-series_Ic10.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.h01 span::after {
  transform: scaleX(-1);
}
.h01.-w {
  font-size: 4.5rem;
  color: #e9d1a0;
}
@media screen and (max-width: 768px) {
  .h01.-w {
    font-size: 3.5rem;
  }
}
.h01.-w span {
  color: var(--w);
}
.h01.-w span::before, .h01.-w span::after {
  background-image: url(/kikkoman/honmirin-series/img/honmirin-series_Ic14.svg);
}

/*==================================================================
    .h02
===================================================================*/
.h02 {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  font-size: 2.4rem;
  line-height: normal;
  font-weight: 700;
  font-family: var(--font1);
  color: #d9301a;
  margin-bottom: 0.9em;
}
@media screen and (max-width: 768px) {
  .h02 {
    font-size: 2.3rem;
    margin-bottom: 0.5em;
  }
}
.h02::after {
  display: block;
  content: "";
  width: 18px;
  height: 4px;
  background-color: #d9301a;
  margin-top: 0.9em;
}
@media screen and (max-width: 768px) {
  .h02::after {
    margin-bottom: 0.5em;
  }
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    btn
===================================================================*/
/*==================================================================
    .btn01
===================================================================*/
.btn01 {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--w) !important;
  border-radius: 99px;
  background-color: var(--c1);
  background-image: url(../../img/menmi_Ic06.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 5.6%;
}
@media screen and (max-width: 768px) {
  .btn01 {
    height: 50px;
    font-size: 1.6rem;
  }
}
.btn01.-b {
  color: var(--c1) !important;
  background-color: var(--w);
  background-image: url(../../img/menmi_Ic07.svg);
}
.btn01.-o {
  color: var(--c2) !important;
  background-color: var(--w);
  background-image: url(../../img/menmi_Ic08.svg);
}
.btn01:hover {
  opacity: 0.6;
  background-position: top 50% right 4.6%;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    animation
===================================================================*/
/*  setting
---------------------------------------------*/
.animate {
  visibility: hidden;
  transition: var(--transition);
  animation-duration: var(--time);
  animation-fill-mode: both;
}

.animate.-animated {
  visibility: visible;
}

.aInfinite {
  animation-iteration-count: infinite;
}

.aEx {
  transform: translate3d(0, 0, 0);
}

/*  duration
---------------------------------------------*/
.-a0 {
  animation-duration: 0s;
  animation-fill-mode: both;
}

.-a1 {
  animation-duration: 0.1s;
  animation-fill-mode: both;
}

.-a2 {
  animation-duration: 0.2s;
  animation-fill-mode: both;
}

.-a3 {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.-a4 {
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

.-a5 {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.-a6 {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.-a7 {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.-a8 {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.-a9 {
  animation-duration: 0.9s;
  animation-fill-mode: both;
}

.-a10 {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.-a11 {
  animation-duration: 1.1s;
  animation-fill-mode: both;
}

.-a12 {
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

.-a13 {
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.-a14 {
  animation-duration: 1.4s;
  animation-fill-mode: both;
}

.-a15 {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.-a16 {
  animation-duration: 1.6s;
  animation-fill-mode: both;
}

.-a17 {
  animation-duration: 1.7s;
  animation-fill-mode: both;
}

.-a18 {
  animation-duration: 1.8s;
  animation-fill-mode: both;
}

.-a19 {
  animation-duration: 1.9s;
  animation-fill-mode: both;
}

.-a20 {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.-a21 {
  animation-duration: 2.1s;
  animation-fill-mode: both;
}

.-a22 {
  animation-duration: 2.2s;
  animation-fill-mode: both;
}

.-a23 {
  animation-duration: 2.3s;
  animation-fill-mode: both;
}

.-a24 {
  animation-duration: 2.4s;
  animation-fill-mode: both;
}

.-a25 {
  animation-duration: 2.5s;
  animation-fill-mode: both;
}

.-a26 {
  animation-duration: 2.6s;
  animation-fill-mode: both;
}

.-a27 {
  animation-duration: 2.7s;
  animation-fill-mode: both;
}

.-a28 {
  animation-duration: 2.8s;
  animation-fill-mode: both;
}

.-a29 {
  animation-duration: 2.9s;
  animation-fill-mode: both;
}

.-a30 {
  animation-duration: 3s;
  animation-fill-mode: both;
}

.-a31 {
  animation-duration: 3.1s;
  animation-fill-mode: both;
}

.-a32 {
  animation-duration: 3.2s;
  animation-fill-mode: both;
}

.-a33 {
  animation-duration: 3.3s;
  animation-fill-mode: both;
}

.-a34 {
  animation-duration: 3.4s;
  animation-fill-mode: both;
}

.-a35 {
  animation-duration: 3.5s;
  animation-fill-mode: both;
}

.-a36 {
  animation-duration: 3.6s;
  animation-fill-mode: both;
}

.-a37 {
  animation-duration: 3.7s;
  animation-fill-mode: both;
}

.-a38 {
  animation-duration: 3.8s;
  animation-fill-mode: both;
}

.-a39 {
  animation-duration: 3.9s;
  animation-fill-mode: both;
}

.-a40 {
  animation-duration: 4s;
  animation-fill-mode: both;
}

.-a41 {
  animation-duration: 4.1s;
  animation-fill-mode: both;
}

.-a42 {
  animation-duration: 4.2s;
  animation-fill-mode: both;
}

.-a43 {
  animation-duration: 4.3s;
  animation-fill-mode: both;
}

.-a44 {
  animation-duration: 4.4s;
  animation-fill-mode: both;
}

.-a45 {
  animation-duration: 4.5s;
  animation-fill-mode: both;
}

.-a46 {
  animation-duration: 4.6s;
  animation-fill-mode: both;
}

.-a47 {
  animation-duration: 4.7s;
  animation-fill-mode: both;
}

.-a48 {
  animation-duration: 4.8s;
  animation-fill-mode: both;
}

.-a49 {
  animation-duration: 4.9s;
  animation-fill-mode: both;
}

.-a50 {
  animation-duration: 5s;
  animation-fill-mode: both;
}

/*  delay
---------------------------------------------*/
.-ad0 {
  animation-delay: 0s;
}

.-ad1 {
  animation-delay: 0.1s;
}

.-ad2 {
  animation-delay: 0.2s;
}

.-ad3 {
  animation-delay: 0.3s;
}

.-ad4 {
  animation-delay: 0.4s;
}

.-ad5 {
  animation-delay: 0.5s;
}

.-ad6 {
  animation-delay: 0.6s;
}

.-ad7 {
  animation-delay: 0.7s;
}

.-ad8 {
  animation-delay: 0.8s;
}

.-ad9 {
  animation-delay: 0.9s;
}

.-ad10 {
  animation-delay: 1s;
}

.-ad11 {
  animation-delay: 1.1s;
}

.-ad12 {
  animation-delay: 1.2s;
}

.-ad13 {
  animation-delay: 1.3s;
}

.-ad14 {
  animation-delay: 1.4s;
}

.-ad15 {
  animation-delay: 1.5s;
}

.-ad16 {
  animation-delay: 1.6s;
}

.-ad17 {
  animation-delay: 1.7s;
}

.-ad18 {
  animation-delay: 1.8s;
}

.-ad19 {
  animation-delay: 1.9s;
}

.-ad20 {
  animation-delay: 2s;
}

.-ad21 {
  animation-delay: 2.1s;
}

.-ad22 {
  animation-delay: 2.2s;
}

.-ad23 {
  animation-delay: 2.3s;
}

.-ad24 {
  animation-delay: 2.4s;
}

.-ad25 {
  animation-delay: 2.5s;
}

.-ad26 {
  animation-delay: 2.6s;
}

.-ad27 {
  animation-delay: 2.7s;
}

.-ad28 {
  animation-delay: 2.8s;
}

.-ad29 {
  animation-delay: 2.9s;
}

.-ad30 {
  animation-delay: 3s;
}

.-ad31 {
  animation-delay: 3.1s;
}

.-ad32 {
  animation-delay: 3.2s;
}

.-ad33 {
  animation-delay: 3.3s;
}

.-ad34 {
  animation-delay: 3.4s;
}

.-ad35 {
  animation-delay: 3.5s;
}

.-ad36 {
  animation-delay: 3.6s;
}

.-ad37 {
  animation-delay: 3.7s;
}

.-ad38 {
  animation-delay: 3.8s;
}

.-ad39 {
  animation-delay: 3.9s;
}

.-ad40 {
  animation-delay: 4s;
}

.-ad41 {
  animation-delay: 4.1s;
}

.-ad42 {
  animation-delay: 4.2s;
}

.-ad43 {
  animation-delay: 4.3s;
}

.-ad44 {
  animation-delay: 4.4s;
}

.-ad45 {
  animation-delay: 4.5s;
}

.-ad46 {
  animation-delay: 4.6s;
}

.-ad47 {
  animation-delay: 4.7s;
}

.-ad48 {
  animation-delay: 4.8s;
}

.-ad49 {
  animation-delay: 4.9s;
}

.-ad50 {
  animation-delay: 5s;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    sakusaku
===================================================================*/
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/*==================================================================
    .sakusaku
===================================================================*/
.sakusaku {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--c2);
  overflow: hidden;
}
.sakusaku .common-ttl01 {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.58em 0.74em;
  font-size: clamp(2.4rem, 2.65625vw, 3.4rem);
  line-height: 1.2941176471;
  color: var(--w);
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sakusaku .common-ttl01 {
    padding: 0.45em 1em;
    font-size: 2.6rem;
  }
}
.sakusaku .common-ttl01.-secret {
  min-width: 424px;
  aspect-ratio: 424/91;
  background-image: url(../../img/sakusaku_bg06.svg);
}
@media screen and (max-width: 1030px) {
  .sakusaku .common-ttl01.-secret {
    min-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .sakusaku .common-ttl01.-secret {
    min-width: 330px;
    aspect-ratio: 330/68;
  }
}
.sakusaku .common-ttl01.-recipe {
  min-width: 353px;
  aspect-ratio: 353/91;
  background-image: url(../../img/sakusaku_bg07.svg);
}
@media screen and (max-width: 768px) {
  .sakusaku .common-ttl01.-recipe {
    min-width: 282px;
    aspect-ratio: 282/62;
  }
}
.sakusaku .common-ttl01.-recipe span {
  position: absolute;
  top: -55px;
  left: -55px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sakusaku .common-ttl01.-recipe span {
    top: -55px;
    left: -35px;
  }
}
.sakusaku .common-ttl01.-modify {
  min-width: 353px;
  aspect-ratio: 353/91;
  background-image: url(../../img/sakusaku_bg07.svg);
}
@media screen and (max-width: 768px) {
  .sakusaku .common-ttl01.-modify {
    min-width: 282px;
    aspect-ratio: 282/62;
  }
}
.sakusaku .common-ttl01.-modify span {
  position: absolute;
  top: -75px;
  left: -75px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sakusaku .common-ttl01.-modify span {
    top: -55px;
    left: -35px;
  }
}
.sakusaku .common-ttl01.-products {
  min-width: 298px;
  aspect-ratio: 298/91;
  background-image: url(../../img/sakusaku_bg08.svg);
}
@media screen and (max-width: 768px) {
  .sakusaku .common-ttl01.-products {
    min-width: 218px;
    aspect-ratio: 218/62;
  }
}
.sakusaku .common-ttl01.-qa {
  min-width: 204px;
  aspect-ratio: 204/91;
  background-image: url(../../img/sakusaku_bg09.svg);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .sakusaku .common-ttl01.-qa {
    min-width: 132px;
    aspect-ratio: 132/62;
  }
}
.sakusaku .common-btn01 {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  border: solid 4px var(--c2);
  border-radius: 99px;
  background-color: var(--c2);
  background-repeat: no-repeat;
  background-position: top 50% right 12.2222222222%;
  background-image: url(../../img/sakusaku_Ic10.svg);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: normal;
  color: var(--w);
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .sakusaku .common-btn01 {
    font-size: 2rem;
    height: 55px;
    background-position: top 50% right 8.5714285714%;
  }
}
.sakusaku .common-btn01:hover {
  opacity: 0.6;
  background-position: top 50% right 11.1111111111%;
}
@media screen and (max-width: 768px) {
  .sakusaku .common-btn01:hover {
    opacity: 1;
    background-position: top 50% right 8.5714285714%;
  }
}
.sakusaku .common-btn01.-products {
  background-color: var(--w);
  background-position: top 50% right 8.1395348837%;
  background-image: url(../../img/sakusaku_Ic11.svg);
  color: var(--c2);
  letter-spacing: 0.15em;
}
.sakusaku .common-btn01.-products:hover {
  opacity: 0.6;
  background-position: top 50% right 6.976744186%;
}
.sakusaku .common-btn02 {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  width: 100%;
  height: 100px;
  border-radius: 99px;
  background-color: var(--c2);
  background-repeat: no-repeat;
  background-position: top 50% right 6.3636363636%;
  background-image: url(../../img/sakusaku_Ic13.svg);
}
@media screen and (max-width: 768px) {
  .sakusaku .common-btn02 {
    gap: 0 10px;
    border: solid 4px var(--c1);
    height: 75px;
    background-position: top 50% right 8.5714285714%;
    background-size: 10px 18px;
  }
}
.sakusaku .common-btn02 span {
  display: inline-block;
  margin-top: -0.5em;
  transform: translateX(-1em);
}
@media screen and (max-width: 768px) {
  .sakusaku .common-btn02 span img {
    max-width: 92px;
  }
}
.sakusaku .common-btn02 em {
  display: inline-block;
  margin-top: 1em;
  transform: translateX(-1em);
  max-width: 140px;
}
@media screen and (max-width: 768px) {
  .sakusaku .common-btn02 em {
    margin-top: 0.5em;
  }
  .sakusaku .common-btn02 em img {
    max-width: 95px;
  }
}
.sakusaku .common-btn02:hover {
  opacity: 0.6;
  background-position: top 50% right 5.4545454545%;
}
@media screen and (max-width: 768px) {
  .sakusaku .common-btn02:hover {
    opacity: 1;
    background-position: top 50% right 8.5714285714%;
  }
}

/*==================================================================
    .sakusaku animation
===================================================================*/
.op0 {
  opacity: 0;
}

.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(50px);
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================================
    .sakusaku .hero
===================================================================*/
.sakusaku .hero {
  width: 100%;
  aspect-ratio: 1280/656;
  min-height: 656px;
  max-height: 768px;
  background-color: var(--c1);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sakusaku .hero {
    aspect-ratio: 395/695;
    min-height: 695px;
    max-height: unset;
  }
}
.sakusaku .hero_bg {
  width: 100%;
  height: 100%;
  background-image: url(../../img/sakusaku_bg01.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sakusaku .hero_bg {
    background-image: url(../../img/sakusaku_bg01_sp.jpg);
  }
}
.sakusaku .hero_inner {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 100%;
  padding: 3.90625% var(--spa) 0;
}
@media screen and (max-width: 768px) {
  .sakusaku .hero_inner {
    padding: 38.4615384615vw 0 0;
  }
}
.sakusaku .hero_ttl img {
  width: 100%;
  max-width: 477px;
}
@media screen and (max-width: 768px) {
  .sakusaku .hero_ttl img {
    width: 92.3076923077vw;
    max-width: unset;
  }
}

/*==================================================================
    .sakusaku .nav
===================================================================*/
.sakusaku .nav {
  width: 100%;
  height: 120px;
  padding: 20px 0;
  background-color: var(--c3);
}
@media screen and (max-width: 768px) {
  .sakusaku .nav {
    height: 80px;
    padding: 10px 0;
  }
}
.sakusaku .nav_inner {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sakusaku .nav_inner {
    padding: 0;
  }
}
.sakusaku .nav ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-left: solid 1px var(--c2);
}
@media screen and (max-width: 768px) {
  .sakusaku .nav ul {
    opacity: 1 !important;
    transform: translateY(0) !important;
    border-left: none;
  }
}
.sakusaku .nav ul li {
  width: 25%;
  height: 100%;
  border-right: solid 1px var(--c2);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sakusaku .nav ul li:last-of-type {
    border-right: 0;
  }
  .sakusaku .nav ul li:nth-of-type(1), .sakusaku .nav ul li:nth-of-type(2) {
    width: 29.4871794872vw;
  }
  .sakusaku .nav ul li:nth-of-type(3), .sakusaku .nav ul li:nth-of-type(4) {
    width: 20.5128205128vw;
  }
}
.sakusaku .nav ul li a {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  gap: 17px 0;
  width: 100%;
  height: 100%;
  font-size: clamp(1.6rem, 1.5625vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--c2);
}
@media screen and (max-width: 768px) {
  .sakusaku .nav ul li a {
    gap: 10px 0;
    font-size: 1.3rem;
    line-height: 1.2307692308;
  }
}
.sakusaku .nav ul li a::after {
  display: block;
  content: "";
  width: 18px;
  height: 10px;
  background-image: url(../../img/sakusaku_Ic01.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: var(--transition);
}
.sakusaku .nav ul li a:hover {
  opacity: 0.6;
}
.sakusaku .nav ul li a:hover::after {
  transform: translateY(5px);
}

/*==================================================================
    .sakusaku .about
===================================================================*/
.sakusaku .about {
  padding: 0 0 100px;
  background-color: var(--c1);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sakusaku .about {
    padding: 20px 0 0;
  }
}
.sakusaku .about::after {
  display: block;
  content: "";
  width: 100%;
  height: 42px;
  background-image: url(../../img/sakusaku_bg02.svg);
  background-repeat: repeat-x;
  position: absolute;
  bottom: -41px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sakusaku .about::after {
    height: 31px;
    background-image: url(../../img/sakusaku_bg02_sp.svg);
    bottom: 0;
  }
}
.sakusaku .about_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3.515625%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sakusaku .about_inner {
    max-height: unset;
    padding: 0;
  }
}
.sakusaku .about_flex {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .sakusaku .about_flex {
    flex-flow: column-reverse nowrap;
    align-items: center;
  }
}
.sakusaku .about_flex-l {
  flex-shrink: 0;
  width: 54.5378151261%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sakusaku .about_flex-l {
    width: 137.1794871795vw;
  }
  .sakusaku .about_flex-l img {
    margin-top: -48%;
    transform: translateY(15%);
  }
}
.sakusaku .about_flex-r {
  flex-shrink: 0;
  width: 51.5966386555%;
  margin-left: -6.1344537815%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sakusaku .about_flex-r {
    width: 109.2307692308vw;
    margin-left: 0;
  }
  .sakusaku .about_flex-r img {
    width: 100%;
  }
}
.sakusaku .about_icon {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sakusaku .about_icon {
    display: none;
  }
}
.sakusaku .about_icon.-icon01 {
  top: 30px;
  right: -136px;
}
.sakusaku .about_icon.-icon02 {
  bottom: -55px;
  left: -110px;
}

/*==================================================================
    .sakusaku .secret
===================================================================*/
.sakusaku .secret {
  padding: 210px 0 180px;
  background-color: var(--c3);
  position: relative;
}
@media screen and (max-width: 768px) {
  .sakusaku .secret {
    padding: 60px 0;
    z-index: 2;
  }
}
.sakusaku .secret::after {
  display: block;
  content: "";
  width: 100%;
  height: 42px;
  background-image: url(../../img/sakusaku_bg03.svg);
  background-repeat: repeat-x;
  position: absolute;
  bottom: -41px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sakusaku .secret::after {
    height: 31px;
    background-size: auto 100%;
    bottom: -30px;
  }
}
.sakusaku .secret_inner {
  position: relative;
}
.sakusaku .secret_flex {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  .sakusaku .secret_flex {
    flex-flow: column nowrap;
  }
}
.sakusaku .secret_flex-l {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .sakusaku .secret_flex-l {
    justify-content: center;
    width: 100%;
  }
}
.sakusaku .secret_flex-l .outline {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 78.125%;
  padding: 0 4.6875%;
}
@media screen and (max-width: 768px) {
  .sakusaku .secret_flex-l .outline {
    width: 100%;
    padding: 0 var(--spa);
  }
}
.sakusaku .secret_flex-l .outline .common-ttl01 {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .sakusaku .secret_flex-l .outline .common-ttl01 {
    margin-bottom: 30px;
  }
}
.sakusaku .secret_flex-l .outline_spimg {
  display: none;
}
@media screen and (max-width: 768px) {
  .sakusaku .secret_flex-l .outline_spimg {
    display: block;
    margin: 0 calc(var(--spa) * -1) 30px;
  }
  .sakusaku .secret_flex-l .outline_spimg img {
    width: 100%;
  }
}
.sakusaku .secret_flex-l .outline_txt p {
  font-size: clamp(1.5rem, 1.5625vw, 2rem);
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sakusaku .secret_flex-l .outline_txt p {
    font-size: 1.6rem;
    line-height: 1.375;
  }
}
.sakusaku .secret_flex-l .outline_txt p:not(:last-of-type) {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .sakusaku .secret_flex-l .outline_txt p:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .sakusaku .secret_flex-l .outline_txt p span {
    display: inline-block;
    margin-top: 0.5em;
  }
}
.sakusaku .secret_flex-l .outline_txt p em {
  display: block;
  font-size: clamp(2rem, 2.34375vw, 3rem);
  font-weight: 900;
  line-height: 1.4666666667;
}
@media screen and (max-width: 768px) {
  .sakusaku .secret_flex-l .outline_txt p em {
    font-size: 2.3rem;
    line-height: 1.2608695652;
  }
}
.sakusaku .secret_flex-r {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sakusaku .secret_flex-r {
    display: none;
  }
}
.sakusaku .secret_flex-r .img {
  width: 81.71875vw;
  max-width: 1046px;
}

/*==================================================================
    .sakusaku .recipe
===================================================================*/
.sakusaku .recipe {
  background-color: var(--c1);
  position: relative;
}
.sakusaku .recipe::after {
  display: block;
  content: "";
  width: 100%;
  height: 42px;
  background-image: url(../../img/sakusaku_bg04.svg);
  background-repeat: repeat-x;
  position: absolute;
  bottom: -41px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe::after {
    height: 31px;
    background-size: auto 100%;
    bottom: -30px;
  }
}
.sakusaku .recipe_rec {
  padding: 210px 0 110px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_rec {
    padding: 120px 0 30px;
  }
}
.sakusaku .recipe_rec .common-ttl01 {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_rec .common-ttl01 {
    margin-bottom: 10px;
  }
}
.sakusaku .recipe_rec-inner {
  padding: 0 5.859375%;
  position: relative;
}
.sakusaku .recipe_rec .flex {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 0 min(50px, 3.90625vw);
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_rec .flex {
    flex-flow: column nowrap;
    align-items: flex-start;
    gap: 20px 0;
  }
}
.sakusaku .recipe_rec .flex_item {
  display: flex;
  flex-flow: row nowrap;
}
.sakusaku .recipe_rec .flex_item-wrapper .ttl {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_rec .flex_item-wrapper .ttl {
    text-align: left;
    width: 139.7435897436vw;
  }
  .sakusaku .recipe_rec .flex_item-wrapper .ttl.-tamago {
    transform: translateX(-25.641025641vw);
  }
  .sakusaku .recipe_rec .flex_item-wrapper .ttl.-abura {
    transform: translateX(-25.641025641vw);
  }
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_rec .flex_item-wrapper .sp-wrap {
    position: relative;
  }
}
.sakusaku .recipe_rec .flex_item-wrapper .img {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_rec .flex_item-wrapper .img {
    position: absolute;
    bottom: 15.5172413793vw;
    z-index: 2;
  }
  .sakusaku .recipe_rec .flex_item-wrapper .img.-tamago {
    right: 50%;
    transform: translateX(15.3846153846vw);
  }
  .sakusaku .recipe_rec .flex_item-wrapper .img.-abura {
    right: 50%;
    transform: translateX(-42.3076923077vw);
  }
}
.sakusaku .recipe_rec .flex_item-wrapper .img a {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_rec .flex_item-wrapper .img a {
    position: relative;
    bottom: auto;
    right: auto;
  }
}
.sakusaku .recipe_rec .flex_item-wrapper .img a img {
  width: 9.53125vw;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_rec .flex_item-wrapper .img a img {
    width: 23.0769230769vw;
  }
}
.sakusaku .recipe_rec .flex_item-wrapper .img a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_rec .flex_item-wrapper .img > img {
    display: none;
  }
}
.sakusaku .recipe_rec-icon {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_rec-icon {
    display: none;
  }
}
.sakusaku .recipe_rec-icon.-icon01 {
  top: -85px;
  left: -55px;
}
.sakusaku .recipe_rec-icon.-icon02 {
  top: -45px;
  right: -45px;
}
.sakusaku .recipe_modify {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify {
    padding: 30px 0 60px;
  }
}
.sakusaku .recipe_modify .common-ttl01 {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify .common-ttl01 {
    margin-bottom: 25px;
  }
}
.sakusaku .recipe_modify-inner {
  position: relative;
}
.sakusaku .recipe_modify-lead {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-lead {
    margin-bottom: 30px;
  }
}
.sakusaku .recipe_modify-lead p {
  font-size: clamp(2.4rem, 2.34375vw, 3rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-lead p {
    font-size: 2.4rem;
    line-height: 1.25;
  }
}
.sakusaku .recipe_modify-slider {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider {
    margin-bottom: 50px;
  }
}
.sakusaku .recipe_modify-slider .slider {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider {
    margin-bottom: 20px;
  }
}
.sakusaku .recipe_modify-slider .slider-slide .ttl {
  font-size: clamp(2.6rem, 2.65625vw, 3.4rem);
  font-weight: 800;
  line-height: normal;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-slide .ttl {
    font-size: 2rem;
  }
}
.sakusaku .recipe_modify-slider .slider-slide .ttl span {
  display: inline-block;
  padding: 0 1.5em;
  background-color: var(--c1);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-slide .ttl span {
    padding: 0 1.2em;
  }
}
.sakusaku .recipe_modify-slider .slider-slide .ttl::before {
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--c2);
  border-radius: 9px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-slide .ttl::before {
    height: 2px;
  }
}
.sakusaku .recipe_modify-slider .slider-slide .flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 20px 40px;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-slide .flex {
    gap: 40px 10px;
  }
}
.sakusaku .recipe_modify-slider .slider-slide .flex_item {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-slide .flex_item {
    width: calc((100% - 10px) / 2);
  }
}
.sakusaku .recipe_modify-slider .slider-slide .flex_item a {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-slide .flex_item a .img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
}
.sakusaku .recipe_modify-slider .slider-slide .flex_item a .img img {
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-slide .flex_item a .img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
}
.sakusaku .recipe_modify-slider .slider-slide .flex_item a .txt {
  font-size: clamp(2rem, 2.1875vw, 2.8rem);
  line-height: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c2);
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-slide .flex_item a .txt {
    font-size: 2rem;
  }
}
.sakusaku .recipe_modify-slider .slider-slide .flex_item a:hover {
  opacity: 0.6;
}
.sakusaku .recipe_modify-slider .slider-controls .slider-pagination {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 0 36px;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-controls .slider-pagination {
    gap: 0 25px;
  }
}
.sakusaku .recipe_modify-slider .slider-controls .slider-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 9px;
  background-color: #f8ff90;
  opacity: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-controls .slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.sakusaku .recipe_modify-slider .slider-controls .slider-pagination .swiper-pagination-bullet-active {
  background-color: var(--c2);
}
.sakusaku .recipe_modify-slider .slider-controls .slider-prev,
.sakusaku .recipe_modify-slider .slider-controls .slider-next {
  width: 60px;
  height: 60px;
  border: none;
  outline: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url(../../img/sakusaku_Ic09.svg);
  position: absolute;
  top: 48%;
  z-index: 2;
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-controls .slider-prev,
  .sakusaku .recipe_modify-slider .slider-controls .slider-next {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
  }
}
.sakusaku .recipe_modify-slider .slider-controls .slider-prev:hover,
.sakusaku .recipe_modify-slider .slider-controls .slider-next:hover {
  opacity: 0.6;
}
.sakusaku .recipe_modify-slider .slider-controls .slider-prev {
  left: -70px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-controls .slider-prev {
    left: calc(var(--spa) * -1 + 5px);
    transform: translateY(0);
  }
}
.sakusaku .recipe_modify-slider .slider-controls .slider-next {
  right: -70px;
  transform: translateY(-50%) scale(-1);
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-slider .slider-controls .slider-next {
    right: calc(var(--spa) * -1 + 5px);
    transform: translateY(0) scale(-1);
  }
}
.sakusaku .recipe_modify-btn {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-btn {
    max-width: 350px;
  }
}
.sakusaku .recipe_modify-icon {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sakusaku .recipe_modify-icon {
    display: none;
  }
}
.sakusaku .recipe_modify-icon.-icon01 {
  top: -100px;
  left: -55px;
}
.sakusaku .recipe_modify-icon.-icon02 {
  top: 45px;
  right: -45px;
}

/*==================================================================
    .sakusaku .products
===================================================================*/
.sakusaku .products {
  padding: 90px 0 140px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sakusaku .products {
    padding: 90px 0 110px;
  }
}
.sakusaku .products::after {
  display: block;
  content: "";
  width: 100%;
  height: 42px;
  background-image: url(../../img/sakusaku_bg05.svg);
  background-repeat: repeat-x;
  position: absolute;
  bottom: -41px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sakusaku .products::after {
    height: 31px;
    background-image: url(../../img/sakusaku_bg05_sp.svg);
    bottom: 0;
  }
}
.sakusaku .products .common-ttl01 {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .sakusaku .products .common-ttl01 {
    margin-bottom: 20px;
  }
}
.sakusaku .products_flex {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sakusaku .products_flex {
    flex-flow: column nowrap;
    gap: 10px 0;
  }
}
.sakusaku .products_flex-l {
  width: 50%;
  padding: 3%;
}
@media screen and (max-width: 768px) {
  .sakusaku .products_flex-l {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .sakusaku .products_flex-l .img {
    text-align: center;
  }
}
.sakusaku .products_flex-l .img img {
  width: 100%;
  max-width: 420px;
}
@media screen and (max-width: 768px) {
  .sakusaku .products_flex-l .img img {
    width: 76.9230769231vw;
  }
}
.sakusaku .products_flex-r {
  width: 50%;
  padding: 1.5%;
}
@media screen and (max-width: 768px) {
  .sakusaku .products_flex-r {
    width: 100%;
    padding: 0;
  }
}
.sakusaku .products_flex-r .outline_ttl {
  font-size: clamp(2.6rem, 2.65625vw, 3.4rem);
  font-weight: 800;
  line-height: normal;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sakusaku .products_flex-r .outline_ttl {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
.sakusaku .products_flex-r .outline_txt {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .sakusaku .products_flex-r .outline_txt {
    margin-bottom: 30px;
  }
}
.sakusaku .products_flex-r .outline_txt p {
  font-size: clamp(1.6rem, 1.5625vw, 2rem);
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sakusaku .products_flex-r .outline_txt p {
    font-family: 1.6rem;
    line-height: 1.625;
  }
}
.sakusaku .products_flex-r .outline_btn {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sakusaku .products_flex-r .outline_btn {
    gap: 15px 0;
  }
}
.sakusaku .products_flex-r .outline_btn-item {
  width: 100%;
}
.sakusaku .products_flex-r .outline_btn-item.-amazon {
  display: none;
}
@media screen and (max-width: 768px) {
  .sakusaku .products_flex-r .outline_btn-item.-amazon {
    display: block;
  }
}

/*==================================================================
    .sakusaku .amazon
===================================================================*/
.sakusaku .amazon {
  padding: 120px 0 80px;
  background-color: var(--c1);
  position: relative;
}
@media screen and (max-width: 768px) {
  .sakusaku .amazon {
    display: none;
  }
}
.sakusaku .amazon::after {
  display: block;
  content: "";
  width: 100%;
  height: 42px;
  background-image: url(../../img/sakusaku_bg02.svg);
  background-repeat: repeat-x;
  position: absolute;
  bottom: -41px;
  left: 0;
  z-index: 2;
}
.sakusaku .amazon_flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
}
.sakusaku .amazon_flex .ttl {
  font-size: 3.4rem;
  line-height: normal;
  font-weight: 700;
}
.sakusaku .amazon_flex .btn {
  width: 100%;
  max-width: 550px;
}

/*==================================================================
    .sakusaku .qa
===================================================================*/
.sakusaku .qa {
  padding: 140px 0 100px;
  background-color: #f8e9c0;
}
@media screen and (max-width: 768px) {
  .sakusaku .qa {
    padding: 60px 0;
  }
}
.sakusaku .qa .common-ttl01 {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .sakusaku .qa .common-ttl01 {
    margin-bottom: 45px;
  }
}
.sakusaku .qa_blocks {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 20px 0;
}
.sakusaku .qa_blocks-item {
  width: 100%;
}
.sakusaku .qa_blocks-item .set_q {
  display: flex;
  flex-flow: row nowrap;
  gap: 0 15px;
  font-size: 2rem;
  line-height: normal;
  padding: 20px 80px 20px 45px;
  background-color: var(--w);
  border-radius: 5px 5px 5px 5px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  .sakusaku .qa_blocks-item .set_q {
    font-size: 1.5rem;
    line-height: 1.3333333333;
    padding: 20px 40px 20px 20px;
    border-radius: 10px 10px 10px 10px;
  }
}
.sakusaku .qa_blocks-item .set_q::before {
  display: block;
  content: "";
  width: 16px;
  height: 9px;
  background-image: url(../../img/sakusaku_Ic14.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  .sakusaku .qa_blocks-item .set_q::before {
    right: 16px;
  }
}
.sakusaku .qa_blocks-item .set_q span {
  flex-shrink: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 30px;
  padding-right: 0.3em;
  background-color: var(--c2);
  border-radius: 99px;
  font-size: 1.8rem;
  font-family: var(--font1);
  color: var(--w);
}
@media screen and (max-width: 768px) {
  .sakusaku .qa_blocks-item .set_q span {
    width: 22px;
    height: 22px;
    font-size: 1.5rem;
    padding-right: 0.2em;
  }
}
.sakusaku .qa_blocks-item .set_q.is-active {
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 768px) {
  .sakusaku .qa_blocks-item .set_q.is-active {
    border-radius: 10px 10px 0 0;
  }
}
.sakusaku .qa_blocks-item .set_q.is-active::before {
  transform: translateY(-50%) rotate(180deg);
}
.sakusaku .qa_blocks-item .set_a {
  display: none;
}
.sakusaku .qa_blocks-item .set_a-wrapper {
  display: flex;
  flex-flow: row nowrap;
  gap: 0 15px;
  padding: 20px 80px 20px 45px;
  background-color: var(--w);
  border-radius: 0 0 5px 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sakusaku .qa_blocks-item .set_a-wrapper {
    padding: 20px 40px 20px 20px;
    border-radius: 0 0 10px 10px;
  }
}
.sakusaku .qa_blocks-item .set_a-wrapper::before {
  display: block;
  content: "";
  width: calc(100% - 90px);
  height: 1px;
  background-color: rgba(114, 27, 0, 0.3);
  position: absolute;
  top: 0;
  left: 45px;
}
@media screen and (max-width: 768px) {
  .sakusaku .qa_blocks-item .set_a-wrapper::before {
    width: calc(100% - 30px);
    left: 15px;
  }
}
.sakusaku .qa_blocks-item .set_a-wrapper span {
  flex-shrink: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 30px;
  padding-right: 0.3em;
  background-color: #df261b;
  border-radius: 99px;
  font-size: 1.8rem;
  font-family: var(--font1);
  color: var(--w);
}
@media screen and (max-width: 768px) {
  .sakusaku .qa_blocks-item .set_a-wrapper span {
    width: 22px;
    height: 22px;
    font-size: 1.5rem;
    padding-right: 0.2em;
  }
}
.sakusaku .qa_blocks-item .set_a-wrapper p {
  font-size: 2rem;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .sakusaku .qa_blocks-item .set_a-wrapper p {
    font-size: 1.5rem;
    line-height: normal;
  }
}