/** Shopify CDN: Minification failed

Line 12:66 Unexpected "*"
Line 5682:4 "oorder" is not a known CSS property

**/
@charset "UTF-8";
/* ==============================================
リセット(1)
============================================== */
/*** The new CSS reset - version 1.8.4 (last updated 14.2.2023) ***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

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

a, button {
  cursor: revert;
}

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

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* ==============================================
リセット(2)
============================================== */
*,
*::before,
*::after {
  margin: 0;
}

html {
  font-size: 10px;
}

body {
  margin: 0;
  font-size: 1rem;
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  color: var(--color-text-dark);
}

h1, h2, h3, h4, h5, h6, p, a, ul, ol, li, th, td, dt, dd {
  color: var(--color-text-dark);
}

ul,
ol {
  margin: 0;
  list-style: none;
  padding-left: 0;
}

/* ==============================================
変数
============================================== */
:root {
  --color-main-brown: #84714f;
  --color-main-orange: #f79320;
  --color-sub-orange: #ce9e67;
  --color-main-green: #03832a;
  --color-main-red: #ff6a6a;
  --color-text-dark: #3b3731;
  --color-text-light: #656565;
  --color-border-dark: #b1b1b1;
  --color-border-light: #e3e3e3;
  --color-bg-white: #ffffff;
  --color-bg-gray: #f5f5f5;
  --color-bg-yellow: #fff8ed;
  --color-marker-yellow: #ffee6a;
  --color-marker-light-yellow: #fff6b4;
  --color-marker-orange: #fddebb;
  --font-family-ja: "Zen Kaku Gothic New", sans-serif;
  --font-family-en: "Jost", sans-serif;
}

/* ==============================================
ユーティリティ
============================================== */
/* ボックス幅 */
.inner-width--narrow {
  margin: 0 auto;
  width: 800px;
}
@media screen and (max-width: 767px) {
  .inner-width--narrow {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.inner-width--medium {
  margin: 0 auto;
  width: 1080px;
}
@media screen and (max-width: 767px) {
  .inner-width--medium {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.inner-width--wide {
  margin: 0 auto;
  width: 1400px;
}
@media screen and (max-width: 767px) {
  .inner-width--wide {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.inner-width--max {
  margin: 0 auto;
  width: 100%;
}

.display-inline--pc {
  display: inline !important;
}
@media screen and (max-width: 767px) {
  .display-inline--pc {
    display: none !important;
  }
}

.display-inline--sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .display-inline--sp {
    display: inline !important;
  }
}

.display-block--pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .display-block--pc {
    display: none !important;
  }
}

.display-block--sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .display-block--sp {
    display: block !important;
  }
}

/* スクリーンリーダー（表示はなし） */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text--orange {
  color: var(--color-main-orange);
}

.text--green {
  color: var(--color-main-green);
}

.text--red {
  color: var(--color-main-red);
}

/* オレンジ背景の角丸ボタン風リンク（大） */
.link--large-button {
  position: relative;
  border-radius: 36px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 15px 67px 15px;
  background: var(--color-main-orange);
  color: var(--color-bg-white);
  text-decoration: none;
  transition: all 0.3s;
}
.link--large-button small {
  width: auto;
  font-size: 1.4rem;
  margin-bottom: 10px;
  flex-grow: 0;
  flex-shrink: 1;
}
.link--large-button span {
  width: auto;
  font-size: 1.8rem;
  flex-grow: 0;
  flex-shrink: 1;
}
.link--large-button::before {
  position: absolute;
  top: calc(50% - 10px);
  left: 26px;
  content: "";
  width: 20px;
  height: 20px;
  background: url("./common-icon-button-arrow.svg") no-repeat center center;
  margin-right: 18px;
  transition: all 0.3s;
}
.link--large-button:hover {
  background: var(--color-sub-orange);
}
.link--large-button:hover::before {
  left: 34px;
}

/* オレンジ背景の角丸ボタン風リンク */
.link--button {
  position: relative;
  border-radius: 36px;
  display: flex;
  width: auto;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 15px 49px 15px 79px;
  background: var(--color-main-orange);
  color: var(--color-bg-white);
  text-decoration: none;
  transition: all 0.3s;
}
.link--button span {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  flex-grow: 0;
  flex-shrink: 1;
}
.link--button::before {
  position: absolute;
  top: calc(50% - 10px);
  left: 39px;
  content: "";
  width: 20px;
  height: 20px;
  background: url("./common-icon-button-arrow.svg") no-repeat center center;
  margin-right: 18px;
  transition: all 0.3s;
}
.link--button:hover {
  background: var(--color-sub-orange);
}
.link--button:hover::before {
  left: 44px;
}

/* オレンジ背景の角丸ボタン風リンク（小） */
.link--small-button {
  position: relative;
  border-radius: 36px;
  display: flex;
  width: auto;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 13px 45px 11px 61px;
  background: var(--color-main-orange);
  color: var(--color-bg-white);
  text-decoration: none;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .link--small-button {
    padding: 12px 19px 12px 44px;
  }
}
.link--small-button span {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  flex-grow: 0;
  flex-shrink: 1;
}
@media screen and (max-width: 767px) {
  .link--small-button span {
    font-size: 1.4rem;
  }
}
.link--small-button::before {
  position: absolute;
  top: calc(50% - 10px);
  left: 25px;
  content: "";
  width: 20px;
  height: 20px;
  background: url("./common-icon-button-arrow.svg") no-repeat center center;
  margin-right: 18px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .link--small-button::before {
    top: calc(50% - 8px);
    left: 19px;
    width: 16px;
    height: 16px;
    background-size: 100%;
  }
}
.link--small-button:hover {
  background: var(--color-sub-orange);
}
.link--small-button:hover::before {
  left: 30px;
}
@media screen and (max-width: 767px) {
  .link--small-button:hover::before {
    left: 19px;
  }
}

.link--back-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 59px;
  border-radius: 30px;
  border: 1px solid var(--color-border-dark);
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  font-size: 1.6rem;
  line-height: 1.7812;
  text-decoration: none;
}
.link--back-button::before {
  width: 20px;
  height: 20px;
  content: "";
  background: url("./common-icon-back-arrow.svg") no-repeat center center;
  margin-right: 8px;
}

.link--primary-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  color: #ffffff;
  background: var(--color-main-orange);
  min-height: 54px;
  padding: 15px 30px;
  transition: all 0.3s;
  text-decoration: none;
  border: 1px solid var(--color-main-orange);
  border-radius: 30px;
}
.link--primary-button:hover {
  color: var(--color-main-orange);
  background: var(--color-bg-white);
}

.link--secondary-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  color: var(--color-main-orange);
  background: var(--color-bg-white);
  min-height: 54px;
  padding: 15px 30px;
  transition: all 0.3s;
  text-decoration: none;
  border: 1px solid var(--color-main-orange);
  border-radius: 30px;
}
.link--secondary-button:hover {
  color: #ffffff;
  background: var(--color-main-orange);
}

/* テキスト下線 + 矢印付き丸リンク */
.link--arrow {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .link--arrow {
    font-size: 1.4rem;
    padding-right: 40px;
  }
}
.link--arrow strong {
  border-bottom: 1px dotted var(--color-text-dark);
}
.link--arrow::after {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-main-orange) url("./common-icon-link-arrow.svg") no-repeat center center;
  content: "";
  margin-left: 9px;
  transition: all 0.3s;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .link--arrow::after {
    width: 28px;
    height: 28px;
    background-size: 13px;
  }
}
.link--arrow:hover {
  color: var(--color-main-brown);
}
.link--arrow:hover::after {
  background: var(--color-sub-orange) url("./common-icon-link-arrow.svg") no-repeat center center;
  content: "";
  margin-left: 19px;
}
@media screen and (max-width: 767px) {
  .link--arrow:hover::after {
    margin-left: 9px;
  }
}

/* テキスト下線 + 矢印付き丸リンク（小） */
.link--small-arrow {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1.7142;
  font-weight: bold;
  text-decoration: none;
}
.link--small-arrow strong {
  border-bottom: 1px dotted var(--color-text-dark);
}
.link--small-arrow::after {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--color-main-orange) url("./common-icon-link-small-arrow.svg") no-repeat center center;
  content: "";
  margin-left: 8px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.link--small-arrow:hover {
  color: var(--color-main-brown);
}
.link--small-arrow:hover::after {
  background: var(--color-sub-orange) url("./common-icon-link-small-arrow.svg") no-repeat center center;
  content: "";
  margin-left: 19px;
}

/* テキスト下線 + 矢印付き丸リンク（小） */
.button--small-arrow {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1.7142;
  font-weight: bold;
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  margin-bottom: 30px;
}
.button--small-arrow strong {
  border-bottom: 1px dotted var(--color-text-dark);
}
.button--small-arrow::after {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--color-main-orange) url("./common-icon-link-small-arrow.svg") no-repeat center center;
  content: "";
  margin-left: 8px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.button--small-arrow:hover {
  color: var(--color-main-brown);
}
.button--small-arrow:hover::after {
  background: var(--color-sub-orange) url("./common-icon-link-small-arrow.svg") no-repeat center center;
  content: "";
  margin-left: 19px;
}

/* マーカー */
mark.marker--light-yellow {
  background: linear-gradient(transparent 60%, var(--color-marker-light-yellow) 60%);
}
mark.marker--yellow {
  background: linear-gradient(transparent 60%, var(--color-marker-yellow) 60%);
}
mark.marker--orange {
  background: linear-gradient(transparent 60%, var(--color-marker-orange) 60%);
}

/* スペース */
.padding-top--0 {
  padding-top: 0 !important;
}

/* ==============================================
エディタ出力部分
============================================== */
.editable-content h1,
.editable-content .h1 {
  font-size: 2.8rem;
  line-height: 1.7142;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .editable-content h1,
  .editable-content .h1 {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
}
.editable-content h2,
.editable-content .h2 {
  color: var(--color-text-dark);
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 0 0 24px 38px;
  border-bottom: 2px dotted var(--color-main-orange);
  background: url("./common-icon-editor-title-logo.svg") no-repeat left top 4px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .editable-content h2,
  .editable-content .h2 {
    font-size: 2.2rem;
    padding: 0 0 12px 30px;
    background-size: 20px;
  }
}
.editable-content h3,
.editable-content .h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  padding: 7px 18px 5px;
  background: var(--color-bg-yellow);
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .editable-content h3,
  .editable-content .h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.editable-content h4,
.editable-content .h4 {
  font-size: 1.7rem;
  line-height: 1.5882;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .editable-content h4,
  .editable-content .h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.editable-content h5,
.editable-content .h5 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .editable-content h5,
  .editable-content .h5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.editable-content h6,
.editable-content .h6 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .editable-content h6,
  .editable-content .h6 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.editable-content p {
  font-size: 1.5rem;
  line-height: 1.9;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .editable-content p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.editable-content strong {
  font-weight: bold;
}
.editable-content a {
  text-decoration: underline;
}
.editable-content a:hover {
  text-decoration: none;
}
.editable-content a.editor-link--arrow {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.editable-content a.editor-link--arrow strong {
  color: var(--color-text-dark);
  padding: 5px 0;
  margin-right: 9px;
  border-bottom: dashed 1px var(--color-text-dark);
}
.editable-content a.editor-link--arrow::after {
  content: "";
  width: 36px;
  height: 36px;
  background: var(--color-main-orange) url("./common-icon-editor-link-arrow.svg") no-repeat center center;
  border-radius: 50%;
}
.editable-content a.editor-link--arrow:hover strong {
  margin-right: 19px;
  color: var(--color-main-brown);
}
.editable-content a.editor-link--arrow:hover::after {
  background: var(--color-sub-orange) url("./common-icon-editor-link-arrow.svg") no-repeat center center;
}
.editable-content a.editor-link--button {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 49px 15px 39px;
  background: var(--color-main-orange);
  color: var(--color-bg-white);
  transition: all 0.3s;
}
.editable-content a.editor-link--button::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("./common-icon-editor-button-arrow.svg") no-repeat center center;
  margin-right: 18px;
}
.editable-content a.editor-link--button:hover {
  background: var(--color-sub-orange);
  padding: 15px 49px 15px 44px;
  margin-right: 11px;
}
.editable-content img {
  max-width: 100%;
}
.editable-content ul,
.editable-content ol {
  list-style: none;
}
.editable-content ul {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 44px;
}
.editable-content ul li {
  margin-bottom: 12px;
}
.editable-content ul > li {
  position: relative;
  padding-left: 26px;
}
.editable-content ul > li::before {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--color-main-orange);
  background: var(--color-main-orange);
  border-radius: 50%;
  content: "";
}
.editable-content ul > li > ul > li {
  position: relative;
  padding-left: 26px;
}
.editable-content ul > li > ul > li:first-child {
  margin-top: 10px;
}
.editable-content ul > li > ul > li::before {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--color-main-orange);
  background: var(--color-bg-white);
  border-radius: 50%;
  margin-right: 10px;
  content: "";
}
.editable-content ul > li > ol {
  counter-reset: orderNumber;
}
.editable-content ul > li > ol > li {
  position: relative;
  padding-left: 36px;
}
.editable-content ul > li > ol > li:first-child {
  margin-top: 10px;
}
.editable-content ul > li > ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: var(--color-bg-white);
  font-weight: bold;
  border: 1px solid var(--color-main-orange);
  background: var(--color-main-orange);
  border-radius: 50%;
  counter-increment: orderNumber;
  content: counter(orderNumber);
}
.editable-content ol {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 44px;
  counter-reset: orderNumber;
}
.editable-content ol li {
  margin-bottom: 12px;
}
.editable-content ol > li {
  position: relative;
  padding-left: 36px;
}
.editable-content ol > li:first-child {
  margin-top: 10px;
}
.editable-content ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: var(--color-bg-white);
  font-weight: bold;
  border: 1px solid var(--color-main-orange);
  background: var(--color-main-orange);
  border-radius: 50%;
  counter-increment: orderNumber;
  content: counter(orderNumber);
}
.editable-content ol > li > ul > li {
  position: relative;
  padding-left: 26px;
}
.editable-content ol > li > ul > li:first-child {
  margin-top: 10px;
}
.editable-content ol > li > ul > li::before {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--color-main-orange);
  background: var(--color-bg-white);
  border-radius: 50%;
  content: "";
}
.editable-content ol > li > ol {
  counter-reset: orderNumber;
}
.editable-content ol > li > ol > li {
  position: relative;
  padding-left: 36px;
}
.editable-content ol > li > ol > li:first-child {
  margin-top: 10px;
}
.editable-content ol > li > ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: var(--color-main-orange);
  font-weight: bold;
  border: 1px solid var(--color-main-orange);
  background: var(--color-bg-white);
  border-radius: 50%;
  counter-increment: orderNumber;
  content: counter(orderNumber);
}
.editable-content table {
  width: 100%;
  border: none;
  border-top: solid 1px #aaaaaa;
}
.editable-content table th {
  background: #f9f9f9;
}
.editable-content table th,
.editable-content table td {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 16px 16px 16px 20px;
  border: none;
  border-bottom: solid 1px #aaaaaa;
  border-right: solid 1px #e3e3e3;
}
.editable-content table th:last-child,
.editable-content table td:last-child {
  border-right: none;
}
.editable-content hr {
  display: block;
  width: 31.25%;
  height: 2px;
  background: #e3e3e3;
  border: none;
  margin: 100px auto;
}

/* ==============================================
基本レイアウト
============================================== */
.layout {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .layout {
    padding-top: 66px;
  }
}

.layout__header {
  border-bottom: 1px solid var(--color-border-light);
}

.layout__main-visual {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .layout__main-visual {
    flex-wrap: wrap;
  }
}

.layout__footer {
  color: #ffffff;
  background: #5f5034;
  padding-top: 95px;
  padding-bottom: 97px;
}
@media screen and (max-width: 767px) {
  .layout__footer {
    padding: 72px 20px;
  }
}

/* ==============================================
共通パーツ
============================================== */
/* ヘッダー上部アナウンスバー */
.announcement-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background: var(--color-main-brown);
  padding: 10px;
}
.announcement-bar .announcement__list {
  text-align: center;
}
.announcement-bar .announcement__list .announcement__item {
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.9rem;
  font-weight: bold;
}
.announcement-bar .announcement__list .announcement__link {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.announcement-bar .announcement__list .announcement__link::after {
  width: 13px;
  height: 19px;
  content: "";
  margin-left: 17px;
  background: url("./common-icon-announcement-arrow.svg") no-repeat left center;
}
.announcement-bar .announcement__list .announcement__link:hover {
  text-decoration: underline;
}

/* ヘッダーメインメニュー */
.header--primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 112px;
  background: var(--color-bg-white);
  padding-right: 230px;
  padding-left: 38px;
}
@media screen and (max-width: 767px) {
  .header--primary {
    height: 66px;
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    z-index: 9999;
    display: block;
    width: 100%;
    padding-top: 19px;
    padding-left: 21px;
  }
}
.header--primary .header-logo {
  padding-top: 7px;
}
@media screen and (max-width: 767px) {
  .header--primary .header-logo {
    width: 140px;
    padding-top: 0;
  }
}
.header--primary .header-nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 30px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .header--primary .header-nav__list {
    display: none;
  }
}
.header--primary .header-nav__list li a {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
}
.header--primary .header-nav__list li a:hover {
  text-decoration: underline;
}

/* ヘッダーサブメニュー */
.header--secondary .header-fixed-nav {
  position: fixed;
  display: block;
  width: 180px;
  height: 52px;
  top: 68px;
  right: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 12px;
  z-index: 10000;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header--secondary .header-fixed-nav {
    top: 12px;
    right: 16px;
    width: 152px;
    height: 42px;
  }
}
.header--secondary .header-fixed-nav.is-moved {
  top: 32px;
}
@media screen and (max-width: 767px) {
  .header--secondary .header-fixed-nav.is-moved {
    top: 12px;
  }
}
.header--secondary .header-fixed-nav.is-drawer-open {
  top: 11px;
}
.header--secondary .header-fixed-nav .nav-button__item {
  position: relative;
  border: 2px solid var(--color-text-dark);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  content: "";
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header--secondary .header-fixed-nav .nav-button__item {
    width: 42px;
    height: 42px;
  }
}
.header--secondary .header-fixed-nav #nav-button-account {
  background: var(--color-bg-white) url("./common-header-icon-account.svg") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .header--secondary .header-fixed-nav #nav-button-account {
    background-size: 15px;
  }
}
.header--secondary .header-fixed-nav #nav-button-cart {
  background: var(--color-bg-white) url("./common-header-icon-cart.svg") no-repeat center center;
  /* カートに入っている商品数表示 */
}
@media screen and (max-width: 767px) {
  .header--secondary .header-fixed-nav #nav-button-cart {
    background-size: 17px;
  }
}
.header--secondary .header-fixed-nav #nav-button-cart .cart-count-bubble {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -4px;
  left: 37px;
  min-width: 22px;
  height: 22px;
  background: var(--color-main-red);
  color: #ffffff;
  border-radius: 11px;
}
.header--secondary .header-fixed-nav #nav-button-cart .cart-count-bubble .count {
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header--secondary .header-fixed-nav #nav-button-cart .cart-count-bubble {
    top: -4px;
    left: auto;
    right: -3px;
    min-width: 18px;
    height: 18px;
  }
  .header--secondary .header-fixed-nav #nav-button-cart .cart-count-bubble .count {
    font-size: 1rem;
  }
}
.header--secondary .header-fixed-nav #nav-button-menu {
  background: var(--color-bg-white) url("./common-header-icon-menu.svg") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .header--secondary .header-fixed-nav #nav-button-menu {
    background-size: 15px;
  }
}
.header--secondary .header-fixed-nav #nav-button-menu.is-open {
  background: var(--color-bg-white) url("./common-icon-drawer-cross.svg") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .header--secondary .header-fixed-nav #nav-button-menu.is-open {
    background-size: 12px;
  }
}

/* ドロワーメニュー */
.header--drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.25);
  content: "";
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  /* OPENしている時 */
}
.header--drawer.is-open {
  right: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.header--drawer .drawer-nav {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-bg-white);
  width: 331px;
  height: 100%;
  overflow-x: scroll;
  padding: 86px 0;
}
@media screen and (max-width: 767px) {
  .header--drawer .drawer-nav {
    width: 80%;
  }
}
.header--drawer .drawer-nav--main-menu {
  border-top: 1px solid var(--color-border-light);
}
.header--drawer .drawer-nav--main-menu li {
  border-bottom: 1px solid var(--color-border-light);
}
.header--drawer .drawer-nav--main-menu li a {
  display: flex;
  align-items: center;
  padding: 22px 43px 18px;
  background: url("./common-icon-drawer-arrow.svg") no-repeat left 21px center;
  text-decoration: none;
}
.header--drawer .drawer-nav--main-menu li a .link--en {
  font-size: 1.6rem;
  line-height: 1.3125;
  margin-right: 15px;
}
.header--drawer .drawer-nav--main-menu li a .link--ja {
  font-size: 1.3rem;
  line-height: 1.4615;
}
.header--drawer .drawer-nav--blogs {
  padding: 32px 20px;
  border-bottom: 1px solid var(--color-border-light);
}
.header--drawer .drawer-nav--blogs li {
  margin-bottom: 16px;
}
.header--drawer .drawer-nav--blogs li:last-child {
  margin-bottom: 0;
}
.header--drawer .drawer-nav--blogs li a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.4;
  text-decoration: none;
}
.header--drawer .drawer-nav--blogs li a:hover {
  text-decoration: underline;
}
.header--drawer .drawer-nav--sns {
  padding: 32px 21px;
  display: flex;
  align-items: center;
}
.header--drawer .drawer-nav--sns li {
  width: 20px;
  height: 20px;
  margin-right: 17px;
}
.header--drawer .drawer-nav--sns li a {
  display: block;
  width: 20px;
  height: 20px;
}
.header--drawer .drawer-nav--sns li.drawer-nav__item--facebook a {
  background: url("./common-icon-facebook-drawer.svg") no-repeat center center;
}
.header--drawer .drawer-nav--sns li.drawer-nav__item--threads a {
  background: url("./common-icon-threads-drawer.svg") no-repeat center center;
}
.header--drawer .drawer-nav--sns li.drawer-nav__item--tiktok a {
  background: url("./common-icon-tiktok-drawer.svg") no-repeat center center;
}
.header--drawer .drawer-nav--sns li.drawer-nav__item--twitter a {
  background: url("./common-icon-twitter-drawer.svg") no-repeat center center;
}
.header--drawer .drawer-nav--sns li.drawer-nav__item--instagram a {
  background: url("./common-icon-instagram-drawer.svg") no-repeat center center;
}
.header--drawer .drawer-nav--info {
  padding-left: 20px;
  padding-bottom: 50px;
}
.header--drawer .drawer-nav--info li {
  margin-bottom: 12px;
}
.header--drawer .drawer-nav--info li a {
  font-size: 1.2rem;
  line-height: 1.4166;
  text-decoration: none;
}
.header--drawer .drawer-nav--info li a:hover {
  text-decoration: underline;
}

/* ヘッダー下部商品ナビゲーション */
.product-nav {
  padding: 16px;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-light);
}
@media screen and (max-width: 767px) {
  .product-nav {
    padding: 16px 20px;
  }
}
.product-nav .product-nav__list {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  width: auto;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .product-nav .product-nav__list {
    justify-content: flex-start;
  }
}
.product-nav .product-nav__list::-webkit-scrollbar {
  display: none;
}
.product-nav .product-nav__list li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.product-nav .product-nav__list li a {
  font-size: 1.4rem;
  line-height: 2rem;
  text-decoration: none;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .product-nav .product-nav__list li a {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.product-nav .product-nav__list li a:hover {
  text-decoration: underline;
}
.product-nav .product-nav__list li::after {
  width: 20px;
  height: 20px;
  content: "";
  background: url("./common-icon-product-nav-arrow.svg") no-repeat center center;
  margin-left: 8px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .product-nav .product-nav__list li::after {
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background-size: cover;
  }
}

/* ページネーション */
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 13px;
  row-gap: 13px;
}
.pagination__list li {
  width: 30px;
  height: 30px;
}
.pagination__list li .pagination__item {
  display: flex;
  height: 30px;
  justify-content: center;
  align-items: center;
  color: #656565;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 15px;
}
.pagination__list li .pagination__item:hover {
  color: #ffffff;
  background: #656565;
}
.pagination__list li .pagination__item.pagination__item--prev {
  transform: rotate(180deg);
  background: url("./common-icon-pagination-arrow-left.svg") no-repeat center center;
}
.pagination__list li .pagination__item.pagination__item--next {
  background: url("./common-icon-pagination-arrow-left.svg") no-repeat center center;
}
.pagination__list li .pagination__item.pagination__item--current {
  display: flex;
  height: 30px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background: #656565;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 15px;
}

/* 購入するボタン */
.scroll-to-buy-button {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  z-index: 999;
  width: 100%;
  height: 72px;
  padding: 15px;
  bottom: 0;
  right: 0;
}
@media (min-width: 781px) {
  .scroll-to-buy-button {
    width: 102px;
    height: 102px;
    bottom: 21px;
    right: 21px;
    background: transparent;
    border-radius: 50%;
    padding: 0;
  }
}
.scroll-to-buy-button .link--buy-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: bold;
  border-radius: 5px;
  background: var(--color-main-orange);
  text-decoration: none;
  padding: 9px 43px;
}
.scroll-to-buy-button .link--buy-button::after {
  width: 13px;
  height: 13px;
  margin-left: 6px;
  border-radius: 50%;
  content: "";
  background: url("./common-icon-button-arrow.svg") no-repeat center center;
}
@media (min-width: 781px) {
  .scroll-to-buy-button .link--buy-button {
    align-items: flex-start;
    width: 102px;
    height: 102px;
    line-height: 1.3334;
    text-align: center;
    border-radius: 50%;
    padding: 25px 15px 0;
  }
  .scroll-to-buy-button .link--buy-button::after {
    transform: rotate(90deg);
    width: 16px;
    height: 16px;
    margin-left: 0;
  }
}

/* パンくずリスト */
.breadcrumb {
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 20px;
  }
}
.breadcrumb .breadcrumb__list {
  width: 1080px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .breadcrumb .breadcrumb__list {
    width: 100%;
  }
}
.breadcrumb .breadcrumb__list li {
  margin-right: 10px;
}
.breadcrumb .breadcrumb__list li a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: 2.375;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .breadcrumb .breadcrumb__list li a {
    font-size: 1.1rem;
  }
}
.breadcrumb .breadcrumb__list li a::after {
  width: 5px;
  height: 7px;
  content: "";
  background: url("./common-icon-breadcrumb-arrow.svg") no-repeat center center;
  margin-left: 10px;
}
.breadcrumb .breadcrumb__list li span {
  font-size: 1.2rem;
  line-height: 2.375;
}

/* フッター上部 */
.footer-top {
  width: 1080px;
  margin: 0 auto;
  margin-bottom: 38px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer-top {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }
}
.footer-top .footer-top--primary {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--primary {
    width: 100%;
  }
}
.footer-top .footer-top--primary .footer-logo {
  margin-bottom: 153px;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--primary .footer-logo {
    width: 228px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }
}
.footer-top .footer-top--primary .footer-contact {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--primary .footer-contact {
    margin-bottom: 54px;
  }
}
.footer-top .footer-top--primary .footer-contact__image {
  width: 90px;
  height: 90px;
  margin-right: 21px;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--primary .footer-contact__image {
    width: 64px;
    height: 64px;
  }
}
.footer-top .footer-top--primary .footer-contact__text {
  position: relative;
  width: 246px;
  background: var(--color-bg-white);
  border-radius: 18px;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--primary .footer-contact__text {
    top: 20px;
    width: 234px;
  }
}
.footer-top .footer-top--primary .footer-contact__text::before {
  position: absolute;
  display: block;
  width: 19px;
  height: 19px;
  content: "";
  z-index: 2;
  background: transparent url("./common-footer-speech-bubble.svg") no-repeat left center;
  top: 9px;
  left: -11px;
}
.footer-top .footer-top--primary .footer-contact__text a {
  display: flex;
  align-items: center;
  color: #5F5034;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 14px 14px 14px 23px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--primary .footer-contact__text a {
    font-size: 1.3rem;
    padding: 12px 12px 12px 24px;
  }
}
.footer-top .footer-top--primary .footer-contact__text a::after {
  display: flex;
  width: 23px;
  height: 23px;
  content: "";
  margin-left: 35px;
  border-radius: 50%;
  background: var(--color-main-orange) url("./common-icon-link-small-arrow.svg") no-repeat center center;
}
.footer-top .footer-top--secondary {
  display: flex;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary {
    width: 100%;
    flex-wrap: wrap;
  }
}
.footer-top .footer-top--secondary .footer-nav--main {
  padding-left: 118px;
  margin-right: 93px;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--main {
    width: 100%;
    padding-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--main-menu {
    margin-bottom: 32px;
    border-top: 1px solid #84714f;
  }
}
.footer-top .footer-top--secondary .footer-nav--main-menu li {
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--main-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid #84714f;
  }
}
.footer-top .footer-top--secondary .footer-nav--main-menu li a {
  display: block;
  padding-left: 22px;
  color: #ffffff;
  background: url("./common-icon-drawer-arrow.svg") no-repeat left top 4px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--main-menu li a {
    display: flex;
    align-items: center;
    column-gap: 17px;
    padding: 23px 0 18px 30px;
    background: url("./common-icon-drawer-arrow.svg") no-repeat left 8px center;
  }
}
.footer-top .footer-top--secondary .footer-nav--main-menu li a .link--en {
  display: block;
  font-size: 1.8rem;
  line-height: 1.1667;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--main-menu li a .link--en {
    display: inline-flex;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}
.footer-top .footer-top--secondary .footer-nav--main-menu li a .link--ja {
  display: block;
  font-size: 1.3rem;
  line-height: 1.4615;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--main-menu li a .link--ja {
    display: inline-flex;
    font-size: 1.2rem;
  }
}
.footer-top .footer-top--secondary .footer-nav--main-menu li a:hover .link--ja {
  text-decoration: underline;
}
.footer-top .footer-top--secondary .footer-nav--sub {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--sub {
    width: 100%;
  }
}
.footer-top .footer-top--secondary .footer-nav--blogs {
  border-bottom: 1px solid #84714f;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--blogs {
    width: 100%;
    margin-bottom: 23px;
  }
}
.footer-top .footer-top--secondary .footer-nav--blogs li {
  margin-bottom: 16px;
}
.footer-top .footer-top--secondary .footer-nav--blogs li:last-child {
  margin-bottom: 0;
}
.footer-top .footer-top--secondary .footer-nav--blogs li a {
  font-size: 1.3rem;
  line-height: 1.4615;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--blogs li a {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.footer-top .footer-top--secondary .footer-nav--blogs li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--info {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 21px;
    row-gap: 8px;
  }
}
.footer-top .footer-top--secondary .footer-nav--info li {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--info li {
    margin-bottom: 0;
  }
}
.footer-top .footer-top--secondary .footer-nav--info li:last-child {
  margin-bottom: 0;
}
.footer-top .footer-top--secondary .footer-nav--info li a {
  font-size: 1.2rem;
  line-height: 1.4166;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer-top .footer-top--secondary .footer-nav--info li a {
    font-size: 1.3rem;
  }
}
.footer-top .footer-top--secondary .footer-nav--info li a:hover {
  text-decoration: underline;
}

/* フッター下部 */
.footer-bottom {
  width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    width: 100%;
    flex-wrap: wrap;
  }
}
.footer-bottom .footer-bottom--primary {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 102px;
  order: 2;
}
@media screen and (max-width: 767px) {
  .footer-bottom .footer-bottom--primary {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 0;
    order: 1;
    margin-bottom: 74px;
  }
}
@media screen and (max-width: 767px) {
  .footer-bottom .footer-bottom--primary .footer-nav--mypage {
    width: 100%;
    margin-bottom: 25px;
  }
}
.footer-bottom .footer-bottom--primary .footer-nav--mypage ul {
  display: flex;
  align-items: center;
}
.footer-bottom .footer-bottom--primary .footer-nav--mypage ul .footer-nav-mypage__item--account {
  margin-right: 55px;
}
@media screen and (max-width: 767px) {
  .footer-bottom .footer-bottom--primary .footer-nav--mypage ul .footer-nav-mypage__item--account {
    margin-right: 43px;
  }
}
.footer-bottom .footer-bottom--primary .footer-nav--mypage ul .footer-nav-mypage__item a {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  line-height: 1.4615;
  color: #ffffff;
  text-decoration: none;
}
.footer-bottom .footer-bottom--primary .footer-nav--mypage ul .footer-nav-mypage__item a:hover {
  text-decoration: underline;
}
.footer-bottom .footer-bottom--primary .footer-nav--mypage ul .footer-nav-mypage__item a::before {
  display: inline-block;
  width: 22px;
  height: 18px;
  content: "";
  margin-right: 13px;
}
@media screen and (max-width: 767px) {
  .footer-bottom .footer-bottom--primary .footer-nav--mypage ul .footer-nav-mypage__item a::before {
    width: 20px;
    height: 20px;
    background-size: 100%;
  }
}
.footer-bottom .footer-bottom--primary .footer-nav--mypage ul .footer-nav-mypage__item--account a::before {
  background: url("./common-footer-icon-account.svg") no-repeat center center;
}
.footer-bottom .footer-bottom--primary .footer-nav--mypage ul .footer-nav-mypage__item--cart a::before {
  background: url("./common-footer-icon-cart.svg") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .footer-bottom .footer-bottom--primary .footer-nav--sns {
    width: 100%;
  }
}
.footer-bottom .footer-bottom--primary .footer-nav--sns ul {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 22px;
  align-items: center;
  padding-left: 45px;
  border-left: 1px solid #84714f;
}
@media screen and (max-width: 767px) {
  .footer-bottom .footer-bottom--primary .footer-nav--sns ul {
    padding-left: 0;
  }
}
.footer-bottom .footer-bottom--primary .footer-nav--sns ul .footer-nav-sns__item a {
  width: 25px;
  height: 25px;
  content: "";
  display: block;
}
.footer-bottom .footer-bottom--primary .footer-nav--sns ul .footer-nav-sns__item--facebook a {
  background: url("./common-footer-icon-facebook.svg") no-repeat center center;
}
.footer-bottom .footer-bottom--primary .footer-nav--sns ul .footer-nav-sns__item--threads {
  background: url("./common-footer-icon-threads.svg") no-repeat center center;
}
.footer-bottom .footer-bottom--primary .footer-nav--sns ul .footer-nav-sns__item--tiktok {
  background: url("./common-footer-icon-tiktok.svg") no-repeat center center;
}
.footer-bottom .footer-bottom--primary .footer-nav--sns ul .footer-nav-sns__item--twitter {
  background: url("./common-footer-icon-twitter.svg") no-repeat center center;
}
.footer-bottom .footer-bottom--primary .footer-nav--sns ul .footer-nav-sns__item--instagram {
  background: url("./common-footer-icon-instagram.svg") no-repeat center center;
}
.footer-bottom .footer-bottom--secondary {
  order: 1;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer-bottom .footer-bottom--secondary {
    width: 100%;
    order: 2;
  }
}
.footer-bottom .footer-bottom--secondary .footer-company-name,
.footer-bottom .footer-bottom--secondary .footer-address {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #ffffff;
}
.footer-bottom .footer-bottom--secondary .footer-company-name a,
.footer-bottom .footer-bottom--secondary .footer-address a {
  color: #ffffff;
}
.footer-bottom .footer-bottom--secondary .footer-address {
  margin-bottom: 19px;
}
.footer-bottom .footer-bottom--secondary .footer-copyright {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #ffffff;
}

/* ==============================================
トップページ
============================================== */
/* メインビジュアル写真とキャッチコピー部分 */
@keyframes mv-animation-v {
  100% {
    background-position: 0 -10000%;
  }
}
/* メインビジュアル写真とキャッチコピー部分 */
@keyframes mv-animation-h {
  100% {
    background-position: -10000% 0;
  }
}
.index {
}
.index #section--home-visual {
}
.index #section--home-visual .main-visual__title {
  order: 2;
  width: 40%;
  background: #fcead0;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .index #section--home-visual .main-visual__title {
    width: 100%;
    padding-top: 0;
    padding-bottom: 56px;
  }
}
@media screen and (max-width: 767px) {
  .index #section--home-visual .main-visual__title .brand-image img {
    margin-left: auto;
    margin-right: auto;
  }
}
.index #section--home-visual .main-visual__title .brand-title {
  text-align: center;
}
.index #section--home-visual .main-visual__title .brand-logo {
  display: inline-block;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .index #section--home-visual .main-visual__title .brand-logo {
    margin-bottom: 13px;
  }
}
.index #section--home-visual .main-visual__description {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  order: 1;
  width: 60%;
  background: url("./home-main-visual.jpg");
  animation: mv-animation-v 1500s linear infinite;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .index #section--home-visual .main-visual__description {
    align-items: flex-start;
    width: 100%;
    height: 432px;
    background: url("./home-main-visual-sp.jpg");
    animation: mv-animation-h 1500s linear infinite;
  }
}
.index #section--home-visual .main-visual__description .brand-message {
  padding-bottom: 48px;
  padding-left: 52px;
}
@media screen and (max-width: 767px) {
  .index #section--home-visual .main-visual__description .brand-message {
    padding-top: 175px;
    padding-bottom: 0;
    padding-left: 10px;
  }
}
.index #section--home-visual .main-visual__description .brand-message span {
  display: inline-block;
  font-size: 2.6rem;
  line-height: 4.7rem;
  background: var(--color-bg-white);
  font-weight: bold;
  padding: 1px 8px 0;
}
@media screen and (max-width: 767px) {
  .index #section--home-visual .main-visual__description .brand-message span {
    font-size: 2.3rem;
    line-height: 3.4rem;
  }
}
.index #section--home-visual .main-visual__description .brand-message span:first-child {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .index #section--home-visual .main-visual__description .brand-message span:first-child {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .index #section--home-visual .main-visual__description .main-visual__wave {
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100vw;
  }
  .index #section--home-visual .main-visual__description .main-visual__wave img {
    width: 100%;
  }
}
.index #section--home-banner .banner__list {
  display: flex;
  align-items: center;
  column-gap: 30px;
  justify-content: center;
  padding: 60px 57px 50px;
}
.index #section--home-banner .banner__list li {
  width: 320px;
}
@media screen and (max-width: 767px) {
  .index #section--home-banner .banner__list {
    padding: 32px 57px;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 24px;
  }
  .index #section--home-banner .banner__list li {
    width: 100%;
  }
}
.index #section--home-banner .banner__list a {
  display: block;
  opacity: 1;
  transition: all 0.3s;
  border-radius: 10px;
  overflow: hidden;
}
.index #section--home-banner .banner__list a:hover {
  opacity: 0.7;
}
.index #section--home-vegemari {
  background: url("./home-vegemari-bg-carrot.png") no-repeat left calc(50% - 465px) top 92px, url("./home-vegemari-bg-spoon.png") no-repeat right calc(50% - 610px) top 70px, url("./home-vegemari-bg-lotus-root.png") no-repeat right calc(50% - 650px) bottom 227px, var(--color-bg-yellow);
  padding: 52px 20px 37px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari {
    background: url("./home-vegemari-bg-carrot.png") no-repeat left calc(50% - 205px) top 192px/260px, url("./home-vegemari-bg-spoon.png") no-repeat right calc(50% - 220px) top -30px/240px, url("./home-vegemari-bg-lotus-root.png") no-repeat right calc(50% - 230px) bottom 187px/260px, var(--color-bg-yellow);
    padding: 39px 20px 56px;
  }
}
.index #section--home-vegemari::after {
  position: absolute;
  bottom: -56px;
  left: calc(50% - 510px);
  display: block;
  width: 207px;
  height: 178px;
  content: "";
  background: url("./home-vegemari-bg-beet.png") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari::after {
    bottom: -36px;
    left: 20px;
    display: block;
    width: 126px;
    height: 109px;
    content: "";
    background: url("./home-vegemari-bg-beet.png") no-repeat center center/100%;
  }
}
.index #section--home-vegemari .layout__section--inner {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .layout__section--inner {
    width: 100%;
  }
}
.index #section--home-vegemari .home-vegemari__title {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__title {
    margin-bottom: 38px;
  }
}
.index #section--home-vegemari .home-vegemari__title .title__label {
  width: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__title .title__label {
    width: 176px;
    margin-bottom: 14px;
  }
}
.index #section--home-vegemari .home-vegemari__title .title__text {
  width: 100%;
  text-align: center;
}
.index #section--home-vegemari .home-vegemari__title .title__text span {
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__title .title__text span {
    font-size: 2.2rem;
  }
}
.index #section--home-vegemari .home-vegemari__title .title__text strong {
  display: block;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__title .title__text strong {
    margin-top: 10px;
  }
}
.index #section--home-vegemari .home-vegemari__title .title__text strong,
.index #section--home-vegemari .home-vegemari__title .title__text strong > span {
  font-size: 4rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__title .title__text strong,
  .index #section--home-vegemari .home-vegemari__title .title__text strong > span {
    font-size: 3rem;
  }
}
.index #section--home-vegemari .home-vegemari__image {
  margin: 0 auto 42px;
  text-align: center;
}
.index #section--home-vegemari .home-vegemari__image img {
  margin: auto;
}
.index #section--home-vegemari .home-vegemari__intro {
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__intro {
    flex-wrap: wrap;
  }
}
.index #section--home-vegemari .home-vegemari__intro .intro__image {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__intro .intro__image {
    width: 100%;
    height: 220px;
  }
}
.index #section--home-vegemari .home-vegemari__intro .intro__image--vegetable {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__intro .intro__image--vegetable {
    left: calc(50% - 186px);
  }
}
.index #section--home-vegemari .home-vegemari__intro .intro__image--family {
  position: absolute;
  top: 155px;
  left: 210px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__intro .intro__image--family {
    left: calc(50% - 22px);
    top: 24px;
  }
}
.index #section--home-vegemari .home-vegemari__intro .intro__text {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 52px;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__intro .intro__text {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2.14;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
  }
}
.index #section--home-vegemari .home-vegemari__intro .intro__text p:first-child {
  margin-bottom: 36px;
}
.index #section--home-vegemari .home-vegemari__intro .intro__description {
  margin-bottom: 52px;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__intro .intro__description {
    margin-bottom: 40px;
  }
}
.index #section--home-vegemari .home-vegemari__intro .intro__link--starter-set {
  margin-bottom: 52px;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__intro .intro__link--starter-set {
    margin-bottom: 40px;
  }
}
.index #section--home-vegemari .home-vegemari__intro .intro__link--starter-set .button-group {
  display: flex;
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__intro .intro__link--starter-set .button-group {
    margin-left: auto;
  }
  .index #section--home-vegemari .home-vegemari__intro .intro__link--starter-set .button-group .link--large-button {
    width: 100%;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .index #section--home-vegemari .home-vegemari__intro .intro__link--other-set .link--arrow {
    justify-content: flex-end;
    padding-right: 0;
  }
}
.index #section--home-scene {
  padding-top: 80px;
  padding-bottom: 130px;
  background: url("./home-scene-bg-family.png") no-repeat top 194px left calc(50% - 444px), url("./home-scene-bg-smile.png") no-repeat top 116px right calc(50% - 420px);
}
@media screen and (max-width: 767px) {
  .index #section--home-scene {
    padding-top: 73px;
    padding-bottom: 0;
    background: url("./home-scene-bg-family.png") no-repeat top 314px left -20px/227px, url("./home-scene-bg-smile.png") no-repeat top 320px right 20px/119px;
  }
}
.index #section--home-scene .layout__section--inner {
  width: 100%;
  margin: 0 auto;
}
.index #section--home-scene .home-scene__heading {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 122px;
}
.index #section--home-scene .home-scene__heading .heading__label {
  width: 100%;
  text-align: center;
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__heading .heading__label {
    width: 108px;
    margin-bottom: 14px;
  }
}
.index #section--home-scene .home-scene__heading .heading__title {
  width: 100%;
  text-align: center;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__heading .heading__title {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 22px;
  }
}
.index #section--home-scene .home-scene__heading .heading__description {
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__heading .heading__description {
    font-size: 1.8rem;
    margin-bottom: 147px;
  }
}
.index #section--home-scene .home-scene__detail .scene__list {
  display: flex;
  column-gap: 4px;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__detail .scene__list {
    flex-wrap: wrap;
  }
}
.index #section--home-scene .home-scene__detail .scene__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: calc((100% - 8px) / 3);
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__detail .scene__item {
    width: 100%;
  }
}
.index #section--home-scene .home-scene__detail .scene__item .scene__item--inner {
  width: 100%;
  padding-top: 64px;
  padding-bottom: 82px;
  position: relative;
}
.index #section--home-scene .home-scene__detail .scene__item .scene__item--inner::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: 0;
}
.index #section--home-scene .home-scene__detail .scene__item.scene__item--dip-party .scene__item--inner {
  background: url("./home-scene-bg-dip-party.jpg") no-repeat center center/cover;
}
.index #section--home-scene .home-scene__detail .scene__item.scene__item--dip-party .scene__item--inner::before {
  background: rgba(132, 113, 79, 0.78);
}
.index #section--home-scene .home-scene__detail .scene__item.scene__item--making-sweets .scene__item--inner {
  background: url("./home-scene-bg-making-sweets.jpg") no-repeat center center/cover;
}
.index #section--home-scene .home-scene__detail .scene__item.scene__item--making-sweets .scene__item--inner::before {
  background: rgba(71, 147, 94, 0.78);
}
.index #section--home-scene .home-scene__detail .scene__item.scene__item--bento .scene__item--inner {
  background: url("./home-scene-bg-bento.jpg") no-repeat center center/cover;
}
.index #section--home-scene .home-scene__detail .scene__item.scene__item--bento .scene__item--inner::before {
  background: rgba(199, 135, 61, 0.78);
}
.index #section--home-scene .home-scene__detail .scene__item .scene__title {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 47px;
  color: #ffffff;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__detail .scene__item .scene__title {
    margin-bottom: 19px;
  }
}
.index #section--home-scene .home-scene__detail .scene__item .scene__title strong {
  color: #ffffff;
}
.index #section--home-scene .home-scene__detail .scene__item .scene__title span {
  padding-top: 14px;
  display: block;
  color: var(--color-marker-yellow);
  font-size: 1.8rem;
  line-height: 1;
}
.index #section--home-scene .home-scene__detail .scene__item:first-child .scene__title strong {
  background: var(--color-main-brown);
}
.index #section--home-scene .home-scene__detail .scene__item:nth-child(2) .scene__title strong {
  background: var(--color-main-green);
}
.index #section--home-scene .home-scene__detail .scene__item:last-child .scene__title strong {
  background: var(--color-main-orange);
}
.index #section--home-scene .home-scene__detail .scene__item .scene__icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-bg-white);
  border-radius: 50%;
  width: 96px;
  height: 96px;
  top: -48px;
  left: 30px;
}
.index #section--home-scene .home-scene__detail .scene__item .scene__combination {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  column-gap: 26px;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__detail .scene__item .scene__combination {
    column-gap: 24px;
  }
}
.index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__type {
  width: 119px;
  text-align: center;
}
.index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__type img {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__type img {
    margin-bottom: 5px;
  }
}
.index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__type span {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__type span {
    font-size: 1.6rem;
  }
}
.index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__cross {
  padding-bottom: 80px;
}
.index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__product {
  width: 119px;
  text-align: center;
}
.index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__product img {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__product img {
    margin-bottom: 5px;
  }
}
.index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__product span {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__detail .scene__item .scene__combination .scene__product span {
    font-size: 1.6rem;
  }
}
.index #section--home-scene .home-scene__detail .scene__item:first-child .scene__combination .scene__type span {
  background: var(--color-main-brown);
}
.index #section--home-scene .home-scene__detail .scene__item:nth-child(2) .scene__combination .scene__type span {
  background: var(--color-main-green);
}
.index #section--home-scene .home-scene__detail .scene__item:last-child .scene__combination .scene__type span {
  background: var(--color-main-orange);
}
.index #section--home-scene .home-scene__detail .scene__item:first-child .scene__combination .scene__product span {
  background: var(--color-main-brown);
}
.index #section--home-scene .home-scene__detail .scene__item:nth-child(2) .scene__combination .scene__product span {
  background: var(--color-main-green);
}
.index #section--home-scene .home-scene__detail .scene__item:last-child .scene__combination .scene__product span {
  background: var(--color-main-orange);
}
.index #section--home-scene .home-scene__detail .scene__item .scene__description {
  position: absolute;
  top: calc(100% - 55px);
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 84px);
  padding: 26px 32px;
  border-radius: 16px;
  background: var(--color-bg-white);
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .index #section--home-scene .home-scene__detail .scene__item .scene__description {
    position: relative;
    font-size: 1.4rem;
    top: -50px;
  }
}
.index #section--home-favorite {
  position: relative;
  padding: 128px 0 95px;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite {
    padding: 93px 0 0;
  }
}
.index #section--home-favorite::before {
  position: absolute;
  display: block;
  width: 470px;
  height: 470px;
  top: 0;
  left: calc(50% - 235px);
  content: "";
  border-radius: 50%;
  background: var(--color-bg-yellow) url("./home-favorite-bg-title.png") no-repeat center top 74px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite::before {
    background: var(--color-bg-yellow) url("./home-favorite-bg-title.png") no-repeat center top 54px;
  }
}
.index #section--home-favorite .layout__section--inner {
  position: relative;
  z-index: 2;
  width: 1080px;
  margin: 0 auto;
  background: var(--color-bg-yellow);
  padding: 41px 40px 82px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .layout__section--inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
  }
}
.index #section--home-favorite .home-favorite__title {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__title {
    margin-bottom: 60px;
  }
}
.index #section--home-favorite .home-favorite__title strong {
  width: 100%;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__title strong {
    font-size: 3rem;
    margin-bottom: 27px;
    line-height: 1.5;
  }
}
.index #section--home-favorite .home-favorite__title span {
  width: 100%;
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__title span {
    font-size: 2.2rem;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item {
  position: relative;
  display: flex;
  margin-bottom: 74px;
  padding-left: 265px;
  padding-top: 32px;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item {
    margin-bottom: 0;
    padding-left: 0;
    padding-top: 0;
    flex-wrap: wrap;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__item-detail {
  width: 735px;
  background: var(--color-bg-white);
  border-radius: 10px;
  padding: 30px 32px 23px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__item-detail {
    width: 100%;
    order: 2;
    position: relative;
    top: -100px;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__item-image {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__item-image {
    position: static;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    order: 1;
  }
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__item-image img {
    width: 100%;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__item-icon {
  position: absolute;
  width: 96px;
  height: 96px;
  top: -52px;
  left: 20px;
  right: auto;
  z-index: 5;
}
.index #section--home-favorite .home-favorite__list .favorite__item.favorite__item--reversed {
  padding-left: 0;
  padding-right: 265px;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item.favorite__item--reversed {
    padding-right: 0;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item.favorite__item--reversed .favorite__item-image {
  left: auto;
  right: 0;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item.favorite__item--reversed .favorite__item-image {
    right: auto;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item.favorite__item--reversed .favorite__item-icon {
  left: auto;
  right: 20px;
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px dashed #707070;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top {
    flex-wrap: wrap;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__text {
  order: 2;
  margin-left: 49px;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__text {
    width: 100%;
    padding-top: 124px;
    margin-left: 0;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__text h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__text h3 {
    font-size: 2.2rem;
    text-align: center;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__text p {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__text p {
    font-size: 1.4rem;
    text-align: center;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__example {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  column-gap: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__example {
    position: absolute;
    top: -65px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__example .favorite__example-item {
  width: 93px;
  text-align: center;
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__example .favorite__example-item img {
  margin-bottom: 7px;
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__example .favorite__example-item span {
  font-size: 1.5em;
  line-height: 1;
  font-weight: bold;
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__example .favorite__cross {
  margin-bottom: 58px;
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__example .favorite__product {
  width: 93px;
  text-align: center;
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__example .favorite__product img {
  margin-bottom: 7px;
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--top .favorite__example .favorite__product span {
  font-size: 1.5em;
  line-height: 1;
  font-weight: bold;
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__icon-yummy {
  position: absolute;
  width: 138px;
  height: 75px;
  top: -20px;
  right: -10px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__icon-yummy {
    width: 100px;
    height: 54px;
    top: -30px;
    right: 0;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom {
  padding-top: 19px;
  display: flex;
  align-items: flex-start;
  column-gap: 23px;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom {
    flex-wrap: wrap;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom .favorite__example-label {
  background: #84714f;
  border-radius: 13px;
  padding: 6px 16px;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: bold;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom .favorite__example-label {
    margin-bottom: 24px;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom .favorite__example-list {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom .favorite__example-list {
    font-size: 1.3rem;
    line-height: 1.3;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom .favorite__example-list .favorite__example-item {
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom .favorite__example-list .favorite__example-item {
    column-gap: 15px;
    margin-bottom: 18px;
  }
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom .favorite__example-list .favorite__example-item:last-child {
  margin-bottom: 0;
}
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom .example__product,
.index #section--home-favorite .home-favorite__list .favorite__item .favorite__text--bottom .example__base {
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-grow: 0;
}
.index #section--home-lineup {
  padding-top: 96px;
  padding-bottom: 171px;
  background: url("./home-lineup-bg-vegetables.jpg") no-repeat center top/contain;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup {
    padding: 110px 20px;
  }
}
.index #section--home-lineup .layout__section--inner {
  width: 1212px;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  background: var(--color-bg-white);
  padding: 81px 66px 0;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .layout__section--inner {
    width: 100%;
    padding: 32px 0 0;
  }
}
.index #section--home-lineup .home-lineup__title {
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__title {
    margin-bottom: 61px;
  }
}
.index #section--home-lineup .home-lineup__title .title__label {
  display: block;
  text-align: center;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__title .title__label {
    margin-bottom: 19px;
  }
}
.index #section--home-lineup .home-lineup__title .title__text {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__title .title__text {
    font-size: 3rem;
    line-height: 1.5;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder {
  margin-bottom: 71px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder {
    margin-bottom: 63px;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__list {
  display: flex;
  column-gap: 16px;
  row-gap: 47px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__list {
    column-gap: 12px;
    row-gap: 28px;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__item {
  width: 258px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__item {
    width: calc((100% - 12px) / 2);
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__image {
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__image {
    margin-bottom: 14px;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__image::before {
  position: absolute;
  display: block;
  content: "";
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__image .image__wrapper {
  border-radius: 10px;
  overflow: hidden;
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__image .image__wrapper img {
  width: 100%;
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--beet .lineup__image::before {
  top: 176px;
  right: 0;
  width: 114px;
  height: 99px;
  background: url("./home-lineup-beet.png") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--beet .lineup__image::before {
    top: auto;
    bottom: -18px;
    right: -6px;
    width: 75px;
    height: 65px;
    background-size: 100%;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--carrot .lineup__image::before {
  top: 200px;
  right: 12px;
  width: 108px;
  height: 79px;
  background: url("./home-lineup-carrot.png") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--carrot .lineup__image::before {
    top: auto;
    bottom: -21px;
    right: 0;
    width: 70px;
    height: 50px;
    background-size: 100%;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--pumpkin .lineup__image::before {
  top: 179px;
  right: 0;
  width: 114px;
  height: 106px;
  background: url("./home-lineup-pumpkin.png") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--pumpkin .lineup__image::before {
    top: auto;
    bottom: -28px;
    right: -6px;
    width: 71px;
    height: 72px;
    background-size: 100%;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--pimento .lineup__image::before {
  top: 193px;
  right: 13px;
  width: 104px;
  height: 86px;
  background: url("./home-lineup-pimento.png") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--pimento .lineup__image::before {
    top: auto;
    bottom: -12px;
    right: 0;
    width: 68px;
    height: 56px;
    background-size: 100%;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--spinach .lineup__image::before {
  top: 200px;
  right: 7px;
  width: 109px;
  height: 79px;
  background: url("./home-lineup-spinach.png") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--spinach .lineup__image::before {
    top: auto;
    bottom: -8px;
    right: 2px;
    width: 71px;
    height: 51px;
    background-size: 100%;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--burdock .lineup__image::before {
  top: 215px;
  right: 12px;
  width: 116px;
  height: 62px;
  background: url("./home-lineup-burdock.png") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--burdock .lineup__image::before {
    top: auto;
    bottom: -8px;
    right: -6px;
    width: 76px;
    height: 40px;
    background-size: 100%;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--lotus-root .lineup__image::before {
  top: 214px;
  right: 13px;
  width: 106px;
  height: 65px;
  background: url("./home-lineup-lotus-root.png") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__item--lotus-root .lineup__image::before {
    top: auto;
    bottom: -8px;
    right: 2px;
    width: 69px;
    height: 42px;
    background-size: 100%;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__text {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__text {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__name {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__name {
    margin-bottom: 12px;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__name .name--ja {
  width: 100%;
  order: 2;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__name .name--ja {
    font-size: 1.2rem;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__name .name--en {
  width: 100%;
  order: 1;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__name .name--en {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__excerpt {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__vegetable-powder .lineup__excerpt {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
}
.index #section--home-lineup .home-lineup__vegetable-powder .lineup__link {
  display: flex;
  justify-content: center;
}
.index #section--home-lineup .home-lineup__others .lineup__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 32px;
  padding-top: 47px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__list {
    row-gap: 53px;
  }
}
.index #section--home-lineup .home-lineup__others .lineup__link {
  position: relative;
  display: flex;
  width: 524px;
  height: 228px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__link {
    width: 100%;
    height: 156px;
  }
}
.index #section--home-lineup .home-lineup__others .lineup__link::after {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-main-orange) url("./common-icon-link-arrow.svg") no-repeat center center;
  content: "";
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__link::after {
    width: 28px;
    height: 28px;
    background-size: 13px;
  }
}
.index #section--home-lineup .home-lineup__others .lineup__link:hover::after {
  background: var(--color-sub-orange) url("./common-icon-link-arrow.svg") no-repeat center center;
  content: "";
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__link:hover::after {
    background-size: 13px;
  }
}
.index #section--home-lineup .home-lineup__others .lineup__image {
  width: 228px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__image {
    width: 156px;
  }
}
.index #section--home-lineup .home-lineup__others .lineup__text {
  padding: 18px 24px 60px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__text {
    padding: 18px 20px 20px 19px;
  }
}
.index #section--home-lineup .home-lineup__others .lineup__name {
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__name {
    margin-bottom: 9px;
  }
}
.index #section--home-lineup .home-lineup__others .lineup__name .name--label {
  display: inline-block;
  text-align: center;
  padding: 5px 15px 2px;
  font-size: 1.4rem;
  line-height: 1.2;
  background: var(--color-marker-yellow);
  margin-bottom: 8px;
  border-radius: 14px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__name .name--label {
    font-size: 1.2rem;
    line-height: 1.7rem;
    padding: 5px 15px 1px;
  }
}
.index #section--home-lineup .home-lineup__others .lineup__name .name--en {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__name .name--en {
    font-size: 1.8rem;
  }
}
.index #section--home-lineup .home-lineup__others .lineup__excerpt {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__excerpt {
    font-size: 1.2rem;
  }
}
.index #section--home-lineup .home-lineup__others .lineup__icon {
  width: 96px;
  height: 96px;
  position: absolute;
  top: -48px;
  right: 21px;
}
@media screen and (max-width: 767px) {
  .index #section--home-lineup .home-lineup__others .lineup__icon {
    width: 73px;
    height: 73px;
    top: -30px;
    right: 8px;
  }
}
.index #section--home-concept {
  padding-top: 113px;
  padding-bottom: 123px;
  background: var(--color-bg-yellow);
}
@media (max-width: 1440px) {
  .index #section--home-concept {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .index #section--home-concept {
    padding-top: 85px;
    padding-bottom: 72px;
  }
}
.index #section--home-concept .layout__section--inner {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .layout__section--inner {
    width: 100%;
  }
}
.index #section--home-concept .home-concept__title {
  margin-bottom: 106px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__title {
    margin-bottom: 56px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.index #section--home-concept .home-concept__title h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__title h2 {
    align-items: flex-start;
  }
}
.index #section--home-concept .home-concept__title h2::before {
  width: 46px;
  height: 96px;
  content: "";
  background: url("./home-concept-title-before.svg") no-repeat center center;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__title h2::before {
    width: 36px;
    height: 76px;
    margin-right: 10px;
  }
}
.index #section--home-concept .home-concept__title h2::after {
  width: 46px;
  height: 96px;
  content: "";
  background: url("./home-concept-title-after.svg") no-repeat center center;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__title h2::after {
    width: 36px;
    height: 76px;
    margin-left: 10px;
  }
}
.index #section--home-concept .home-concept__title h2 .title--inner {
  text-align: center;
}
.index #section--home-concept .home-concept__title h2 .title--inner strong {
  display: flex;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__title h2 .title--inner strong {
    font-size: 2.4rem;
    justify-content: center;
  }
}
.index #section--home-concept .home-concept__title h2 .title--inner span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__title h2 .title--inner span {
    font-size: 1.8rem;
  }
}
.index #section--home-concept .home-concept__title h2 .title--inner span::after {
  width: 40px;
  height: 54px;
  content: "";
  background: url("./home-concept-title-star.png") no-repeat center center;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__title h2 .title--inner span::after {
    background-size: 25px;
    margin-left: 2px;
  }
}
.index #section--home-concept .home-concept__content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 62px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__content {
    flex-wrap: wrap;
  }
}
.index #section--home-concept .home-concept__content:last-child {
  margin-bottom: 0;
}
.index #section--home-concept .home-concept__content .concept__text {
  width: 622px;
  min-height: 368px;
  margin-right: 458px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__content .concept__text {
    order: 2;
    width: 100%;
    min-height: auto;
    margin-right: auto;
    margin-left: auto;
  }
}
.index #section--home-concept .home-concept__content .concept__title {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__content .concept__title {
    font-size: 2.2em;
    margin-bottom: 32px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.index #section--home-concept .home-concept__content .concept__description {
  font-size: 1.5rem;
  line-height: 1.9;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__content .concept__description {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 32px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.index #section--home-concept .home-concept__content .concept__description mark.marker--yellow {
  background: linear-gradient(transparent 50%, var(--color-marker-yellow) 50%, transparent 90%);
}
.index #section--home-concept .home-concept__content .concept__more {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__content .concept__more {
    padding-left: 40px;
  }
}
.index #section--home-concept .home-concept__content .concept__image {
  position: absolute;
  right: -200px;
  left: auto;
  width: 587px;
  height: 368px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__content .concept__image {
    position: relative;
    order: 1;
    right: auto;
    left: auto;
    width: 73%;
    height: auto;
    border-radius: 20px 0 0 20px;
    margin-left: 28%;
    margin-bottom: 32px;
  }
}
.index #section--home-concept .home-concept__content--reversed .concept__text {
  order: 2;
  margin-right: auto;
  margin-left: 458px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__content--reversed .concept__text {
    margin-left: auto;
  }
}
.index #section--home-concept .home-concept__content--reversed .concept__image {
  order: 1;
  right: auto;
  left: -200px;
}
@media screen and (max-width: 767px) {
  .index #section--home-concept .home-concept__content--reversed .concept__image {
    left: auto;
    right: auto;
    padding-right: 0;
    margin-right: 28%;
    margin-left: 0;
    border-radius: 0 20px 20px 0;
  }
}
.index #section--home-recipe {
  padding-top: 96px;
  padding-bottom: 105px;
}
@media screen and (max-width: 767px) {
  .index #section--home-recipe {
    padding-top: 46px;
    padding-bottom: 110px;
  }
}
.index #section--home-recipe .layout__section--inner {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .index #section--home-recipe .layout__section--inner {
    width: 100%;
  }
}
.index #section--home-recipe .home-recipe__title {
  padding: 3px 0 3px 80px;
  background: url("./home-recipe-title-icon.svg") no-repeat left center;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .index #section--home-recipe .home-recipe__title {
    padding: 3px 0 3px 85px;
    background: url("./home-recipe-title-icon.svg") no-repeat left 20px center/50px;
    margin-bottom: 32px;
  }
}
.index #section--home-recipe .home-recipe__title .title--ja {
  display: block;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .index #section--home-recipe .home-recipe__title .title--ja {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 6px;
  }
}
.index #section--home-recipe .home-recipe__title .title--en {
  display: block;
  color: var(--color-main-green);
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .index #section--home-recipe .home-recipe__title .title--en {
    font-size: 1.3rem;
  }
}
.index #section--home-recipe .home-recipe__list {
  margin-bottom: 32px;
  display: flex;
  column-gap: 32px;
  row-gap: 32px;
}
@media screen and (max-width: 767px) {
  .index #section--home-recipe .home-recipe__list {
    column-gap: 20px;
    row-gap: 0;
  }
}
.index #section--home-recipe .home-recipe__list .recipe__item {
  width: 246px;
}
@media screen and (max-width: 767px) {
  .index #section--home-recipe .home-recipe__list .recipe__item {
    width: 220px;
  }
}
.index #section--home-recipe .home-recipe__list .recipe__link {
  display: block;
  text-decoration: none;
}
.index #section--home-recipe .home-recipe__list .recipe__link:hover .recipe__image {
  opacity: 0.7;
}
.index #section--home-recipe .home-recipe__list .recipe__link:hover .recipe__title {
  text-decoration: underline;
}
.index #section--home-recipe .home-recipe__list .recipe__image {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
  transition: all 0.3s;
  opacity: 1;
}
.index #section--home-recipe .home-recipe__list .recipe__subtitle {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .index #section--home-recipe .home-recipe__list .recipe__subtitle {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.index #section--home-recipe .home-recipe__list .recipe__title {
  font-size: 1.6rem;
  line-height: 1.5;
  transition: all 0.3s;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .index #section--home-recipe .home-recipe__list .recipe__title {
    font-size: 1.4rem;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.index #section--home-recipe .home-recipe__more {
  display: flex;
  justify-content: center;
}
.index #section--home-blog {
  background: var(--color-bg-yellow);
  padding: 71px 0 66px;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog {
    padding: 92px 20px 56px;
  }
}
.index #section--home-blog .layout__section--inner {
  position: relative;
  width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .layout__section--inner {
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.index #section--home-blog .home-blog__subtitle {
  position: absolute;
  top: -150px;
  width: 258px;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__subtitle {
    top: -160px;
    left: calc(50% - 100px);
    width: auto;
    display: flex;
    align-items: flex-end;
  }
}
.index #section--home-blog .home-blog__subtitle img {
  display: inline-block;
  margin-left: 59px;
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__subtitle img {
    margin-left: 0;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
.index #section--home-blog .home-blog__subtitle p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin: auto;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__subtitle p {
    flex-grow: 0;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-left: 10px;
  }
}
.index #section--home-blog .home-blog__title {
  width: 100%;
  padding-left: 258px;
  margin-bottom: 41px;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__title {
    padding: 0;
    margin-bottom: 0;
    margin-bottom: 24px;
  }
}
.index #section--home-blog .home-blog__title .title--ja {
  display: block;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__title .title--ja {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.index #section--home-blog .home-blog__title .title--en {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-main-green);
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__title .title--en {
    font-size: 1.3rem;
  }
}
.index #section--home-blog .home-blog__list {
  width: 100%;
  padding-left: 258px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__list {
    padding: 0;
  }
}
.index #section--home-blog .home-blog__list .blog__item {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__list .blog__item {
    margin-bottom: 28px;
  }
}
.index #section--home-blog .home-blog__list .blog__item:last-child {
  margin-bottom: 0;
}
.index #section--home-blog .home-blog__list .blog__link {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding-right: 75px;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__list .blog__link {
    padding-right: 48px;
  }
}
.index #section--home-blog .home-blog__list .blog__link::after {
  position: absolute;
  display: block;
  top: calc(50% - 18px);
  right: 0;
  width: 36px;
  height: 36px;
  content: "";
  background: var(--color-main-orange) url("./common-icon-link-arrow.svg") no-repeat center center;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__list .blog__link::after {
    width: 22px;
    height: 22px;
    background-size: 10px;
  }
}
.index #section--home-blog .home-blog__list .blog__link:hover::after {
  right: -10px;
  background: var(--color-sub-orange) url("./common-icon-link-arrow.svg") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__list .blog__link:hover::after {
    background-size: 10px;
    right: 0;
  }
}
.index #section--home-blog .home-blog__list .blog__link:hover .blog__title span {
  color: #84714F;
  border-bottom: 1px dashed #84714F;
}
.index #section--home-blog .home-blog__list .blog__image {
  overflow: hidden;
  border-radius: 10px;
  width: 235px;
  height: 157px;
  transition: all 0.3s;
  opacity: 1;
  margin-right: 35px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__list .blog__image {
    width: 120px;
    height: auto;
    margin-right: 14px;
  }
}
.index #section--home-blog .home-blog__list .blog__pubdate {
  display: block;
  font-size: 1.4rem;
  line-height: 2.0714;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__list .blog__pubdate {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 5px;
  }
}
.index #section--home-blog .home-blog__list .blog__title {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__list .blog__title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
.index #section--home-blog .home-blog__list .blog__excerpt {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__list .blog__excerpt {
    display: none;
  }
}
.index #section--home-blog .home-blog__more {
  width: 100%;
  padding-left: 258px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .index #section--home-blog .home-blog__more {
    justify-content: center;
    padding: 0;
  }
}
.index #section--home-news {
  padding: 72px 0;
}
@media screen and (max-width: 767px) {
  .index #section--home-news {
    padding: 56px 0;
  }
}
.index #section--home-news .layout__section--inner {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .index #section--home-news .layout__section--inner {
    width: 100%;
  }
}
.index #section--home-news .home-news__title {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .index #section--home-news .home-news__title {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 24px;
  }
}
.index #section--home-news .home-news__title .title--ja {
  display: block;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .index #section--home-news .home-news__title .title--ja {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 6px;
  }
}
.index #section--home-news .home-news__title .title--en {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-main-green);
}
@media screen and (max-width: 767px) {
  .index #section--home-news .home-news__title .title--en {
    font-size: 1.3rem;
  }
}
.index #section--home-news .home-news__list {
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .index #section--home-news .home-news__list {
    margin-bottom: 32px;
  }
}
.index #section--home-news .home-news__list .news__item {
  display: flex;
  column-gap: 40px;
  padding: 27px 58px 27px 0;
  border-bottom: 1px solid var(--color-border-light);
}
@media screen and (max-width: 767px) {
  .index #section--home-news .home-news__list .news__item {
    padding: 16px 20px;
    flex-direction: column;
  }
}
.index #section--home-news .home-news__list .news__pubdate {
  font-size: 1.4rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .index #section--home-news .home-news__list .news__pubdate {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 11px;
    margin-bottom: 11px;
  }
}
.index #section--home-news .home-news__list .news__link {
  font-size: 1.5rem;
  line-height: 1.5;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .index #section--home-news .home-news__list .news__link {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.index #section--home-news .home-news__list .news__link:hover {
  text-decoration: underline;
}
.index #section--home-news .home-news__more {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .index #section--home-news .home-news__more {
    padding-right: 20px;
  }
}

/* ==============================================
固定ページ
============================================== */
.layout__page {
  width: 100%;
  margin-bottom: 100px;
}
.layout__page .page__header {
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .layout__page .page__header {
    padding-top: 48px;
  }
}
.layout__page .page__footer {
  display: flex;
  justify-content: center;
}
.layout__page .page__title {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .layout__page .page__title {
    font-size: 2.4rem;
  }
}
.layout__page .page__title + .page__description {
  margin-top: 24px;
}
.layout__page .page__description {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .layout__page .page__description {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

/* ==============================================
ブログ一覧ページ（ブログ・レシピ・FAQ・お知らせ）
============================================== */
.layout__page {
  width: 100%;
  margin-bottom: 100px;
}
.layout__page .page__header {
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .layout__page .page__header {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.layout__page .page__body {
  margin-bottom: 90px;
}
.layout__page .page__body--inner {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .layout__page .page__body--inner {
    padding-top: 0;
  }
}
.layout__page .page__footer {
  display: flex;
  justify-content: center;
}
.layout__page .page__type-name {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
}
.layout__page .page__type-name + .page__type-description {
  margin-top: 24px;
}
.layout__page .page__type-description {
  font-size: 1.5rem;
  line-height: 1.9;
}

/* ==============================================
ブログ一覧ページ（お知らせ）
============================================== */
.news .news__list {
  margin-bottom: 27px;
  border-top: 1px solid var(--color-border-light);
}
@media screen and (max-width: 767px) {
  .news .news__list {
    border-top: none;
    margin-bottom: 32px;
  }
}
.news .news__list .news__item {
  display: flex;
  column-gap: 40px;
  padding: 27px 58px 27px 0;
  border-bottom: 1px solid var(--color-border-light);
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item {
    padding: 16px 20px;
    flex-direction: column;
  }
}
.news .news__list .news__pubdate {
  font-size: 1.4rem;
  line-height: 2.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news .news__list .news__pubdate {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 11px;
    margin-bottom: 11px;
  }
}
.news .news__list .news__link {
  font-size: 1.5rem;
  line-height: 1.5;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .news .news__list .news__link {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.news .news__list .news__link:hover {
  text-decoration: underline;
}

/* ==============================================
ブログ一覧ページ（ブログ）
============================================== */
.blog .blog__list {
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .blog .blog__list {
    padding: 0;
  }
}
.blog .blog__list .blog__item {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blog .blog__list .blog__item {
    margin-bottom: 28px;
  }
}
.blog .blog__list .blog__item:last-child {
  margin-bottom: 0;
}
.blog .blog__list .blog__link {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding-right: 75px;
}
@media screen and (max-width: 767px) {
  .blog .blog__list .blog__link {
    padding-right: 48px;
  }
}
.blog .blog__list .blog__link::after {
  position: absolute;
  display: block;
  top: calc(50% - 18px);
  right: 0;
  width: 36px;
  height: 36px;
  content: "";
  background: var(--color-main-orange) url("./common-icon-link-arrow.svg") no-repeat center center;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .blog .blog__list .blog__link::after {
    width: 22px;
    height: 22px;
    background-size: 10px;
  }
}
.blog .blog__list .blog__link:hover::after {
  right: -10px;
  background: var(--color-sub-orange) url("./common-icon-link-arrow.svg") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .blog .blog__list .blog__link:hover::after {
    background-size: 10px;
    right: 0;
  }
}
.blog .blog__list .blog__link:hover .blog__title span {
  color: #84714F;
  border-bottom: 1px dashed #84714F;
}
.blog .blog__list .blog__image {
  overflow: hidden;
  border-radius: 10px;
  width: 235px;
  height: 157px;
  transition: all 0.3s;
  opacity: 1;
  margin-right: 35px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .blog .blog__list .blog__image {
    width: 120px;
    height: auto;
    margin-right: 14px;
  }
}
.blog .blog__list .blog__pubdate {
  display: block;
  font-size: 1.4rem;
  line-height: 2.0714;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .blog .blog__list .blog__pubdate {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 5px;
  }
}
.blog .blog__list .blog__title {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .blog .blog__list .blog__title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
.blog .blog__list .blog__excerpt {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .blog .blog__list .blog__excerpt {
    display: none;
  }
}

/* ==============================================
ブログ一覧ページ（よくある質問）
============================================== */
.faq .faq__list {
  margin-bottom: 27px;
  border-top: 1px solid var(--color-border-light);
}
.faq .faq__list .faq__item {
  display: flex;
  column-gap: 40px;
  padding: 27px 58px 27px 0;
  border-bottom: 1px solid var(--color-border-light);
}
.faq .faq__list .faq__category {
  font-size: 1.4rem;
  line-height: 2.5rem;
}
.faq .faq__list .faq__link {
  font-size: 1.5rem;
  line-height: 1.5;
  text-decoration: none;
}
.faq .faq__list .faq__link:hover {
  text-decoration: underline;
}

/* ==============================================
ブログ一覧ページ（レシピ）
============================================== */
.recipe .recipe__list {
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 32px;
}
@media screen and (max-width: 767px) {
  .recipe .recipe__list {
    column-gap: 20px;
    row-gap: 20px;
  }
}
.recipe .recipe__list .recipe__item {
  width: calc((100% - 64px) / 3);
}
@media screen and (max-width: 767px) {
  .recipe .recipe__list .recipe__item {
    width: calc((100% - 20px) / 2);
  }
}
.recipe .recipe__list .recipe__link {
  display: block;
  text-decoration: none;
}
.recipe .recipe__list .recipe__link:hover .recipe__image {
  opacity: 0.7;
}
.recipe .recipe__list .recipe__link:hover .recipe__title {
  text-decoration: underline;
}
.recipe .recipe__list .recipe__image {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
  transition: all 0.3s;
  opacity: 1;
}
.recipe .recipe__list .recipe__subtitle {
  font-size: 1.2rem;
  line-height: 2.4;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .recipe .recipe__list .recipe__subtitle {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.recipe .recipe__list .recipe__title {
  font-size: 1.6rem;
  line-height: 1.5;
  transition: all 0.3s;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .recipe .recipe__list .recipe__title {
    font-size: 1.4rem;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ==============================================
ブログ詳細ページ（ブログ・レシピ・FAQ・お知らせ）
============================================== */
.layout__article {
  width: 100%;
  margin-bottom: 100px;
}
.layout__article .article__header {
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .layout__article .article__header {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.layout__article .article__body {
  margin-bottom: 90px;
}
.layout__article .article__body--inner {
  padding-top: 40px;
}
.layout__article .article__footer {
  display: flex;
  justify-content: center;
}
.layout__article .article__type-name {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .layout__article .article__type-name {
    font-size: 2.4rem;
  }
}
.layout__article .article__type-name + .article__type-description {
  margin-top: 24px;
}
.layout__article .article__type-description {
  font-size: 1.5rem;
  line-height: 1.9;
}
.layout__article .article__title {
  font-size: 2.8rem;
  line-height: 1.7142;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .layout__article .article__title {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.layout__article .article__pubdate {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 48px;
}
.layout__article .article__thumbnail {
  margin-bottom: 48px;
}

/* ==============================================
商品一覧ページ
============================================== */
.collection.collection--vegemari-set .page__header {
  padding-top: 0;
}
.collection .page__header {
  padding-bottom: 0;
  border-bottom: 0;
}
.collection .collection__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 600px;
  background: url("./collection-gift-main-visual.jpg") no-repeat left top;
}
@media screen and (max-width: 767px) {
  .collection .collection__visual {
    flex-wrap: wrap;
    height: 872px;
    padding-top: 407px;
    background: url("./collection-gift-main-visual-sp.jpg") repeat left top/contain;
  }
}
.collection .collection__visual::before {
  width: 68px;
  height: 100%;
  content: "";
  background: url("./collection-gift-main-visual-wave.svg") no-repeat left top;
}
@media screen and (max-width: 767px) {
  .collection .collection__visual::before {
    position: relative;
    top: -38px;
    width: 100%;
    height: 38px;
    background: url("./collection-gift-main-visual-wave-sp.svg") no-repeat left top/cover;
  }
}
.collection .collection__visual .collection__visual--inner {
  position: relative;
  width: calc(100% - 630px);
  height: 600px;
  background: #7E6741 url("./collection-gift-bg-image.png") no-repeat right 36px bottom 55px;
  padding-left: 16px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .collection .collection__visual .collection__visual--inner {
    top: -38px;
    width: 100%;
    height: 465px;
    padding: 44px 40px 64px;
    background: #7E6741 url("./collection-gift-bg-image.png") no-repeat right -36px bottom 55px;
    background-size: 207px;
  }
}
.collection .collection__visual .visual__title {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .collection .collection__visual .visual__title {
    margin-bottom: 53px;
  }
}
.collection .collection__visual .visual__title img {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .collection .collection__visual .visual__title img {
    width: 281px;
    margin-bottom: 13px;
  }
}

.collection .collection__visual .visual__title span {
  display: block;
  font-size: 2.7rem;
  line-height: 1.8518;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .collection .collection__visual .visual__title span {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
.collection .collection__visual .visual__description h2 {
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: bold;
  color: var(--color-text-dark);
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .collection .collection__visual .visual__description h2 {
    font-size: 1.7rem;
  }
}
.collection .collection__visual .visual__description h2 span {
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  margin-bottom: 4px;
  background: #ffffff;
}
.collection .collection__visual .visual__description p {
  width: 366px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .collection .collection__visual .visual__description p {
    width: 254px;
    font-size: 1.4rem;
  }
}
.collection .collection__info {
  background: var(--color-bg-yellow);
  padding-top: 48px;
  padding-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .collection .collection__info {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-top: 30px;
  }
}
.collection .collection__info .info__title {
  text-align: center;
  color: #84714f;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .collection .collection__info .info__title {
    margin-bottom: 35px;
  }
}
.collection .collection__info .info__title small {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .collection .collection__info .info__title small {
    font-size: 1.8rem;
  }
}
.collection .collection__info .info__title strong {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 1;
}
.collection .collection__info .info__title strong .num {
  font-size: 3.1rem;
  margin-right: 3px;
}
.collection .collection__info .info__title strong .text {
  font-size: 2rem;
  margin-right: 9px;
}
.collection .collection__info .info__title strong .point {
  font-size: 3.6rem;
}
.collection .collection__info .benefit__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 24px;
}
@media screen and (max-width: 767px) {
  .collection .collection__info .benefit__list {
    row-gap: 10px;
  }
}
.collection .collection__info .benefit__list li {
  width: 524px;
  background: var(--color-bg-white) url("./collection-gift-anchor-link-arrow.svg") no-repeat right 24px center;
  border: 1px solid var(--color-border-light);
}
@media screen and (max-width: 767px) {
  .collection .collection__info .benefit__list li {
    width: 100%;
    background: var(--color-bg-white) url("./collection-gift-anchor-link-arrow.svg") no-repeat right 20px center;
    background-size: 28px;
  }
}
.collection .collection__info .benefit__list li a {
  display: block;
  padding: 43px 84px 43px 104px;
  font-size: 2rem;
  line-height: 1.5;
  color: #84714f;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .collection .collection__info .benefit__list li a {
    font-size: 1.7rem;
    padding: 20px 64px 20px 70px;
  }
}
.collection .collection__info .benefit__list li a mark.marker--yellow {
  background: linear-gradient(transparent 50%, var(--color-marker-yellow) 50%, transparent 90%);
}
.collection .collection__info .benefit__list li:first-child a {
  background: url("./collection-gift-deco-number-01.svg") no-repeat left 33px center;
}
@media screen and (max-width: 767px) {
  .collection .collection__info .benefit__list li:first-child a {
    background: url("./collection-gift-deco-number-01.svg") no-repeat left 20px center/37px;
  }
}
.collection .collection__info .benefit__list li:nth-child(2) a {
  background: url("./collection-gift-deco-number-02.svg") no-repeat left 33px center;
}
@media screen and (max-width: 767px) {
  .collection .collection__info .benefit__list li:nth-child(2) a {
    background: url("./collection-gift-deco-number-02.svg") no-repeat left 20px center/37px;
  }
}
.collection .collection__info .benefit__list li:nth-child(3) a {
  background: url("./collection-gift-deco-number-03.svg") no-repeat left 33px center;
}
@media screen and (max-width: 767px) {
  .collection .collection__info .benefit__list li:nth-child(3) a {
    background: url("./collection-gift-deco-number-03.svg") no-repeat left 20px center/37px;
  }
}
.collection .collection__info .benefit__list li:nth-child(4) a {
  background: url("./collection-gift-deco-number-04.svg") no-repeat left 33px center;
}
@media screen and (max-width: 767px) {
  .collection .collection__info .benefit__list li:nth-child(4) a {
    background: url("./collection-gift-deco-number-04.svg") no-repeat left 20px center/37px;
  }
}
.collection .collection__title {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .collection .collection__title {
    font-size: 2.4rem;
  }
}
.collection .collection__title + .collection__description {
  margin-top: 24px;
}
.collection .collection__description {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .collection .collection__description {
    font-size: 1.3rem;
  }
}
.collection .product__list--top .product__list--top--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .collection .product__list--top .product__list--top--inner {
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
}
.collection .product__list--top .search-result {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .collection .product__list--top .search-result {
    width: 100%;
    font-size: 1.4rem;
  }
}
.collection .product__list--top .sort-condition {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .collection .product__list--top .sort-condition {
    width: 100%;
    justify-content: flex-start;
  }
}
.collection .product__list--top .sort-condition label {
  margin-right: 16px;
  font-size: 1.3rem;
  line-height: 1.9rem;
  font-weight: bold;
  padding-left: 27px;
  background: url("./common-icon-sort.svg") no-repeat left center;
}
@media screen and (max-width: 767px) {
  .collection .product__list--top .sort-condition label {
    font-size: 1.2rem;
  }
}
.collection .product__list--top .sort-condition select {
  font-size: 1.3rem;
  line-height: 1.9rem;
  width: auto;
  height: 54px;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  padding: 15px 30px 15px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("./common-icon-dropdown-arrow.svg") no-repeat right 12px center;
  outline-color: var(--color-border-dark);
}
.collection .product__list--outer .product__list {
  margin-bottom: 80px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 80px;
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list {
    column-gap: 12px;
    row-gap: 32px;
    margin-bottom: 48px;
  }
}
.collection .product__list--outer .product__list .product__item {
  width: calc((100% - 64px) / 3);
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list .product__item {
    width: calc((100% - 12px) / 2);
  }
}
.collection .product__list--outer .product__list .product__item a {
  display: block;
  opacity: 1;
  transition: all 0.3s;
  text-decoration: none;
}
.collection .product__list--outer .product__list .product__item a:hover {
  opacity: 0.7;
}
.collection .product__list--outer .product__list .product__item a:hover .product__name {
  text-decoration: underline;
}
.collection .product__list--outer .product__list .product__item .product__image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list .product__item .product__image {
    margin-bottom: 12px;
  }
}
.collection .product__list--outer .product__list .product__item .product__name {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list .product__item .product__name {
    font-size: 1.3rem;
    margin-bottom: 9px;
  }
}
.collection .product__list--outer .product__list .product__item .product__price {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list .product__item .product__price {
    margin-bottom: 5px;
  }
}
.collection .product__list--outer .product__list .product__item .product__price .yen {
  font-size: 1.6rem;
  margin-right: 9px;
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list .product__item .product__price .yen {
    font-size: 1.3rem;
  }
}
.collection .product__list--outer .product__list .product__item .product__price .price {
  font-size: 2.2rem;
  margin-right: 4px;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list .product__item .product__price .price {
    font-size: 1.6rem;
  }
}
.collection .product__list--outer .product__list .product__item .product__price .taxin {
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list .product__item .product__price .taxin {
    font-size: 1rem;
  }
}
.collection .product__list--outer .product__list .product__item .product__excerpt {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list .product__item .product__excerpt {
    display: none;
  }
}
.collection .product__list--outer .product__list .product__item .product__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 8px;
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list .product__item .product__tags {
    column-gap: 7px;
  }
}
.collection .product__list--outer .product__list .product__item .product__tags .product__tag a {
  display: block;
  font-size: 1.2rem;
  padding: 7px 6px;
  line-height: 1;
  color: #656565;
  background: #ffffff;
  border: 1px solid #b1b1b1;
}
@media screen and (max-width: 767px) {
  .collection .product__list--outer .product__list .product__item .product__tags .product__tag a {
    font-size: 1rem;
    padding: 5px;
  }
}
.collection .product__list--outer .product__list .product__item .product__tags .product__tag.product__tag--pink a {
  color: #ffffff;
  background: #f19277;
  border: 1px solid #f19277;
}
.collection .product__list--bottom {
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .collection .product__list--bottom {
    margin-bottom: 70px;
  }
}
.collection .collection__benefit .benefit__details .benefit__detail {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  min-height: 387px;
}
@media screen and (max-width: 767px) {
  .collection .collection__benefit .benefit__details .benefit__detail {
    flex-wrap: wrap;
    min-height: auto;
    margin-bottom: 70px;
  }
}
.collection .collection__benefit .benefit__details .benefit__detail .detail__text {
  width: 622px;
  margin-right: 458px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .collection .collection__benefit .benefit__details .benefit__detail .detail__text {
    order: 2;
    width: 100%;
    margin-right: 0;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.collection .collection__benefit .benefit__details .benefit__detail .detail__text h3 {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .collection .collection__benefit .benefit__details .benefit__detail .detail__text h3 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 32px;
  }
}
.collection .collection__benefit .benefit__details .benefit__detail .detail__text p {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .collection .collection__benefit .benefit__details .benefit__detail .detail__text p {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.collection .collection__benefit .benefit__details .benefit__detail .detail__text mark.marker--yellow {
  background: linear-gradient(transparent 50%, var(--color-marker-yellow) 50%, transparent 90%);
}
.collection .collection__benefit .benefit__details .benefit__detail .detail__text h4 {
  display: inline-block;
  text-align: center;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 14px;
  background: var(--color-main-orange);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 2.8rem;
  font-weight: bold;
  width: auto;
  height: 28px;
  flex-grow: 0;
  margin-top: 40px;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .collection .collection__benefit .benefit__details .benefit__detail .detail__text h4 {
    font-size: 1.3rem;
    margin-top: 10px;
  }
}
.collection .collection__benefit .benefit__details .benefit__detail .detail__text .coupon__list li {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .collection .collection__benefit .benefit__details .benefit__detail .detail__text .coupon__list li .link--arrow {
    padding-right: 0;
  }
}
.collection .collection__benefit .benefit__details .benefit__detail .detail__image {
  position: absolute;
  right: -200px;
  left: auto;
  width: 587px;
  height: 387px;
  border-radius: 20px;
}
.collection .collection__benefit .benefit__details .benefit__detail .detail__image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .collection .collection__benefit .benefit__details .benefit__detail .detail__image {
    order: 1;
    position: relative;
    width: 329px;
    height: 202px;
    right: -70px;
    margin-bottom: 32px;
  }
}
.collection .collection__benefit .benefit__details .benefit__detail--reversed .detail__text {
  order: 2;
  margin-right: auto;
  margin-left: 459px;
}
@media screen and (max-width: 767px) {
  .collection .collection__benefit .benefit__details .benefit__detail--reversed .detail__text {
    margin-left: auto;
  }
}
.collection .collection__benefit .benefit__details .benefit__detail--reversed .detail__image {
  order: 1;
  right: auto;
  left: -200px;
}
@media screen and (max-width: 767px) {
  .collection .collection__benefit .benefit__details .benefit__detail--reversed .detail__image {
    left: -30px;
  }
}

/* ==============================================
カートページ
============================================== */
.cart .page__header {
  margin-bottom: 0;
  border: none;
}
.cart .page__body--inner {
  padding-top: 0;
}
.cart #section--cart-in .table__cart-in {
  margin-bottom: 39px;
  width: 100%;
}
.cart #section--cart-in .table__cart-in thead {
  border-bottom: 1px solid var(--color-border-light);
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in thead {
    display: none;
  }
}
.cart #section--cart-in .table__cart-in thead th {
  font-size: 1.3rem;
  line-height: 1;
  padding-bottom: 16px;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody {
    border-top: 1px solid var(--color-border-light);
  }
}
.cart #section--cart-in .table__cart-in tbody tr {
  border-bottom: 1px solid var(--color-border-light);
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr {
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 20px;
  }
}
.cart #section--cart-in .table__cart-in tbody tr td {
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: left;
  vertical-align: middle;
}
.cart #section--cart-in .table__cart-in tbody tr .product__data {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__data {
    width: 100%;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    padding-top: 22px;
    padding-bottom: 8px;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__image {
  width: 128px;
  padding-right: 23px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__image {
    width: 100%;
    padding-right: 0;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 4;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__image a {
  display: block;
}
.cart #section--cart-in .table__cart-in tbody tr .product__name {
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: bold;
  margin-bottom: 13px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__name {
    padding-right: 0;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 5px;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__name a {
  text-decoration: none;
}
.cart #section--cart-in .table__cart-in tbody tr .product__name a:hover {
  text-decoration: underline;
}
.cart #section--cart-in .table__cart-in tbody tr .product__option {
  margin-bottom: 15px;
}
.cart #section--cart-in .table__cart-in tbody tr .product__option li {
  font-size: 1.3rem;
  line-height: 1.5;
}
.cart #section--cart-in .table__cart-in tbody tr .product__price {
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__price {
    font-size: 1.4rem;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__price .yen {
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__price .yen {
    font-size: 1.4rem;
    margin-right: 6px;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__count {
  min-width: 15%;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: auto;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
    padding-top: 0;
    padding-bottom: 5px;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__count .form__group--quantity {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__count .form__group--quantity {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__count .form__label {
  display: none;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__count .form__label {
    display: inline-flex;
    margin-right: 14px;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__count .form__input {
  width: 108px;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__count .form__input {
    width: auto;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__count .form__input.form__input--delete {
  border: 0;
  width: 108px;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__count .form__input.form__input--delete {
    width: auto;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__count .form__input.form__input--delete .input__button {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: underline;
  padding: 0;
}
.cart #section--cart-in .table__cart-in tbody tr .product__count .form__input.form__input--delete .input__button:hover {
  text-decoration: none;
}
.cart #section--cart-in .table__cart-in tbody tr .product__count .input__button {
  width: 38px;
  text-align: center;
  border: none;
  outline: none;
  padding: 12px 11px;
  font-size: 1.4rem;
  line-height: 1;
  background: var(--color-bg-white);
  cursor: pointer;
}
.cart #section--cart-in .table__cart-in tbody tr .product__count .input__number {
  width: 30px;
  text-align: center;
  border: none;
  outline: none;
  flex-grow: 0;
}
.cart #section--cart-in .table__cart-in tbody tr .product__subtotal {
  min-width: 15%;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__subtotal {
    min-width: auto;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
    padding-top: 0;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__subtotal .subtotal__price {
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__subtotal .subtotal__price {
    justify-content: flex-end;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__subtotal .subtotal__price .label {
  display: none;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .table__cart-in tbody tr .product__subtotal .subtotal__price .label {
    display: inline-flex;
    font-size: 1.1rem;
    margin-right: 12px;
  }
}
.cart #section--cart-in .table__cart-in tbody tr .product__subtotal .subtotal__price .yen {
  margin-right: 4px;
}
.cart #section--cart-in .cart__total {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}
.cart #section--cart-in .cart__total .label {
  margin-right: 12px;
  font-size: 1.3rem;
  line-height: 1;
}
.cart #section--cart-in .cart__total .yen {
  margin-right: 4px;
  font-size: 2.2rem;
  line-height: 1;
}
.cart #section--cart-in .cart__total .price {
  margin-right: 7px;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: bold;
}
.cart #section--cart-in .cart__total .taxin {
  font-size: 1.1rem;
  line-height: 1;
}
.cart #section--cart-in .shipping__info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 32px;
  margin-left: auto;
  padding-bottom: 32px;
  margin-bottom: 32px;
  width: 445px;
  border-bottom: 1px solid var(--color-border-light);
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .shipping__info {
    flex-wrap: wrap;
    width: 100%;
  }
}
.cart #section--cart-in .shipping__info .shipping__note {
  font-size: 1.3rem;
  line-height: 1.5;
  padding-left: 27px;
  background: url("./common-icon-shipping-truck.svg") no-repeat left center;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .shipping__info .shipping__note {
    width: 100%;
    padding-left: 0;
    text-align: right;
    margin-bottom: 10px;
    background: none;
  }
  .cart #section--cart-in .shipping__info .shipping__note::before {
    display: inline-block;
    content: "";
    width: 19px;
    height: 14px;
    background: url("./common-icon-shipping-truck.svg") no-repeat center center/cover;
    margin-right: 8px;
  }
}
.cart #section--cart-in .shipping__info .shipping__link a {
  font-size: 1.1rem;
  line-height: 1;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .shipping__info .shipping__link a {
    width: 100%;
  }
}
.cart #section--cart-in .shipping__info .shipping__link a:hover {
  text-decoration: none;
}
.cart #section--cart-in .continue__shopping {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-in .continue__shopping {
    justify-content: center;
  }
}
.cart #section--cart-members {
  padding-top: 74px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members {
    padding-top: 94px;
  }
}
.cart #section--cart-members .members__header .members__title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("./cart-members-bg.jpg") repeat-x center center;
  height: 280px;
  padding-top: 94px;
  padding-bottom: 62px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__header .members__title {
    height: 220px;
    justify-content: flex-start;
    padding-top: 72px;
    padding-bottom: 63px;
  }
}
.cart #section--cart-members .members__header .members__title .title__label {
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  width: 359px;
  height: 75px;
  text-align: center;
  color: var(--color-main-green);
  font-size: 2.4rem;
  line-height: 3.5rem;
  font-weight: bold;
  margin: auto;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__header .members__title .title__label {
    font-size: 1.7rem;
  }
}
.cart #section--cart-members .members__header .members__title .title__label::after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
  right: 0;
  width: 359px;
  height: 46px;
  content: "";
  background: url("./cart-members-speech-bubble.png") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__header .members__title .title__label::after {
    bottom: 10px;
    width: 250px;
    height: 32px;
    background-size: cover;
    margin: auto;
  }
}
.cart #section--cart-members .members__header .members__title strong {
  height: 68px;
  font-size: 3rem;
  line-height: 1.4667;
  font-weight: bold;
  padding: 14px 40px 10px;
  background: var(--color-bg-white);
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__header .members__title strong {
    height: 47px;
    padding: 10px 14px 14px;
    font-size: 2.1rem;
  }
}
.cart #section--cart-members .members__header .members__title > span {
  height: 43px;
  font-size: 2.5rem;
  line-height: 1.52;
  font-weight: bold;
  padding: 3px 17px;
  background: var(--color-bg-white);
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__header .members__title > span {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cart #section--cart-members .members__intro {
  width: 627px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__intro {
    width: 100%;
  }
}
.cart #section--cart-members .members__intro > h3 {
  font-size: 2.2rem;
  line-height: 1.301;
  font-weight: bold;
  color: var(--color-main-brown);
  padding-top: 43px;
  text-align: center;
  background: url("./common-icon-circle-question.svg") no-repeat center top;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__intro > h3 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 24px;
  }
}
.cart #section--cart-members .members__intro .members__benefit {
  border-top: 1px dashed var(--color-main-brown);
  margin-bottom: 57px;
}
.cart #section--cart-members .members__intro .members__benefit li {
  padding: 32px 0 32px 120px;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  border-bottom: 1px dashed var(--color-main-brown);
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__intro .members__benefit li {
    font-size: 1.6rem;
    padding: 20px 0 20px 70px;
  }
}
.cart #section--cart-members .members__intro .members__benefit li:first-child {
  background: url("./cart-members-icon-star.png") no-repeat left 22px center;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__intro .members__benefit li:first-child {
    background: url("./cart-members-icon-star.png") no-repeat left 10px center/49px;
  }
}
.cart #section--cart-members .members__intro .members__benefit li:last-child {
  background: url("./cart-members-icon-basket.png") no-repeat left 22px center;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__intro .members__benefit li:last-child {
    background: url("./cart-members-icon-basket.png") no-repeat left 10px center/49px;
  }
}
.cart #section--cart-members .members__account {
  position: relative;
  width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  position: relative;
  background: var(--color-bg-yellow);
  padding: 43px 65px 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__account {
    width: 100%;
    flex-wrap: wrap;
    padding: 32px 52px;
  }
}
.cart #section--cart-members .members__account .members__speech-bubble {
  position: absolute;
  top: -123px;
  right: -37px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__account .members__speech-bubble {
    width: 157px;
    top: -80px;
    right: -10px;
  }
}
.cart #section--cart-members .members__account .members__login {
  width: 340px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__account .members__login {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cart #section--cart-members .members__account .members__login h3 {
  font-size: 1.5rem;
  line-height: 1.9;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__account .members__login h3 {
    font-size: 1.4rem;
  }
}
.cart #section--cart-members .members__account .members__register {
  width: 340px;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__account .members__register {
    width: 100%;
  }
}
.cart #section--cart-members .members__account .members__register h3 {
  font-size: 1.5rem;
  line-height: 1.9;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cart #section--cart-members .members__account .members__register h3 {
    font-size: 1.4rem;
  }
}
.cart #section--cart-members .go-to-purchase {
  width: 322px;
  margin-left: auto;
  margin-right: auto;
}
.cart #section--cart-members .go-to-purchase h3 {
  font-size: 1.4rem;
  line-height: 1.4285;
  font-weight: bold;
  margin-bottom: 18px;
  text-align: center;
}
.cart #section--cart-members .go-to-purchase .link--action-button {
  width: 100%;
  min-height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-size: 1.9rem;
  line-height: 1.2631;
  font-weight: bold;
  color: #ffffff;
  background: var(--color-text-dark);
  border: 2px solid var(--color-text-dark);
  border-radius: 33px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.cart #section--cart-members .go-to-purchase .link--action-button:hover {
  color: var(--color-text-dark);
  background: var(--color-bg-white);
}

/* ==============================================
商品詳細ページ
============================================== */
.product {
  /* メインビジュアル */
  /* 喜ばれています */
  /* メッセージ */
  /* こんな使い方 */
  /* 商品基本情報 */
  /* お客様の声 */
  /* 商品詳細情報タブ */
  /* よくある質問 */
  /* 商品カルーセル */
}
.product .layout__product {
  margin-bottom: 100px;
}
.product .layout__product .layout__product--inner {
  display: flex;
  flex-direction: column;
}
.product #section--product-visual {
  width: 100%;
  order: 1;
  overflow: hidden;
}
.product #section--product-visual .layout__section--inner {
  position: relative;
  width: 100%;
}
.product #section--product-visual .product-visual__background {
  position: absolute;
  top: -5%;
  left: -5%;
  content: "";
  display: block;
  width: 110%;
  height: 110%;
  filter: blur(20px);
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .product-visual__background {
    width: 120%;
    height: 120%;
  }
}
.product #section--product-visual .product-visual__content {
  height: 676px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .product-visual__content {
    height: auto;
    margin-bottom: 120px;
  }
}
.product #section--product-visual .visual__image {
  position: relative;
  width: 50%;
  height: 676px;
  order: 2;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .visual__image {
    oorder: 1;
    width: 100%;
    height: 345px;
    margin-bottom: 15px;
  }
}
.product #section--product-visual .visual__image .visual__image--product {
  position: absolute;
  display: block;
  top: 236px;
  left: 0;
  width: 300px;
  height: 300px;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .visual__image .visual__image--product {
    top: 117px;
    right: auto;
    left: calc(50% - 167px);
    width: 222px;
    height: 222px;
  }
}
.product #section--product-visual .visual__image .visual__image--scene {
  position: absolute;
  display: block;
  top: 80px;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 40px;
  overflow: hidden;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .visual__image .visual__image--scene {
    top: 40px;
    right: auto;
    left: calc(50% - 84px);
    width: 248px;
    height: 248px;
  }
}
.product #section--product-visual .visual__text {
  width: 50%;
  order: 1;
  z-index: 2;
  padding-top: 57px;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .visual__text {
    order: 2;
    width: 100%;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product #section--product-visual .visual__text .visual__title {
  position: relative;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 22px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .visual__text .visual__title {
    margin-bottom: 12px;
  }
}
.product #section--product-visual .visual__text .visual__title::before {
  position: absolute;
  top: 0;
  left: -20px;
  display: block;
  content: "";
  width: 65px;
  height: 65px;
  background: #9d1d4d;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .visual__text .visual__title::before {
    width: 53px;
    height: 53px;
  }
}
.product #section--product-visual .visual__text .visual__title .visual__product-name {
  font-size: 2.1rem;
  line-height: 1.4285;
  margin-bottom: 13px;
  display: block;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .visual__text .visual__title .visual__product-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
.product #section--product-visual .visual__text .visual__title .visual__product-taste {
  font-size: 5.6rem;
  line-height: 1.4464;
  display: block;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .visual__text .visual__title .visual__product-taste {
    font-size: 3.4rem;
  }
}
.product #section--product-visual .visual__text .visual__phrase {
  font-size: 3rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .visual__text .visual__phrase {
    font-size: 2.2rem;
    margin-bottom: 22px;
  }
}
.product #section--product-visual .visual__text .visual__phrase span {
  display: inline;
  background: var(--color-bg-white);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-left: 5px;
  padding-right: 5px;
}
.product #section--product-visual .visual__text .visual__description {
  font-size: 1.8rem;
  line-height: 2.2;
  margin-bottom: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .product #section--product-visual .visual__text .visual__description {
    margin-bottom: 30px;
    padding-right: 0;
  }
}
.product #section--product-visual .visual__text .visual__description span {
  color: #ffffff;
  text-decoration: underline 1px dashed #ffffff;
  text-underline-offset: 12px;
}
.product #section--product-visual .visual__text .go-to-shopping {
  display: flex;
}
.product #section--product-visual .visual__text .go-to-shopping .link--button span {
  font-size: 1.7rem;
  line-height: 2.4rem;
}
.product #section--product-feature {
  order: 2;
}
@media screen and (max-width: 767px) {
  .product #section--product-feature {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product #section--product-feature .layout__section--inner {
  position: relative;
  margin-top: -35px;
  border-radius: 20px;
  padding-top: 25px;
  padding-left: 40px;
  padding-right: 40px;
  background: var(--color-bg-white);
}
@media screen and (max-width: 767px) {
  .product #section--product-feature .layout__section--inner {
    padding: 25px 20px;
  }
}
.product #section--product-feature .visual__feature {
  width: 100%;
  background: var(--color-bg-white);
}
@media screen and (max-width: 767px) {
  .product #section--product-feature .visual__feature {
    display: flex;
    flex-wrap: wrap;
  }
}
.product #section--product-feature .visual__feature h2 {
  position: relative;
  color: var(--color-main-orange);
  font-size: 1.7rem;
  line-height: 1.4705;
  font-weight: bold;
  margin-bottom: 25px;
  padding-bottom: 10px;
  padding-left: 37px;
  background: url("./common-icon-orange-heart.svg") no-repeat left 10px top 4px;
}
@media screen and (max-width: 767px) {
  .product #section--product-feature .visual__feature h2 {
    font-size: 1.6rem;
    background: url("./common-icon-orange-heart.svg") no-repeat left top 4px;
    padding-left: 27px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3cap;
  }
}
.product #section--product-feature .visual__feature h2::after {
  position: absolute;
  display: bold;
  width: 305px;
  height: 12px;
  content: "";
  bottom: -13px;
  left: 0;
  background: url("./product-feature-speech-bubble.svg") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .product #section--product-feature .visual__feature h2::after {
    width: 263px;
    height: 12px;
    background-size: 100%;
  }
}
.product #section--product-feature .feature__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 36px;
  margin-bottom: 58px;
}
@media screen and (max-width: 767px) {
  .product #section--product-feature .feature__list {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 29px;
    margin-bottom: 0;
  }
}
.product #section--product-feature .feature__list .feature__item {
  display: flex;
  align-items: center;
  column-gap: 12px;
  width: calc((100% - 72px) / 3);
}
@media screen and (max-width: 767px) {
  .product #section--product-feature .feature__list .feature__item {
    width: 100%;
  }
}
.product #section--product-feature .feature__list .feature__item .label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--color-border-dark);
}
@media screen and (max-width: 767px) {
  .product #section--product-feature .feature__list .feature__item .label {
    width: 58px;
    height: 58px;
  }
}
.product #section--product-feature .feature__list .feature__item .label .point {
  padding-top: 4px;
  font-size: 1.1rem;
  line-height: 1;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .product #section--product-feature .feature__list .feature__item .label .point {
    font-size: 1rem;
  }
}
.product #section--product-feature .feature__list .feature__item .label .num {
  font-size: 3.1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .product #section--product-feature .feature__list .feature__item .label .num {
    font-size: 2.5rem;
  }
}
.product #section--product-feature .feature__list .feature__item p {
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .product #section--product-feature .feature__list .feature__item p {
    font-size: 1.3rem;
  }
}
.product #section--product-message {
  order: 3;
  padding-top: 38px;
  padding-bottom: 64px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .product #section--product-message {
    padding: 32px 40px 44px;
    margin-bottom: 0;
  }
}
.product #section--product-message .message__container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 767px) {
  .product #section--product-message .message__container {
    flex-wrap: wrap;
  }
}
.product #section--product-message .message__container.message__container--reversed {
  flex-direction: row-reverse;
}
.product #section--product-message .message__container .message__text {
  width: 622px;
  margin-left: 478px;
  padding-top: 16px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .product #section--product-message .message__container .message__text {
    order: 2;
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }
}
.product #section--product-message .message__container .message__text h2 {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .product #section--product-message .message__container .message__text h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
}
.product #section--product-message .message__container .message__text .editable-content p {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .product #section--product-message .message__container .message__text .editable-content p {
    font-size: 1.4rem;
  }
}
.product #section--product-message .message__container .message__image {
  position: absolute;
  width: 587px;
  top: 0;
  left: -200px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product #section--product-message .message__container .message__image {
    order: 1;
    position: relative;
    width: 100%;
    left: -60px;
    margin-bottom: 31px;
  }
}
.product #section--product-scene {
  order: 4;
  width: 100%;
  padding-top: 111px;
  background: url("./product-scene-bg-wave.svg") no-repeat center top 10px/contain;
}
@media screen and (max-width: 767px) {
  .product #section--product-scene {
    padding-top: 49px;
    background-size: 100% 49px;
  }
}
.product #section--product-scene .layout__section--inner {
  background: var(--color-bg-yellow);
  padding-bottom: 117px;
}
@media screen and (max-width: 767px) {
  .product #section--product-scene .layout__section--inner {
    padding-top: 15px;
    padding-bottom: 72px;
  }
}
.product #section--product-scene .product-scene__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 57px;
}
@media screen and (max-width: 767px) {
  .product #section--product-scene .product-scene__title {
    width: 100%;
    text-align: center;
    margin-bottom: 71px;
  }
}
.product #section--product-scene .product-scene__title .title__label {
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .product #section--product-scene .product-scene__title .title__label {
    width: 176px;
    margin-bottom: 19px;
  }
}
.product #section--product-scene .product-scene__title strong {
  font-size: 2.8rem;
  line-height: 1.4285;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .product #section--product-scene .product-scene__title strong {
    font-size: 2.4rem;
  }
}
.product #section--product-scene .scene__list {
  display: flex;
  column-gap: 32px;
  row-gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .product #section--product-scene .scene__list {
    column-gap: 12px;
    row-gap: 23px;
  }
}
.product #section--product-scene .scene__list .scene__item {
  position: relative;
  width: calc((100% - 64px) / 3);
}
@media screen and (max-width: 767px) {
  .product #section--product-scene .scene__list .scene__item {
    width: calc((100% - 12px) / 2);
  }
}
.product #section--product-scene .scene__list .scene__image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .product #section--product-scene .scene__list .scene__image {
    margin-bottom: 10px;
  }
}
.product #section--product-scene .scene__list .scene__image img {
  width: 100%;
}
.product #section--product-scene .scene__list .scene__image .scene__link {
  position: absolute;
  bottom: 19px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .product #section--product-scene .scene__list .scene__image .scene__link {
    bottom: 16px;
  }
  .product #section--product-scene .scene__list .scene__image .scene__link .link--small-button {
    width: 146px;
    padding: 7px 16px 6px 40px;
  }
  .product #section--product-scene .scene__list .scene__image .scene__link .link--small-button span {
    font-size: 1.2rem;
    line-height: 16px;
  }
}
.product #section--product-scene .scene__list .scene__title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .product #section--product-scene .scene__list .scene__title {
    font-size: 1.3em;
  }
}
.product #section--product-basic-info {
  width: 100%;
  order: 5;
  padding-top: 96px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info {
    padding-top: 72px;
  }
}
.product #section--product-basic-info .layout__section--inner {
  display: flex;
  justify-content: center;
  column-gap: 40px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .layout__section--inner {
    flex-wrap: wrap;
    row-gap: 32px;
  }
}
.product #section--product-basic-info .product__text {
  width: 500px;
  order: 2;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product #section--product-basic-info .product__text .product__name {
  padding-top: 14px;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__name {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}
.product #section--product-basic-info .product__text .product__category {
  font-size: 1.4rem;
  line-height: 1.4285;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__category {
    margin-bottom: 20px;
  }
}
.product #section--product-basic-info .product__text .product__category li {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.product #section--product-basic-info .product__text .product__category li::before {
  content: "/";
  margin-right: 12px;
  font-size: 1.2rem;
}
.product #section--product-basic-info .product__text .product__category li:first-child::before {
  content: "";
  margin-right: 0;
}
.product #section--product-basic-info .product__text .product__price {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}
.product #section--product-basic-info .product__text .product__price .yen {
  font-size: 3.7rem;
  line-height: 1;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__price .yen {
    font-size: 2.5rem;
  }
}
.product #section--product-basic-info .product__text .product__price .price {
  font-size: 3.7rem;
  line-height: 1;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__price .price {
    font-size: 2.5rem;
  }
}
.product #section--product-basic-info .product__text .product__price .taxin {
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__price .taxin {
    font-size: 1.1rem;
  }
}
.product #section--product-basic-info .product__text .product__point {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.product #section--product-basic-info .product__text .product__point .point__display {
  display: flex;
  align-items: center;
  background: url("./common-icon-carrot.svg") no-repeat left top;
}
.product #section--product-basic-info .product__text .product__point .point__display .point__label {
  padding-left: 27px;
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 6px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__point .point__display .point__label {
    font-size: 1.3rem;
  }
}
.product #section--product-basic-info .product__text .product__point .point__display .point__value {
  font-size: 2.1rem;
  line-height: 1;
  margin-right: 6px;
  color: var(--color-main-red);
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__point .point__display .point__value {
    font-size: 2rem;
  }
}
.product #section--product-basic-info .product__text .product__point .point__display .point__unit {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-main-red);
}
.product #section--product-basic-info .product__text .product__point .point__link {
  display: flex;
  align-items: center;
}
.product #section--product-basic-info .product__text .product__point .point__link::after {
  content: "";
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("./common-icon-info.svg") no-repeat center center;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__point .point__link::after {
    width: 16px;
    height: 16px;
    background-size: cover;
  }
}
.product #section--product-basic-info .product__text .product__point .point__link a {
  font-size: 1.3rem;
  line-height: 1.4615;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__point .point__link a {
    font-size: 1.1rem;
  }
}
.product #section--product-basic-info .product__text .product__point .point__link a:hover {
  text-decoration: none;
}
.product #section--product-basic-info .product__text .product__explanation {
  border-top: 1px dotted var(--color-border-dark);
  padding-top: 32px;
  margin-bottom: 55px;
}
.product #section--product-basic-info .product__text .product__explanation .edit-content p {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__explanation .edit-content p {
    font-size: 1.4rem;
  }
}
.product #section--product-basic-info .product__text .product__add-to-cart {
  background: #f5f5f5;
  border-radius: 5px;
  padding: 24px 32px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__add-to-cart {
    padding: 24px 20px;
    margin-bottom: 32px;
  }
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form {
  margin-bottom: 24px;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .form__group {
  margin-bottom: 20px;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .form__label {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4285;
  font-weight: bold;
  margin-bottom: 9px;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .form__input {
  width: 108px;
  height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  overflow: hidden;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input__button {
  width: 38px;
  text-align: center;
  border: none;
  outline: none;
  padding: 18px 12px;
  font-size: 1.4rem;
  line-height: 1;
  background: var(--color-bg-white);
  cursor: pointer;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input__number {
  width: 30px;
  text-align: center;
  border: none;
  outline: none;
  flex-grow: 0;
  padding: 18px 0;
  background: var(--color-bg-white);
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form input[type=number]::-webkit-inner-spin-button,
.product #section--product-basic-info .product__text .product__add-to-cart .product__form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .form__input--select {
  width: 100%;
  background: var(--color-bg-white);
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input__select {
  font-size: 1.3rem;
  line-height: 1;
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 10px;
  padding: 15px 30px 15px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("./common-icon-dropdown-arrow.svg") no-repeat right 12px center;
  outline-color: var(--color-border-dark);
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input__select option {
  width: 100%;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input__text {
  width: 100%;
  border: none;
  outline: none;
  flex-grow: 0;
  padding: 18px;
  background: var(--color-bg-white);
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input--add {
  width: 100%;
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 27px;
  border: 1px solid var(--color-text-dark);
  background: var(--color-text-dark);
  transition: all 0.3s;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input--add::before {
  content: "";
  display: inline-flex;
  width: 22px;
  height: 18px;
  margin-bottom: 6px;
  margin-right: 10px;
  background: url("./common-icon-cart.svg") no-repeat center center;
  transition: all 0.3s;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input--add span {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  color: #ffffff;
  transition: all 0.3s;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input--add:hover {
  background: var(--color-bg-white);
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input--add:hover::before {
  background: url("./common-icon-cart-hover.svg") no-repeat center center;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__form .input--add:hover span {
  color: var(--color-text-dark);
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__guide .guide__item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__guide .guide__item:last-child {
  margin-bottom: 0;
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__guide .guide__item::before {
  content: "";
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: url("./common-icon-product-nav-arrow.svg") no-repeat center center;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__add-to-cart .product__guide .guide__item::before {
    width: 16px;
    height: 16px;
    background-size: cover;
  }
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__guide .guide__item a {
  font-size: 1.4rem;
  line-height: 1.4285;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__add-to-cart .product__guide .guide__item a {
    font-size: 1.3rem;
  }
}
.product #section--product-basic-info .product__text .product__add-to-cart .product__guide .guide__item a:hover {
  text-decoration: none;
}
.product #section--product-basic-info .product__text .product__recommendation {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__recommendation {
    margin-bottom: 32px;
  }
}
.product #section--product-basic-info .product__text .product__recommendation .recommendation__title {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__recommendation .recommendation__title {
    font-size: 1.8rem;
  }
}
.product #section--product-basic-info .product__text .product__recommendation .recommendation__body {
  display: flex;
  column-gap: 21px;
}
.product #section--product-basic-info .product__text .product__recommendation .recommendation__body .recommendation__image {
  width: 90px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__recommendation .recommendation__body .recommendation__image {
    width: 63px;
  }
}
.product #section--product-basic-info .product__text .product__recommendation .recommendation__body .recommendation__comment {
  position: relative;
  margin-top: 19px;
  padding: 20px 18px 17px 23px;
  background: #fff6b4;
  border-radius: 18px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__recommendation .recommendation__body .recommendation__comment {
    padding: 20px 24px;
  }
}
.product #section--product-basic-info .product__text .product__recommendation .recommendation__body .recommendation__comment::before {
  position: absolute;
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background: transparent url("./product-recommendation-speech-bubble.png") no-repeat center center;
  top: 9px;
  left: -14px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__recommendation .recommendation__body .recommendation__comment::before {
    width: 14px;
    height: 14px;
    background-size: 100%;
    left: -11px;
  }
}
.product #section--product-basic-info .product__text .product__recommendation .recommendation__body .recommendation__comment p {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__text .product__recommendation .recommendation__body .recommendation__comment p {
    font-size: 1.3rem;
  }
}
.product #section--product-basic-info .product__text .product__share .share {
  display: flex;
  align-items: center;
}
.product #section--product-basic-info .product__text .product__share .share .share__label {
  font-size: 1.3rem;
  line-height: 1;
  margin-right: 19px;
}
.product #section--product-basic-info .product__text .product__share .share .share__list {
  display: flex;
  align-items: center;
}
.product #section--product-basic-info .product__text .product__share .share .share__list .share__item {
  margin-right: 15px;
}
.product #section--product-basic-info .product__text .product__share .share .share__list .share__item a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product #section--product-basic-info .product__text .product__share .share .share__list .share__item a::before {
  width: 30px;
  height: 30px;
  content: "";
}
.product #section--product-basic-info .product__text .product__share .share .share__list .share__item.share__item--facebook a::before {
  background: url("./common-icon-color-facebook.svg") no-repeat center center;
}
.product #section--product-basic-info .product__text .product__share .share .share__list .share__item.share__item--twitter a::before {
  background: url("./common-icon-color-twitter.svg") no-repeat center center;
}
.product #section--product-basic-info .product__text .product__share .share .share__list .share__item.share__item--line a::before {
  background: url("./common-icon-color-line.svg") no-repeat center center;
}
.product #section--product-basic-info .product__text .product__share .share .share__list .share__item.share__item--email a::before {
  background: url("./common-icon-color-email.svg") no-repeat center center;
}
.product #section--product-basic-info .product__iamge {
  width: 540px;
  order: 1;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__iamge {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product #section--product-basic-info .product__main-image--outer {
  position: relative;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__main-image--outer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product #section--product-basic-info .product__main-image--outer .swiper-button-prev,
.product #section--product-basic-info .product__main-image--outer .swiper-button-next {
  left: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__main-image--outer .swiper-button-prev,
  .product #section--product-basic-info .product__main-image--outer .swiper-button-next {
    left: 5px;
    width: 30px;
    height: 30px;
  }
}
.product #section--product-basic-info .product__main-image--outer .swiper-button-prev::after,
.product #section--product-basic-info .product__main-image--outer .swiper-button-next::after {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background: url("./common-icon-carousel-arrow-left.svg") no-repeat center center;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__main-image--outer .swiper-button-prev::after,
  .product #section--product-basic-info .product__main-image--outer .swiper-button-next::after {
    width: 30px;
    height: 30px;
  }
}
.product #section--product-basic-info .product__main-image--outer .swiper-button-next {
  left: auto;
  right: -20px;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__main-image--outer .swiper-button-next {
    right: 5px;
  }
}
.product #section--product-basic-info .product__main-image.swiper {
  width: 540px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__main-image.swiper {
    width: 100%;
    margin-bottom: 12px;
  }
}
.product #section--product-basic-info .product__main-image.swiper .swiper-wrapper {
  width: 100%;
}
.product #section--product-basic-info .product__main-image.swiper .swiper-slide {
  width: 540px;
  height: 540px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__main-image.swiper .swiper-slide {
    width: 100%;
    height: auto;
  }
}
.product #section--product-basic-info .product__main-image.swiper .swiper-slide img {
  width: 100%;
}
.product #section--product-basic-info .product__sub-image {
  width: 540px;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__sub-image {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product #section--product-basic-info .product__sub-image .swiper-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
  padding-left: 1px;
  padding-right: 1px;
}
.product #section--product-basic-info .product__sub-image .swiper-wrapper .swiper-slide {
  width: 83px;
  height: 83px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .product #section--product-basic-info .product__sub-image .swiper-wrapper .swiper-slide {
    width: calc((100% - 32px) / 5);
    height: auto;
  }
}
.product #section--product-review {
  order: 6;
  padding-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .product #section--product-review {
    padding-top: 48px;
  }
}
.product #section--product-review .layout__section--inner {
  padding-left: 145px;
  padding-right: 190px;
}
@media screen and (max-width: 767px) {
  .product #section--product-review .layout__section--inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product #section--product-review .product-review__title {
  width: 194px;
  height: 194px;
  border-radius: 50%;
  background: var(--color-bg-yellow);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .product #section--product-review .product-review__title {
    margin: auto;
  }
}
.product #section--product-review .product-review__title .product-review__title--inner .title--en {
  display: block;
  color: var(--color-main-green);
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 3px;
  text-align: center;
}
.product #section--product-review .product-review__title .product-review__title--inner .title--ja {
  display: block;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: bold;
  text-align: center;
}
.product #section--product-review .product-review__title .product-review__title--inner::after {
  display: block;
  width: 129px;
  height: 30px;
  content: "";
  background: url("./product-review-speech-bubble.svg") no-repeat center center;
}
.product #section--product-review .product-review__content {
  position: relative;
  top: -30px;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  margin-left: 45px;
  background: var(--color-bg-white);
  padding: 30px 40px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .product #section--product-review .product-review__content {
    margin-left: 0;
    margin-right: 0;
    margin-left: 0;
    padding: 32px 20px;
  }
}
.product #section--product-review .product-review__content .review__zero {
  padding-top: 113px;
  background: url("./product-icon-sunny-side-up.png") no-repeat top 36px center;
  padding-bottom: 36px;
}
.product #section--product-review .product-review__content .review__zero p {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}
.product #section--product-review .product-review__content .review__list .review__item {
  margin-bottom: 18px;
}
.product #section--product-review .product-review__content .review__list .review__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .product #section--product-review .product-review__content .review__list .review__item {
    margin-bottom: 48px;
  }
}
.product #section--product-review .product-review__content .review__list .review__title {
  font-size: 2rem;
  line-height: 1.32;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .product #section--product-review .product-review__content .review__list .review__title {
    font-size: 1.8rem;
  }
}
.product #section--product-review .product-review__content .review__list .review__user {
  font-size: 1.3rem;
  line-height: 1.723;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .product #section--product-review .product-review__content .review__list .review__user {
    font-size: 1.2rem;
  }
}
.product #section--product-review .product-review__content .review__list .review__rating {
  display: flex;
  column-gap: 3px;
  align-items: center;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .product #section--product-review .product-review__content .review__list .review__rating .star {
    width: 19px;
  }
}
.product #section--product-review .product-review__content .review__list .review__comment {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .product #section--product-review .product-review__content .review__list .review__comment {
    font-size: 1.3rem;
  }
}
.product #section--product-review .product-review__content .review__list .review__images {
  overflow: hidden;
  padding-top: 13px;
}
.product #section--product-review .product-review__content .review__list .review__images ul {
  overflow-x: scroll;
  width: auto;
  display: flex;
  column-gap: 10px;
}
.product #section--product-review .product-review__content .review__list .review__images ul li {
  height: 172px;
}
@media screen and (max-width: 767px) {
  .product #section--product-review .product-review__content .review__list .review__images ul li {
    height: 67px;
  }
}
.product #section--product-review .product-review__button {
  display: flex;
  justify-content: center;
}
.product #section--product-detail-info {
  order: 7;
  background: var(--color-bg-yellow);
  padding: 96px 0;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info {
    padding: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .layout__section--inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.product #section--product-detail-info .detail__tabs {
  background: var(--color-bg-white);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.product #section--product-detail-info .detail__tabs .detail-tab {
  width: 33.3333333333%;
}
.product #section--product-detail-info .detail__tabs .detail-tab a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  line-height: 2;
  padding: 17px 16px;
  text-decoration: none;
  color: #b1b1b1;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tabs .detail-tab a {
    font-size: 1.3rem;
    line-height: 1.4;
    text-align: center;
    padding: 11px 10px;
  }
}
.product #section--product-detail-info .detail__tabs .detail-tab.is-active-tab a {
  padding: 16px;
  border-bottom: 4px solid var(--color-text-dark);
  color: var(--color-text-dark);
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tabs .detail-tab.is-active-tab a {
    padding: 10px;
  }
}
.product #section--product-detail-info .detail__tab-contents {
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg-white);
}
.product #section--product-detail-info .detail__tab-contents .detail-content {
  display: none;
  padding: 41px 40px 48px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .detail-content {
    padding: 40px 20px;
  }
}
.product #section--product-detail-info .detail__tab-contents .detail-content.is-active-content {
  display: block;
}
.product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper {
  display: flex;
  column-gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper {
    flex-wrap: wrap;
  }
}
.product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper:last-child {
  margin-bottom: 0;
}
.product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper .content__image {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper .content__image {
    width: 100%;
    margin-bottom: 24px;
  }
}
.product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper .content__image iframe {
  width: 100%;
}
.product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper .content__text {
  padding-top: 30px;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper .content__text {
    padding-top: 0;
    width: 100%;
  }
}
.product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper .content__text h3 {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper .content__text h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}
.product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper .content__text .editable-content p {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .detail-content .content__wrapper .content__text .editable-content p {
    font-size: 1.4rem;
  }
}
.product #section--product-detail-info .detail__tab-contents .vegetable-image {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .vegetable-image {
    margin-bottom: 32px;
    width: 100%;
  }
}
.product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner {
  display: flex;
  column-gap: 47px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner {
    column-gap: 16px;
  }
}
.product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner .image__spoon {
  width: 235px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner .image__spoon {
    width: 139px;
  }
}
.product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner .image__equal {
  padding-top: 103px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner .image__equal {
    width: 20px;
    padding-top: 65px;
  }
}
.product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner .image__vegetable {
  width: 235px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner .image__vegetable {
    width: 139px;
  }
}
.product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner .image__wrapper {
  width: 235px;
  height: 235px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner .image__wrapper {
    width: 139px;
    height: 139px;
    margin-bottom: 11px;
  }
}
.product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner .image__text {
  font-size: 1.7rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .vegetable-image .vegetable-image--inner .image__text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.product #section--product-detail-info .detail__tab-contents .nutrients-pickup {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding: 40px;
  background: var(--color-bg-gray);
  border-radius: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .nutrients-pickup {
    width: 100%;
    flex-wrap: wrap;
    padding: 29px 20px 32px;
  }
}
.product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__title {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__title {
    width: 100%;
    margin-bottom: 26px;
  }
}
.product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__title .title--ja {
  font-size: 1.8rem;
  line-height: 1.4444;
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__title .title--ja {
    font-size: 1.7rem;
    margin-bottom: 0px;
  }
}
.product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__title .title--en {
  color: var(--color-main-green);
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__title .title--en {
    font-size: 1.3rem;
  }
}
.product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__content {
  width: 540px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__content {
    width: 100%;
  }
}
.product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__content .pickup__nutrients {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__content .pickup__nutrients {
    margin-bottom: 24px;
  }
}
.product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__content .nutrient {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  background: var(--color-main-brown);
  border-radius: 14px;
  padding: 8px 15px 5px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__content .nutrient {
    font-size: 1.4rem;
    line-height: 1;
    padding: 7px 15px 6px;
  }
}
.product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__content .pickup__message {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .nutrients-pickup .pickup__content .pickup__message {
    font-size: 1.4rem;
  }
}
.product #section--product-detail-info .detail__tab-contents .other-data {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  column-gap: 36px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .other-data {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 48px;
  }
}
.product #section--product-detail-info .detail__tab-contents .other-data .nutrition-facts__table {
  width: calc((100% - 36px) / 2);
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .other-data .nutrition-facts__table {
    width: 100%;
  }
}
.product #section--product-detail-info .detail__tab-contents .other-data .other-data__table {
  width: calc((100% - 36px) / 2);
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .other-data .other-data__table {
    width: 100%;
  }
}
.product #section--product-detail-info .detail__tab-contents .other-data h3 {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.4444;
  font-weight: bold;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .other-data h3 {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
}
.product #section--product-detail-info .detail__tab-contents .other-data h3 small {
  font-size: 1.3rem;
  line-height: 1.4615;
  color: var(--color-text-light);
  font-weight: normal;
  margin-left: 19px;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .other-data h3 small {
    font-size: 1.2rem;
  }
}
.product #section--product-detail-info .detail__tab-contents .other-data table {
  width: 100%;
  border-top: 1px solid var(--color-border-light);
}
.product #section--product-detail-info .detail__tab-contents .other-data table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
}
.product #section--product-detail-info .detail__tab-contents .other-data table tbody td {
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 15px 15px 15px 0;
  border: none;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .other-data table tbody td {
    padding: 12px 10px 12px 0;
  }
}
.product #section--product-detail-info .detail__tab-contents .other-data table tbody td:first-child {
  color: var(--color-main-brown);
  font-weight: bold;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .other-data table tbody td:first-child {
    width: 31%;
    font-size: 1.4rem;
    padding: 12px 10px 12px 15px;
  }
}
@media screen and (max-width: 767px) {
  .product #section--product-detail-info .detail__tab-contents .other-data table tbody td:last-child {
    padding: 12px 15px 12px 0;
  }
}
.product #section--product-faq {
  order: 8;
  padding-top: 73px;
  padding-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq {
    padding: 56px 20px;
  }
}
.product #section--product-faq .layout__section--inner {
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .layout__section--inner {
    width: 100%;
  }
}
.product #section--product-faq .product-faq__title {
  margin-bottom: 32px;
  padding-top: 18px;
  padding-left: 80px;
  background: url("./product-faq-apron.png") no-repeat top left;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .product-faq__title {
    background-size: 44px;
    padding-top: 5px;
    padding-left: 53px;
    margin-bottom: 24px;
  }
}
.product #section--product-faq .product-faq__title .title--ja {
  display: block;
  font-size: 2.8rem;
  line-height: 1.7142;
  font-weight: bold;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .product-faq__title .title--ja {
    font-size: 2rem;
    margin-bottom: 3px;
    line-height: 1.4;
  }
}
.product #section--product-faq .product-faq__title .title--en {
  display: block;
  color: var(--color-main-green);
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .product-faq__title .title--en {
    font-size: 1.3rem;
    padding-left: 2px;
  }
}
.product #section--product-faq .product-faq__content .faq__list {
  border-top: 1px solid var(--color-border-light);
  margin-bottom: 71px;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .product-faq__content .faq__list {
    margin-bottom: 59px;
  }
}
.product #section--product-faq .product-faq__content .faq__list .faq__item {
  border-bottom: 1px solid var(--color-border-light);
}
.product #section--product-faq .product-faq__content .faq__list .faq__item .question {
  background: url("./common-icon-accordion-arrow-down.svg") no-repeat top 20px right 26px;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .product-faq__content .faq__list .faq__item .question {
    background: url("./common-icon-accordion-arrow-down.svg") no-repeat center right 16px;
    background-size: 12px;
  }
}
.product #section--product-faq .product-faq__content .faq__list .faq__item .question a {
  display: block;
  padding: 26px 67px 26px 37px;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .product-faq__content .faq__list .faq__item .question a {
    font-size: 1.3rem;
    padding: 16px 40px 16px 25px;
    line-height: 1.72;
  }
}
.product #section--product-faq .product-faq__content .faq__list .faq__item .question a::before {
  content: "Q";
  display: block;
  position: absolute;
  width: 14px;
  height: 18px;
  top: 26px;
  left: 0;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .product-faq__content .faq__list .faq__item .question a::before {
    top: 13px;
    font-size: 1.6rem;
  }
}
.product #section--product-faq .product-faq__content .faq__list .faq__item .answer {
  font-size: 1.4rem;
  line-height: 2;
  max-height: 0;
  overflow: hidden;
}
.product #section--product-faq .product-faq__content .faq__list .faq__item.is-open .question {
  background: url("./common-icon-accordion-arrow-up.svg") no-repeat top 26px right 26px;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .product-faq__content .faq__list .faq__item.is-open .question {
    background: url("./common-icon-accordion-arrow-up.svg") no-repeat center right 16px;
    background-size: 12px;
  }
}
.product #section--product-faq .product-faq__content .faq__list .faq__item.is-open .answer {
  max-height: 100%;
  padding-right: 67px;
  padding-left: 37px;
  padding-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .product-faq__content .faq__list .faq__item.is-open .answer {
    font-size: 1.3rem;
    padding: 0 0 16px 25px;
    line-height: 1.9;
  }
}
.product #section--product-faq .product-faq__button h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 19px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  color: var(--color-main-orange);
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .product #section--product-faq .product-faq__button h4 {
    margin-bottom: 23px;
    text-align: center;
  }
}
.product #section--product-faq .product-faq__button h4::before {
  content: "";
  width: 2px;
  height: 30px;
  background: var(--color-main-orange);
  transform: rotate(-30deg);
}
.product #section--product-faq .product-faq__button h4::after {
  content: "";
  width: 2px;
  height: 30px;
  background: var(--color-main-orange);
  transform: rotate(30deg);
}
.product #section--product-faq .product-faq__button .contact-button {
  display: flex;
  justify-content: center;
}
.product #section--product-carousel {
  order: 9;
  padding-top: 73px;
  border-top: 1px solid var(--color-border-light);
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel {
    padding-top: 56px;
  }
}
.product #section--product-carousel .product-carousel__title {
  padding-left: 13%;
  padding-right: 13%;
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel .product-carousel__title {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 24px;
  }
}
.product #section--product-carousel .product-carousel__title .title--ja {
  display: block;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel .product-carousel__title .title--ja {
    font-size: 2rem;
    margin-bottom: 4px;
  }
}
.product #section--product-carousel .product-carousel__title .title--en {
  display: block;
  color: var(--color-main-green);
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel .product-carousel__title .title--en {
    font-size: 1.3rem;
    padding-left: 2px;
  }
}
.product #section--product-carousel .product__carousel {
  padding-left: 13%;
  padding-right: 13%;
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel .product__carousel {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product #section--product-carousel .product__carousel .swiper-slide {
  width: 205px;
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel .product__carousel .swiper-slide {
    width: 160px;
  }
}
.product #section--product-carousel .product__carousel .swiper-slide a {
  text-decoration: none;
}
.product #section--product-carousel .product__carousel .swiper-slide a .item__image {
  width: 205px;
  height: 205px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel .product__carousel .swiper-slide a .item__image {
    width: 160px;
    height: auto;
  }
}
.product #section--product-carousel .product__carousel .swiper-slide a .item__category {
  margin-bottom: 6px;
  font-size: 1.2rem;
  line-height: 1.4;
  display: flex;
  column-gap: 8px;
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel .product__carousel .swiper-slide a .item__category {
    font-size: 1rem;
  }
}
.product #section--product-carousel .product__carousel .swiper-slide a .item__category li::before {
  content: "/";
  display: inline-block;
  margin-right: 8px;
}
.product #section--product-carousel .product__carousel .swiper-slide a .item__category li:first-child::before {
  display: none;
}
.product #section--product-carousel .product__carousel .swiper-slide a .item__title {
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel .product__carousel .swiper-slide a .item__title {
    font-size: 1.3rem;
  }
}
.product #section--product-carousel .product__carousel .swiper-slide a .item__price {
  display: flex;
  align-items: center;
}
.product #section--product-carousel .product__carousel .swiper-slide a .item__price .yen {
  font-size: 1.4rem;
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel .product__carousel .swiper-slide a .item__price .yen {
    font-size: 1.3rem;
  }
}
.product #section--product-carousel .product__carousel .swiper-slide a .item__price .price {
  font-size: 1.8rem;
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  .product #section--product-carousel .product__carousel .swiper-slide a .item__price .price {
    font-size: 1.6rem;
  }
}
.product #section--product-carousel .product__carousel .swiper-slide a .item__price .taxin {
  font-size: 1rem;
}
.product #section--product-carousel .product__carousel .swiper-button-prev,
.product #section--product-carousel .product__carousel .swiper-button-next {
  left: 97px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
}
.product #section--product-carousel .product__carousel .swiper-button-prev::after,
.product #section--product-carousel .product__carousel .swiper-button-next::after {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background: url("./common-icon-carousel-arrow-left.svg") no-repeat center center;
}
.product #section--product-carousel .product__carousel .swiper-button-next {
  left: auto;
  right: 97px;
  transform: rotate(180deg);
}

/* ==============================================
お問い合わせページ
============================================== */
.contact .form__group {
  margin-bottom: 20px;
}
.contact .form__label {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4285;
  font-weight: bold;
  margin-bottom: 9px;
}
.contact .form__input {
  width: 108%;
  height: auto;
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  overflow: hidden;
}
.contact .form__input--select {
  width: 100%;
  background: var(--color-bg-white);
}
.contact .input__select {
  font-size: 1.3rem;
  line-height: 1;
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 10px;
  padding: 15px 30px 15px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("./common-icon-dropdown-arrow.svg") no-repeat right 12px center;
  outline-color: var(--color-border-dark);
}
.contact .input__select option {
  width: 100%;
}
.contact .input__text {
  width: 100%;
  border: none;
  outline: none;
  flex-grow: 0;
  padding: 14px;
  background: var(--color-bg-white);
}
.contact .input__textarea {
  width: 100%;
  height: 500px;
  border: none;
  outline: none;
  flex-grow: 0;
  padding: 14px;
  background: var(--color-bg-white);
}
.contact .link--action-button {
  width: 300px;
  min-height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-size: 1.9rem;
  line-height: 1.2631;
  font-weight: bold;
  color: #ffffff;
  background: var(--color-text-dark);
  border: 2px solid var(--color-text-dark);
  border-radius: 33px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.contact .link--action-button:hover {
  color: var(--color-text-dark);
  background: var(--color-bg-white);
}
