@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #000;
  --color-font-base-brown: #1a1311;
  --color-font-base-brown-dark: #322308;
  --color-font-base-gray: #46403b;
  --color-font-base-brown-dark: #4d3611;
  --color-font-blue: #00304f;
  --color-font-white: #fff;
  --color-font-gray: #a0a0a0;
  --color-font-gray-dark: #6c6c6c;
  --color-font-accent: #b00036;
  --color-bg-base: #f5ece2;
  --color-bg-black-point: #221407;
  --color-bg-black-cta: #19140e;
  --color-bg-cta: #bd915e;
  --color-bg-cta-hover: #a57f53;
  --color-bg-white: #fff;
  --color-bg-blue: #dfe1e8;
  --color-bg-brown: #441c00;
  --color-main: #996c28;
  --color-sub: #c6a079;
  --color-title: #4d3611;
  --color-number: #803812;
  --color-border: #bdbebe;
  --color-border-arrow: #803812;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 960rem;
  --width-content: 1080rem;
  --width-content-l: 1300rem;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-hiragino-mincho: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --font-family-hiragino-kaku-gothic: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  --font-family-en: "orpheuspro", serif;
  --font-family-times: "Times", serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header-entry: 40;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 5;
  --z-index-background: 1;
}

/*!
global > animation
------------------------------
*/
.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.js-fade-in.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

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

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
}

iframe {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
:root {
  --base-vw: 365;
}
@media screen and (min-width: 768px) {
  :root {
    --base-vw: 1440;
  }
}

html {
  font-size: calc(100vw / var(--base-vw));
}

body {
  font-size: 12rem;
  font-weight: 300;
  line-height: 1.66;
  letter-spacing: 0;
  color: var(--color-font-base);
  font-family: var(--font-family-hiragino-kaku-gothic);
  z-index: var(--z-index-default);
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

.u-sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

/*!
component > title
------------------------------
*/
.c-title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-title-en {
  color: var(--color-main);
  font-size: 14rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
}

.c-title-ja {
  margin-top: 4rem;
  color: var(--color-title);
  font-family: var(--font-family-hiragino-mincho);
  font-size: 20rem;
  line-height: 1.55;
}
.c-title-ja--cta {
  color: var(--color-font-white);
}
.c-title-ja--number {
  font-size: 33rem;
  margin-right: 3rem;
}

.c-title-line {
  margin-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 119rem;
  height: 6rem;
  margin-inline: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--color-main)), color-stop(transparent), color-stop(transparent), to(var(--color-main)));
  background-image: linear-gradient(to right, var(--color-main) calc(50% - 11rem), transparent calc(50% - 11rem), transparent calc(50% + 11rem), var(--color-main) calc(50% + 11rem));
  background-size: 100% 1rem;
  /* 線の太さ（高さ） */
  background-repeat: no-repeat;
  background-position: center;
}
.c-title-line::before {
  content: "";
  display: block;
  width: 6rem;
  height: 6rem;
  background-color: var(--color-main);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-title-line--cta {
  margin-top: 7rem;
}
.c-title-line--number {
  margin-top: 16rem;
}
@media screen and (min-width: 768px) {
  .c-title-line {
    margin-top: 16rem;
    width: 400rem;
    height: 6rem;
    margin-inline: auto;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--color-main)), color-stop(transparent), color-stop(transparent), to(var(--color-main)));
    background-image: linear-gradient(to right, var(--color-main) calc(50% - 14rem), transparent calc(50% - 14rem), transparent calc(50% + 14rem), var(--color-main) calc(50% + 14rem));
  }
  .c-title-line::before {
    width: 8rem;
    height: 8rem;
  }
}

/*!
component > cta-button
------------------------------
*/
.c-cta-button {
  margin-top: 28rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-font-white);
  font-size: 18rem;
  font-family: var(--font-family-hiragino-mincho);
  padding: 13rem 0;
  letter-spacing: 0.1em;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  background-color: var(--color-bg-cta);
  width: 277rem;
  margin-inline: auto;
}
.c-cta-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 2.5em + 56rem);
  width: 15rem;
  height: 15rem;
  border-top: 1px solid var(--color-font-white);
  border-right: 1px solid var(--color-font-white);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .c-cta-button {
    font-size: 22rem;
    width: 500rem;
    padding: 20rem 0;
  }
}
.c-cta-button--kv {
  margin-top: 28rem;
}
@media screen and (min-width: 768px) {
  .c-cta-button--kv {
    margin-inline: 0;
    margin-top: 62rem;
    margin-left: 80rem;
    padding: 10rem 0;
    width: 380rem;
  }
}
@media (any-hover: hover) {
  .c-cta-button:hover {
    background-color: var(--color-bg-cta-hover);
  }
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  width: min(76%, var(--width-content-s));
  margin-inline: auto;
}

.l-container {
  width: min(85%, var(--width-content));
  margin-inline: auto;
}

.l-container-l {
  width: min(91%, var(--width-content-l));
  margin-inline: auto;
}

/*!
page > top > kv
------------------------------
*/
.kv {
  background-image: url("../img/kv/kv-bg-sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 35rem;
  height: 686rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .kv {
    background-image: url("../img/kv/kv-bg-pc.jpg");
    aspect-ratio: 1000/650;
    height: auto;
    padding-top: 55rem;
    background-position: center;
    background-size: cover;
  }
}

.kv-header-img {
  width: 104rem;
  height: 21rem;
  aspect-ratio: 104/21;
}
.kv-header-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .kv-header-img {
    width: 194rem;
    height: 40rem;
  }
}

.kv-content {
  margin-top: 322rem;
  margin-left: 27rem;
}
@media screen and (min-width: 768px) {
  .kv-content {
    padding-left: 75rem;
    margin-top: 90rem;
    margin-left: 0;
  }
}

.kv-content-inner {
  width: 204rem;
}
@media screen and (min-width: 768px) {
  .kv-content-inner {
    width: 400rem;
  }
}

.kv-content-title-en {
  width: 205rem;
  height: 13rem;
  aspect-ratio: 203/13;
}
.kv-content-title-en svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  fill: var(--color-font-white);
}
@media screen and (min-width: 768px) {
  .kv-content-title-en {
    width: 400rem;
    height: 30rem;
  }
}

.kv-content-title {
  margin-top: 7rem;
  font-size: 9.12rem;
  color: var(--color-font-white);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .kv-content-title {
    margin-top: 8rem;
    font-size: 16rem;
  }
}

.kv-content-title-sub {
  margin-top: 10rem;
  font-size: 9rem;
  text-align: center;
  line-height: 1.33;
  letter-spacing: 0.075em;
  color: var(--color-font-white);
  background-color: var(--color-bg-brown);
  padding: 3rem 30rem 3rem 35rem;
}
@media screen and (min-width: 768px) {
  .kv-content-title-sub {
    margin-top: 20rem;
    font-size: 16rem;
    padding: 5rem 20rem 5rem 25rem;
  }
}

.kv-content-text {
  margin-top: 14rem;
  width: 211rem;
  height: 112rem;
  aspect-ratio: 211/112;
}
.kv-content-text img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .kv-content-text {
    margin-top: 65rem;
    width: 570rem;
    height: auto;
  }
}

.kv-content-img {
  position: absolute;
  top: 261rem;
  right: 0;
  width: 161rem;
  height: 324rem;
  aspect-ratio: 161/324;
}
.kv-content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .kv-content-img {
    top: 230rem;
    right: 86rem;
    width: 300rem;
    height: auto;
  }
}

/*!
page > top > about
------------------------------
*/
.about {
  padding: 34rem 0 52rem 0;
  background-color: var(--color-bg-base);
}

.about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
}
@media screen and (min-width: 768px) {
  .about-list {
    gap: 10rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.about-item {
  padding-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
  width: 74rem;
  height: 90rem;
  background-color: var(--color-bg-white);
  border-radius: 100vw;
  border: 0.75rem solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .about-item {
    width: 100rem;
    height: 100rem;
    gap: 4rem;
  }
}

.about-item-img {
  width: 31rem;
  height: 31rem;
  aspect-ratio: 1/1;
}
.about-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about-item-img {
    margin-top: 2rem;
    width: 36rem;
    height: 36rem;
  }
}

.about-item-text {
  margin-top: 1rem;
  font-size: 9.8rem;
  font-weight: 600;
  line-height: 1.33;
  text-align: center;
}
.about-item-text--accent {
  position: relative;
}
.about-item-text--accent::after {
  content: "※";
  position: absolute;
  top: 2rem;
  right: -12rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 7.6rem;
}

.about-text-small {
  margin-top: 11rem;
  font-size: 9rem;
  line-height: 1.44;
  text-align: center;
  color: var(--color-font-base-brown-dark);
}
@media screen and (min-width: 768px) {
  .about-text-small {
    margin-top: 12rem;
    font-size: 10rem;
  }
}

.about-text-en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10rem;
  margin-top: 35rem;
  font-size: 14rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .about-text-en {
    font-size: 16rem;
  }
}

.about-text-line {
  width: 10rem;
  height: 0.5rem;
  background-color: var(--color-main);
}

.about-text-main {
  margin-top: 18rem;
  font-size: 13rem;
  line-height: 2.076;
  text-align: center;
  font-family: var(--font-family-hiragino-mincho);
  color: var(--color-font-base-brown-dark);
}
@media screen and (min-width: 768px) {
  .about-text-main {
    font-size: 16rem;
  }
}

.about-line {
  margin-top: 30.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 0.5rem;
  margin-inline: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--color-main)), color-stop(transparent), color-stop(transparent), to(var(--color-main)));
  background-image: linear-gradient(to right, var(--color-main) calc(50% - 17rem), transparent calc(50% - 17rem), transparent calc(50% + 17rem), var(--color-main) calc(50% + 17rem));
  background-size: 100% 1rem;
  /* 線の太さ（高さ） */
  background-repeat: no-repeat;
  background-position: center;
}
.about-line::before {
  content: "";
  display: block;
  width: 7.7rem;
  height: 7.7rem;
  background-color: var(--color-main);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .about-line {
    width: 600rem;
  }
}

.about-product {
  margin-top: 42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24rem;
}
@media screen and (min-width: 768px) {
  .about-product {
    gap: 32rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.about-product-img {
  width: 161rem;
  height: 147rem;
  aspect-ratio: 161/147;
}
.about-product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-product-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14rem;
}

.about-product-culture {
  font-size: 11rem;
  letter-spacing: 0.075em;
  color: var(--color-font-gray-dark);
  border: 0.5rem solid var(--color-font-gray-dark);
  width: 116rem;
  height: 35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-product-price {
  font-size: 13rem;
  font-family: var(--font-family-hiragino-mincho);
  color: var(--color-main);
  border: 0.5rem solid var(--color-main);
  width: 116rem;
  height: 35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}
.about-product-price--tax {
  font-size: 9rem;
}

/*!
page > top > feature
------------------------------
*/
.feature {
  padding: 50rem 0 40rem 0;
}

.feature-list {
  margin-top: 24rem;
}
@media screen and (min-width: 768px) {
  .feature-list {
    margin-top: 28rem;
    width: 400rem;
  }
}

.feature-item {
  padding: 15rem 0 7rem 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20rem;
  border-bottom: 0.5rem solid var(--color-main);
}
.feature-item:not(:first-child) {
  padding: 11rem 0 9rem 25rem;
}

.feature-img {
  width: 32rem;
  height: 32rem;
  aspect-ratio: 1/1;
}
.feature-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .feature-img {
    width: 40rem;
    height: 40rem;
  }
}

.feature-list-text-top {
  font-size: 17rem;
  font-family: var(--font-family-hiragino-mincho);
}
.feature-list-text-top--accent {
  font-size: 6rem;
  vertical-align: top;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .feature-list-text-top--accent {
    font-size: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .feature-list-text-top {
    font-size: 18rem;
  }
}

.feature-list-text-bottom {
  margin-top: -1rem;
  font-size: 10rem;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .feature-list-text-bottom {
    font-size: 12rem;
  }
}

/*!
page > top > point
------------------------------
*/
.point {
  padding: 50rem 0 47rem 0;
  background-color: var(--color-bg-base);
}

@media screen and (min-width: 768px) {
  .point-list {
    width: 500rem;
    margin-inline: auto;
    margin-top: 20rem;
  }
}

.point-item {
  padding: 22rem 12rem 15rem 7rem;
  border-bottom: 0.5rem solid var(--color-main);
}
.point-item:first-child {
  padding-top: 15rem;
}
.point-item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .point-item {
    padding: 22rem 12rem 15rem 7rem;
  }
}

.point-item-number {
  font-size: 33rem;
  font-family: var(--font-family-hiragino-mincho);
  color: var(--color-main);
  line-height: 1;
}

.point-item-content {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.point-item-text-en {
  font-size: 11rem;
  font-family: var(--font-family-en);
  color: var(--color-main);
  letter-spacing: 0.2em;
}

.point-item-title {
  margin-top: 13rem;
  font-size: 16rem;
  line-height: 1.3;
  letter-spacing: 0.075em;
  font-family: var(--font-family-hiragino-mincho);
}

.point-item-text-ja {
  margin-top: 11rem;
  font-size: 10rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .point-item-text-ja {
    font-size: 12rem;
  }
}

.point-item-img {
  margin-top: 5rem;
  width: 118rem;
  height: 126rem;
  aspect-ratio: 117/125;
  border-radius: 2.83rem;
  overflow: hidden;
}
.point-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .point-item-img {
    margin-top: 0;
  }
}

.point-content {
  padding: 22rem 0 16rem 0;
  border-radius: 10rem;
  text-align: center;
  background-color: var(--color-bg-black-point);
}
@media screen and (min-width: 768px) {
  .point-content {
    margin-top: 30rem;
    width: 400rem;
  }
}

.point-content-sub-title {
  font-size: 11rem;
  font-family: var(--font-family-en);
  color: var(--color-main);
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .point-content-sub-title {
    font-size: 12rem;
  }
}

.point-content-title {
  margin-top: 6rem;
  font-size: 16rem;
  font-family: var(--font-family-hiragino-mincho);
  color: var(--color-font-white);
  letter-spacing: 0.075em;
  line-height: 1.44;
}
@media screen and (min-width: 768px) {
  .point-content-title {
    font-size: 18rem;
  }
}

.point-content-title--accent {
  display: block;
  color: var(--color-main);
}

.point-content-text {
  margin-top: 11rem;
  font-size: 10rem;
  line-height: 1.5;
  color: var(--color-font-gray);
}
@media screen and (min-width: 768px) {
  .point-content-text {
    font-size: 11rem;
  }
}

/*!
page > top > for-you
------------------------------
*/
.ingredient {
  padding: 50rem 0 47rem 0;
}

.ingredient-text {
  margin-top: 14rem;
  line-height: 1.6;
  text-align: center;
}

.ingredient-img {
  margin-top: 24rem;
  margin-inline: auto;
  width: 255rem;
  height: 243rem;
  aspect-ratio: 255/243;
}
.ingredient-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*!
page > top > for-you
------------------------------
*/
.for-you {
  padding: 50rem 0 47rem 0;
  background-color: var(--color-bg-base);
}

.for-you-list {
  margin-top: 28rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 37rem 0 41rem;
}
@media screen and (min-width: 768px) {
  .for-you-list {
    margin-top: 40rem;
    width: 400rem;
    margin-inline: auto;
  }
}

.for-you-item {
  padding: 10rem 0 8.5rem 0;
  border-bottom: 0.5rem solid var(--color-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7rem;
}
@media screen and (min-width: 768px) {
  .for-you-item {
    padding: 10rem 0 8.5rem 10rem;
  }
}

.for-you-item-icon {
  width: 14rem;
  height: 10.8rem;
  aspect-ratio: 14/10.8;
  padding-left: 2rem;
}
.for-you-item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*!
page > top > how-to
------------------------------
*/
.how-to {
  padding: 50rem 0 42rem 0;
}

.how-to-text01 {
  margin-top: 17rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .how-to-text01 {
    margin-top: 20rem;
  }
}

.how-to-img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28rem;
  margin-top: 30rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .how-to-img-wrapper {
    margin-top: 40rem;
  }
}

.how-to-img--01 {
  width: 308rem;
  height: 160rem;
}
.how-to-img--02 {
  width: 324rem;
  height: 147rem;
}
.how-to-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.how-to-text02 {
  margin-top: 30rem;
  font-size: 9rem;
  line-height: 1.55;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .how-to-text02 {
    font-size: 12rem;
  }
}

/*!
page > top > design
------------------------------
*/
.design {
  padding: 50rem 0 42rem 0;
  background-color: var(--color-bg-base);
}

.design-img {
  width: 277rem;
  height: 232rem;
  aspect-ratio: 277/232;
  margin-top: 32rem;
  border-radius: 16.5rem;
  overflow: hidden;
}
.design-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .design-img {
    margin-inline: auto;
    margin-top: 40rem;
  }
}

.design-sub-title {
  margin-top: 31rem;
  font-size: 15rem;
  line-height: 1.66;
  font-family: var(--font-family-hiragino-mincho);
  color: var(--color-title);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .design-sub-title {
    margin-top: 20rem;
    font-size: 18rem;
  }
}

.design-text {
  margin-top: 18rem;
  text-align: center;
  color: var(--color-font-base-brown);
}
@media screen and (min-width: 768px) {
  .design-text {
    margin-top: 20rem;
    font-size: 16rem;
  }
}

/*!
page > top > cta
------------------------------
*/
.benefit {
  padding: 52rem 0 50rem 0;
  background-color: var(--color-bg-blue);
}
@media screen and (min-width: 768px) {
  .benefit {
    padding: 80rem 0 70rem 0;
  }
}

.benefit-title {
  font-size: 20rem;
  font-family: var(--font-family-hiragino-mincho);
  color: var(--color-font-blue);
  line-height: 1.25;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .benefit-title {
    font-size: 24rem;
  }
}

.benefit-img01-wrapper {
  margin-top: 14rem;
  position: relative;
  background-image: url("../img/benefit/benefit-img01-sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 317rem;
}
@media screen and (min-width: 768px) {
  .benefit-img01-wrapper {
    margin-top: 20rem;
    margin-inline: auto;
    width: 380rem;
    aspect-ratio: 380/317;
  }
}

.benefit-subtitle {
  position: absolute;
  bottom: 7rem;
  left: 30rem;
  color: var(--color-font-blue);
  font-size: 19rem;
  font-weight: 600;
  line-height: 1.57;
  letter-spacing: 0.05em;
  font-family: var(--font-family-hiragino-mincho);
}

.benefit-text {
  margin-top: 28rem;
  color: var(--color-font-base-brown);
  text-align: center;
  text-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .benefit-text {
    margin-top: 40rem;
    font-size: 14rem;
  }
}

.benefit-list-wrapper {
  margin-top: 21rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-bg-white);
  border-radius: 14.4rem;
  padding: 9rem 10rem 9rem 14rem;
}
@media screen and (min-width: 768px) {
  .benefit-list-wrapper {
    margin-top: 40rem;
    padding: 20rem 24rem 20rem 24rem;
    width: 600rem;
    margin-inline: auto;
    gap: 40rem;
  }
}

.benefit-list-item {
  line-height: 1.58;
  color: var(--color-font-base-brown);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.benefit-list-item::before {
  content: "";
  display: inline-block;
  width: 9rem;
  height: 9rem;
  background-color: var(--color-font-base-brown);
  margin-right: 6rem;
}
@media screen and (min-width: 768px) {
  .benefit-list-item {
    font-size: 14rem;
  }
  .benefit-list-item::before {
    width: 12rem;
    height: 12rem;
  }
}

.benefit-img02 {
  border-radius: 8.9rem;
  width: 84rem;
  height: 97rem;
  aspect-ratio: 84/97;
}
.benefit-img02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .benefit-img02 {
    width: 100rem;
    height: 120rem;
    aspect-ratio: 100/120;
  }
}

.benefit-images {
  margin-top: 22rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7rem;
}
@media screen and (min-width: 768px) {
  .benefit-images {
    margin-top: 40rem;
    gap: 16rem;
  }
}

.benefit-images-item {
  width: 103rem;
  height: 146rem;
}
.benefit-images-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .benefit-images-item {
    width: 200rem;
    height: 250rem;
  }
  .benefit-images-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/*!
page > top > faq
------------------------------
*/
.faq {
  padding: 43rem 0 30rem 0;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 80rem 0 70rem 0;
  }
}

.faq-list {
  margin-top: 28rem;
}
@media screen and (min-width: 768px) {
  .faq-list {
    margin-top: 40rem;
    width: 600rem;
    margin-inline: auto;
  }
}

.faq-list-item {
  padding: 12rem 0 12rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  border-bottom: 0.5rem solid;
  -o-border-image: repeating-linear-gradient(to right, var(--color-main) 0, var(--color-main) 1rem, transparent 1rem, transparent 4rem) 1;
     border-image: repeating-linear-gradient(to right, var(--color-main) 0, var(--color-main) 1rem, transparent 1rem, transparent 4rem) 1;
}
.faq-list-item:last-child {
  border-bottom: none;
  -o-border-image: none;
     border-image: none;
}
@media screen and (min-width: 768px) {
  .faq-list-item {
    padding: 20rem 120rem;
    gap: 8rem;
    border-bottom: 1rem solid;
  }
}

.faq-list-item-question {
  font-size: 15rem;
  font-family: var(--font-family-hiragino-mincho);
  padding-left: 14.7rem;
}
.faq-list-item-question::before {
  content: "Q";
  display: inline-block;
  font-size: 17rem;
  font-family: var(--font-family-times);
  color: var(--color-main);
  margin-right: 9rem;
}
@media screen and (min-width: 768px) {
  .faq-list-item-question {
    font-size: 18rem;
  }
  .faq-list-item-question::before {
    font-size: 18rem;
  }
}

.faq-list-item-answer {
  font-size: 11rem;
  line-height: 1.45;
  margin-left: 14.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 9rem;
}
.faq-list-item-answer::before {
  content: "A";
  display: inline-block;
  left: 0;
  top: 0;
  font-size: 17rem;
  line-height: 1;
  font-family: var(--font-family-times);
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .faq-list-item-answer {
    font-size: 13rem;
  }
  .faq-list-item-answer::before {
    font-size: 18rem;
  }
}

/*!
page > top > strength
------------------------------
*/
.product {
  padding: 45rem 0 40rem 0;
  background-color: var(--color-bg-base);
}
@media screen and (min-width: 768px) {
  .product {
    padding: 100rem 0 80rem 0;
  }
}

.product-item {
  margin-top: 34rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .product-item {
    margin-top: 80rem;
    width: 600rem;
    gap: 10rem;
    margin-inline: auto;
  }
}

.product-item-image {
  width: 99rem;
  height: 259rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .product-item-image {
    width: 160rem;
    height: 400rem;
  }
}

.product-table-row {
  border-bottom: 0.5rem solid var(--color-border);
}

.product-table-head {
  width: 50rem;
  border-right: 0.5rem solid var(--color-border);
  text-align: center;
  font-size: 10rem;
  letter-spacing: 0.05em;
  color: var(--color-font-base-gray);
}
@media screen and (min-width: 768px) {
  .product-table-head {
    width: 80rem;
    font-size: 14rem;
  }
}

.product-table-data {
  padding: 8rem 0 8rem 11rem;
  font-size: 10rem;
  letter-spacing: 0.05em;
  color: var(--color-font-base-gray);
  line-height: 1.4;
}
.product-table-data--letter-spacing {
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .product-table-data {
    padding: 12rem 0 12rem 16rem;
    font-size: 14rem;
  }
}

.product-caution {
  margin-top: 14rem;
  padding: 14rem 16rem 15rem 18rem;
  background-color: var(--color-bg-white);
  position: relative;
}
.product-caution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.55rem;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, var(--color-bg-white)), color-stop(0.8rem, var(--color-bg-white)), color-stop(0.8rem, var(--color-sub)), to(var(--color-sub)));
  background-image: linear-gradient(to right, var(--color-bg-white) 0, var(--color-bg-white) 0.8rem, var(--color-sub) 0.8rem, var(--color-sub) 100%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .product-caution {
    width: 600rem;
    margin-inline: auto;
    margin-top: 40rem;
    padding: 20rem 24rem 20rem 24rem;
  }
}

.product-caution-inner {
  padding-bottom: 16rem;
  border-bottom: 0.5rem solid var(--color-border);
}
.product-caution-inner:last-child {
  padding-top: 12rem;
  padding-bottom: 0;
  border-bottom: none;
}

.product-caution-title {
  font-size: 14rem;
  font-weight: 600;
  color: var(--color-font-base-brown-dark);
  font-family: var(--font-family-hiragino-mincho);
}
@media screen and (min-width: 768px) {
  .product-caution-title {
    font-size: 20rem;
    padding-left: 9rem;
  }
}

.product-caution-list {
  margin-top: 6rem;
}

.product-caution-list-item {
  position: relative;
  font-size: 10rem;
  line-height: 1.6;
  color: var(--color-font-base-brown);
  padding-left: 8rem;
}
.product-caution-list-item::before {
  content: "";
  position: absolute;
  display: block;
  top: 0.8em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 100vw;
  background-color: var(--color-font-base-brown);
}
.product-caution-list-item--flex {
  margin-right: -1.7rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .product-caution-list-item {
    font-size: 14rem;
    padding-left: 24rem;
  }
  .product-caution-list-item::before {
    width: 4rem;
    height: 4rem;
    left: 12rem;
  }
}

/*!
page > top > cta
------------------------------
*/
.cta {
  padding: 60rem 0 56rem 0;
  background-color: var(--color-bg-black-cta);
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 80rem 0 70rem 0;
  }
}

.cta-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14.26rem;
}
@media screen and (min-width: 768px) {
  .cta-inner {
    gap: 20rem;
  }
}