@charset "UTF-8";
/**
 * RETURNS A cubic bezier TIMING FUNCTION.

 * Modern browsers will get a custom property, legacy browsers will get a
 * `cubic-bezier()` function.
 */
/**
 * RETURNS VALUE(S) FOR A NAMED TIMING FUNCTION.
 */
/**
 * ALIAS FOR THE CSS cubic-bezier FUNCTION
 *
 * Use:
 * `transition-timing-function: bezier(.1, .02, 1, .7);`
 */
/**
 * REVERSE A cubic-bezier TIMING FUNCTION
 *
 * Use:
 * `transition-timing-function: reverse-bezier(.1, .02, 1, .7);`
 * `transition-timing-function: reverse-bezier($in-out-quad-value);`
 */
/**
 * ALIAS TO reverse-bezier
 */
/**
 * The four esaings coordinates for each easing
 */
/**
 * Available variables
 *
 * How it works:
 *
 * $in-[easingName]-value: coordinates (e.g, `.47, 0, .745, .715`).
 * $in-[easingName]-r-value: coordinates for reversed easing.
 *
 * $in-[easingName]: see functions/helpers.
 * $ease-in-[easingName]: alias for previous line.
 * $in-[easingName]-r: reverse for previous line.
 * $ease-in-[easingName]-r: alias for previous line.
 */
/**
 * The value associated to each easing
 */
/**
 * Available easings
 */
/**
 * Providing a custom easings list.
 */
/**
 * Attach easings custom properties to `:root {}` if `$easings-legacy` is true
 * or doesn’t exist.
 */
:root {
  --in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --in-sine-r: cubic-bezier(0.255, 0.285, 0.53, 1);
  --out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --out-sine-r: cubic-bezier(0.435, 0, 0.61, 0.425);
  --in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --in-out-sine-r: cubic-bezier(0.45, 0.05, 0.555, 0.95);
  --in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --in-quad-r: cubic-bezier(0.32, 0.47, 0.45, 0.915);
  --out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --out-quad-r: cubic-bezier(0.55, 0.06, 0.75, 0.54);
  --in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --in-out-quad-r: cubic-bezier(0.485, 0.045, 0.545, 0.97);
  --in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --in-cubic-r: cubic-bezier(0.325, 0.81, 0.45, 0.945);
  --out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --out-cubic-r: cubic-bezier(0.645, 0, 0.785, 0.39);
  --in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --in-out-cubic-r: cubic-bezier(0.645, 0, 0.355, 0.955);
  --in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --in-quart-r: cubic-bezier(0.315, 0.78, 0.105, 0.97);
  --out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --out-quart-r: cubic-bezier(0.56, 0, 0.835, 0.16);
  --in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --in-out-quart-r: cubic-bezier(0.825, 0, 0.23, 1);
  --in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --in-quint-r: cubic-bezier(0.145, 0.94, 0.245, 0.95);
  --out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --out-quint-r: cubic-bezier(0.68, 0, 0.77, 0);
  --in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --in-out-quint-r: cubic-bezier(0.93, 0, 0.14, 1);
  --in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --in-expo-r: cubic-bezier(0.205, 0.965, 0.05, 0.95);
  --out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --out-expo-r: cubic-bezier(0.78, 0, 0.81, 0);
  --in-out-expo: cubic-bezier(1, 0, 0, 1);
  --in-out-expo-r: cubic-bezier(1, 0, 0, 1);
  --in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --in-circ-r: cubic-bezier(0.02, 0.665, 0.4, 0.96);
  --out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --out-circ-r: cubic-bezier(0.835, 0, 0.925, 0.18);
  --in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --in-out-circ-r: cubic-bezier(0.85, 0.14, 0.215, 0.865);
  --in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --in-back-r: cubic-bezier(0.265, 0.955, 0.4, 1.28);
  --out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --out-back-r: cubic-bezier(0.68, -0.275, 0.825, 0.115);
  --in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --in-out-back-r: cubic-bezier(0.735, -0.55, 0.32, 1.55);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

* {
  box-sizing: inherit;
}
*:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  background-color: #f4d764;
  font-size: 14px;
}
@media (min-width: 46.25em) {
  body {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
}

a {
  text-decoration: none;
  color: currentColor;
}
a img {
  outline: 0;
  border: none;
}

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

.container {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

[class^=hide-until] {
  display: none;
}

@media (min-width: 20em) {
  .hide-from-mobile {
    display: none;
  }

  .hide-until-mobile {
    display: block;
  }
}
@media (min-width: 46.25em) {
  .hide-from-tablet {
    display: none;
  }

  .hide-until-tablet {
    display: block;
  }
}
@media (min-width: 61.25em) {
  .hide-from-desktop {
    display: none;
  }

  .hide-until-desktop {
    display: block;
  }
}
@media (min-width: 81.25em) {
  .hide-from-wide {
    display: none;
  }

  .hide-until-wide {
    display: block;
  }
}
section {
  padding: 40px 0;
  position: relative;
}
@media (min-width: 46.25em) {
  section {
    padding: 80px 0;
  }
}

.s1,
.s2,
.s3 {
  padding: 0;
}

.banner-img {
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 1360px;
}

.call-to-action {
  position: relative;
  margin: -380px auto 20px;
  width: 100%;
  max-width: 480px;
  z-index: 10;
}
.call-to-action img {
  display: block;
  width: 100%;
}
.call-to-action .popover {
  position: absolute;
  width: 40%;
  height: 10%;
  cursor: pointer;
}
.call-to-action .popover:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.call-to-action .popover.active > .button-list {
  transform: translate(-50%, -10px);
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.call-to-action .popover.button-a {
  right: 10%;
  bottom: 38%;
}
.call-to-action .popover.button-b {
  right: 10%;
  bottom: 10%;
}
.call-to-action .popover .button-list {
  list-style: none;
  padding: 10px;
  background-color: #01399b;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -20px);
  width: 166px;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s var(--out-cubic);
}
.call-to-action .popover .button-list:after {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #01399b;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
}
.call-to-action .popover .button-list li:not(:first-child) {
  margin-top: 10px;
}
.call-to-action .popover .button-list a {
  display: block;
}
.call-to-action .popover .button-list a:hover {
  opacity: 0.5;
}
.call-to-action .popover .button-list img {
  display: block;
}
@media (min-width: 46.25em) {
  .call-to-action .popover {
    width: 16.2%;
    height: 11.2%;
  }
  .call-to-action .popover.active > .button-list:before {
    transform: scale(1);
  }
  .call-to-action .popover .button-list:before {
    content: "";
    width: 90px;
    height: 150px;
    background: transparent url("../img/go-pop-over@2x.png") no-repeat left top/contain;
    position: absolute;
    left: 100%;
    bottom: 10px;
    transform-origin: left bottom;
    transform: scale(0);
  }
  .call-to-action .popover.button-a, .call-to-action .popover.button-b {
    right: auto;
    bottom: 14.8%;
  }
  .call-to-action .popover.button-a {
    left: 53.6%;
  }
  .call-to-action .popover.button-b {
    left: 71%;
  }
}
@media (min-width: 46.25em) {
  .call-to-action {
    margin: -340px auto 80px;
    max-width: none;
  }
}

.s3 {
  padding-bottom: 300px;
}
@media (min-width: 46.25em) {
  .s3 {
    padding-bottom: 220px;
  }
}

.s4 {
  background-color: #dd5d5d;
  padding-bottom: 0;
}

.premium-yeast {
  position: relative;
  padding-bottom: 8vw;
}
.premium-yeast:before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 45%;
  height: 200px;
  background: transparent url("../img/premium-yeast-img-1@2x.png") no-repeat left bottom/110%;
}
.premium-yeast__header {
  text-align: center;
  line-height: normal;
}
.premium-yeast__header img {
  display: block;
  margin: 0 auto 10px;
}
.premium-yeast__header span {
  display: block;
  font-size: 16px;
  background-color: #fff;
  border-radius: 60px;
  color: #d73d3d;
  padding: 10px 0;
}
.premium-yeast__content .content-block {
  color: #fff;
  font-weight: 500;
}
.premium-yeast__content .content-block__img {
  display: block;
  margin: 20px auto;
}
.premium-yeast__content .content-block__text {
  text-align: center;
}
.premium-yeast__img {
  display: block;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 46.25em) {
  .premium-yeast {
    padding-bottom: 4vw;
  }
  .premium-yeast:before {
    width: 420px;
    height: 480px;
    background-size: 100%;
  }
  .premium-yeast__header span {
    font-size: 24px;
    display: inline-block;
    padding: 10px 40px;
  }
  .premium-yeast__content .content-block {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .premium-yeast__content .content-block__img {
    width: 300px;
    margin: 0;
  }
  .premium-yeast__content .content-block__text {
    text-align: left;
    font-size: 20px;
    padding-left: 20px;
  }
}

.s5 {
  padding-top: 0;
  padding-bottom: 320px;
}
@media (min-width: 46.25em) {
  .s5 {
    padding-bottom: 220px;
  }
}

.power-of-herbs {
  position: relative;
}
.power-of-herbs:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 220px;
  height: 220px;
  background: transparent url("../img/power-of-herbs-img.png") no-repeat left top/contain;
}
.power-of-herbs__header {
  padding: 20px 0 20px 100px;
  margin: 0 0 20px;
  position: relative;
}
.power-of-herbs__header img {
  display: block;
}
@media (min-width: 46.25em) {
  .power-of-herbs:before {
    width: 520px;
    height: 360px;
    left: auto;
    right: 65%;
  }
  .power-of-herbs__header {
    padding: 80px 0 20px 120px;
    margin: 0;
  }
}

.herbs-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: herbs;
}
@media (min-width: 46.25em) {
  .herbs-list {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    flex-flow: row wrap;
  }
}

.herb-item {
  counter-increment: herbs;
  display: flex;
  flex-flow: row-reverse;
  padding: 0 20px;
  margin: 20px 0;
}
.herb-item__img {
  width: 75px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  flex: none;
}
.herb-item__body {
  flex: auto;
  padding-right: 5px;
  font-weight: 500;
}
.herb-item__body h3 {
  color: #d73d3d;
  font-weight: 900;
  font-size: 16px;
  margin: 0;
  display: flex;
  align-items: center;
  --badge-size: 24px;
}
.herb-item__body h3:before {
  content: counter(herbs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  width: var(--badge-size);
  height: var(--badge-size);
  border-radius: var(--badge-size);
  margin-right: 6px;
}
.herb-item__body p {
  margin: 0;
  padding-left: 30px;
}
@media (min-width: 46.25em) {
  .herb-item {
    margin: 40px 0;
    padding: 0;
    width: 50%;
    flex: auto;
  }
  .herb-item:nth-child(even) {
    padding-left: 40px;
  }
  .herb-item__img {
    width: 90px;
    height: 120px;
  }
  .herb-item__body {
    padding-right: 10px;
  }
  .herb-item__body h3 {
    font-size: 20px;
    margin: 0 0 5px;
    --badge-size: 36px;
  }
  .herb-item__body p {
    padding: 0;
  }
}
@media (min-width: 61.25em) {
  .herb-item__body h3 {
    font-size: 24px;
  }
}

.s6 {
  background-color: #ececec;
}

.other-products__header {
  position: relative;
  text-align: center;
  font-size: 18px;
}
.other-products__header:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.other-products__header span {
  position: relative;
  z-index: 2;
  display: inline-block;
  background-color: #ececec;
  padding: 10px;
}
.other-products__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
}
.other-products .product:not(:first-child) {
  margin-top: 20px;
}
.other-products .product__img {
  display: block;
}
.other-products .product__title {
  display: none;
}
@media (min-width: 46.25em) {
  .other-products__header {
    font-size: 36px;
  }
  .other-products__header:before {
    height: 4px;
  }
  .other-products__list {
    display: flex;
    justify-content: center;
    max-width: 800px;
  }
  .other-products .product:not(:first-child) {
    margin-top: 0;
    margin-left: 20px;
  }
}

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 30px 0;
  font-size: 14px;
}
@media (min-width: 46.25em) {
  .site-footer {
    padding: 20px 0;
  }
}

.footer-container {
  display: flex;
  flex-flow: column-reverse;
  text-align: center;
}
@media (min-width: 46.25em) {
  .footer-container {
    flex-flow: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

.privacy-policy-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy-policy-link__logo {
  display: block;
  width: 120px;
}
.privacy-policy-link__label {
  display: none;
}
.privacy-policy-link:hover {
  color: #999;
}
@media (min-width: 46.25em) {
  .privacy-policy-link__logo {
    width: 100px;
    margin-right: 8px;
  }
  .privacy-policy-link__label {
    display: block;
  }
}

.copyright {
  text-decoration: underline;
  margin-bottom: 10px;
}
@media (min-width: 46.25em) {
  .copyright {
    margin: 0;
  }
}

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