/* カスタマイズ用CSS */

/* ====================================
変数
====================================== */
:root {
  --font-jp: fot-tsukuaoldmin-pr6n, sans-serif;
  --font-en: adobe-garamond-pro, serif;
  --bg-base: #FBFCF5;
  --bg-secondary: #F4F4E9;
  --color-accent: #84A12E;
  --color-text: #262A1B;
  --color-caution: #C62A28;
  --index-header: 99;
  --index-loading: 100;
  --index-loading-title: 101;
  --index-header-endLoad: 102;
  scroll-behavior: initial;
}

/* ====================================
デフォルトスタイル上書き
====================================== */
body {
  font-family: var(--font-jp);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--bg-base);
  position: relative;
  overflow-x: hidden;
}
body.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.mypage {
  padding-bottom: 0;
}
img {
  width: 100%;
}

a,
a:hover {
  color: inherit;
}

ol,
ul {
  padding: 0;
  margin: 0;
}

figure,
dd,
dl,
address,
p {
  margin: 0;
}

main {
  padding-top: 90px;
  overflow-x: hidden;
}

.ec-layoutRole {
  background: var(--bg-base);
}

.ec-layoutRole .ec-layoutRole__contents {
  max-width: 100%;
  display: block;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin: 0;
  font-weight: 400;
}

.ec-blockTopBtn {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  main {
    padding-top: 70px;
  }
}

span.ib {
  display: inline-block;
}

/* ====================================
共通スタイル
====================================== */
.--en {
  font-family: var(--font-en);
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出し */
.section__heading {
  font-size: 100px;
  font-family: var(--font-en);
  letter-spacing: 5px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}
.section__heading.--center {
  align-items: center;
}
.section__sub-heading {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 20px;
  letter-spacing: 1px;
  padding-left: 18px;
  position: relative;
}
.section__sub-heading::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #C62A28;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .section__heading {
    font-size: 80px;
    letter-spacing: 4px;
  }
  .section__sub-heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .section__heading {
    font-size: 60px;
    letter-spacing: 3px;
  }
  .section__sub-heading {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

/* リンク */
.p-link a {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 18px;
  letter-spacing: 0.9px;
}
.p-link__arrow {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: var(--color-accent);
  display: block;
  position: relative;
}
.p-link__icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  fill: #fff;
}
.p-link__icon.--before {
  opacity: 0;
  transform: translateX(-100%);
  transition:
    transform 0.4s ease-in-out,
    opacity 0.2s ease-in-out;
}
.p-link__icon.--after {
  transform: translateX(0);
  transition:
    transform 0.4s ease-in-out,
    opacity 0.2s ease-in-out 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover .p-link__icon.--before {
    opacity: 1;
    transform: translateX(0);
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out 0.2s;
  }
  a:hover .p-link__icon.--after {
    opacity: 0;
    transform: translateX(100%);
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out;
  }
}

@media screen and (max-width: 1024px) {
  .p-link a {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .p-link a {
    gap: 16px;
  }
}

/* ボタン */
.p-button {
  max-width: 270px;
  width: 100%;
}
.p-button__link {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: var(--color-accent);
  padding: 10px 14px;
  border-radius: 100px;
  border: solid 1px var(--color-accent);
  transition: background-color 0.2s;
}
.p-button__text {
  flex-grow: 1;
  margin-left: 50px;
  color: #fff;
  transition: color 0.2s;
}
.p-button__arrow {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: #fff;
  display: block;
  position: relative;
}
.p-button__icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
}
.p-button__icon.--before {
  opacity: 0;
  transform: translateX(-100%);
  transition:
    transform 0.4s ease-in-out,
    opacity 0.2s ease-in-out;
}
.p-button__icon.--after {
  transform: translateX(0);
  transition:
    transform 0.4s ease-in-out,
    opacity 0.2s ease-in-out 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-button__link:hover {
    background-color: transparent;
    transition: background-color 0.2s;
  }
  .p-button__link:hover .p-button__text {
    color: var(--color-accent);
    transition: color 0.2s;
  }
  .p-button__link:hover .p-button__arrow {
    background-color: var(--color-accent);
    transition: background-color 0.2s;
  }
  .p-button__link:hover .p-button__icon.--before {
    opacity: 1;
    transform: translateX(0);
    fill: #fff;
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out 0.2s;
  }
  .p-button__link:hover .p-button__icon.--after {
    opacity: 0;
    transform: translateX(100%);
    fill: #fff;
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out;
  }
}

/* タグ */
.p-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.3;
}
.p-tag {
  font-size: 12px;
  line-height: 1;
  font-weight: 300;
  padding: 8px 14px;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.05);
}

/* 下層MV */
.l-lower-mv {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 576px) {
  .l-lower-mv {
    height: 240px;
  }
}
.l-lower-mv__inner {
  max-width: calc(1440px - 140px - 140px + 40px);
  display: grid;
  place-items: center left;
  height: inherit;
}
.l-lower-mv__title {
  font-size: 70px;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 576px) {
  .l-lower-mv__title {
    font-size: 40px;
    line-height: calc(48 / 40);
  }
}
.l-lower-mv__subtitle {
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: calc(28 / 14);
  padding-left: 18px;
  position: relative;
}
.l-lower-mv__subtitle::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--color-caution);
}

/* パンくずリスト */
.l-breadcrumb {
  /* margin-top: 15px; */
}
/* @media screen and (max-width: 576px) {
  .l-breadcrumb {
    margin-top: 5px;
  }
} */
.l-breadcrumb__list {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 25px;
  overflow-x: auto;
  justify-content: start;
  max-width: max-content;
  margin-left: auto;
}
@media screen and (max-width: 576px) {
  .l-breadcrumb__list {
    gap: 23px;
  }
}
.l-breadcrumb__item {
  letter-spacing: 0.05em;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .l-breadcrumb__item {
    font-size: 12px;
  }
}
.l-breadcrumb__item:not(:last-child) {
  position: relative;
}
.l-breadcrumb__item:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: solid 2px #BFCE91;
  border-right: solid 2px #BFCE91;
  top: 50%;
  right: -15px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 576px) {
  .l-breadcrumb__item:not(:last-child)::after {
    width: 6px;
    height: 6px;
  }
}

/* ページネーション */
.l-pager__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 140px;
  gap: 15px;
}
@media screen and (max-width: 576px) {
  .l-pager__list {
    margin-top: 80px;
  }
}
.l-pager__item,
.l-pager__item--active {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
@media screen and (max-width: 576px) {
  .l-pager__item,
  .l-pager__item--active {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.l-pager__item--active {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.l-pager__item--prev a,
.l-pager__item--next a {
  position: relative;
  display: grid;
  place-items: center;
}
.l-pager__item--prev a::before,
.l-pager__item--next a::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #876f53;
}
@media screen and (max-width: 576px) {
  .l-pager__item--prev a::before,
  .l-pager__item--next a::before {
    width: 10px;
    height: 10px;
  }
}
.l-pager__item--prev a::before {
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}
.l-pager__item--next a::before {
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

/* 下層大見出し */
.l-lower-heading {
  width: 100%;
  height: 300px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-lower-heading {
    height: 240px;
  }
}
.l-lower-heading__title {
  font-size: 46px;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-text);
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .l-lower-heading__title {
    padding-top: 120px;
    font-size: 40px;
  }
}
@media screen and (max-width: 576px) {
  .l-lower-heading__title {
    font-size: 34px;
    padding: 120px 20px 0;
  }
}

/* 注文ボタン */
.ec-totalBox .ec-totalBox__btn .ec-blockBtn--action {
  font-weight: 300;
}
.ec-blockBtn--action {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  font-size: 16px;
  line-height: 2;
  padding: 8px;
  height: auto;
  transition: opacity 0.3s;
  font-weight: 300;
}
.ec-blockBtn--action:focus,
.ec-blockBtn--action:active:focus {
  box-shadow: none;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}
@media (hover: hover) and (pointer: fine) {
  .ec-blockBtn--action:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    opacity: 0.8;
  }
}
.ec-blockBtn--cancel {
  background-color: #E5E5DF;
  color: var(--color-text);
  font-size: 16px;
  line-height: 2;
  padding: 8px;
  height: auto;
  border-color: #E5E5DF;
  transition: opacity 0.3s;
  font-weight: 300;
}
.ec-blockBtn--cancel:focus,
.ec-blockBtn--cancel:active,
.ec-blockBtn--cancel:active:focus {
  box-shadow: none;
  background-color: #E5E5DF;
  color: var(--color-text);
  border-color: transparent;
}
.ec-blockBtn--cancel:hover {
  background-color: #E5E5DF;
  color: var(--color-text);
  border-color: #E5E5DF;
}
@media (hover: hover) and (pointer: fine) {
  .ec-blockBtn--cancel:hover {
    opacity: 0.8;
  }
}

.ec-inlineBtn {
  border: none;
  border-radius: 0px;
  background-color: var(--bg-secondary);
  color: var(--color-text);
  padding: 8px 20px;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
  font-weight: 300;
}
.ec-inlineBtn:focus,
.ec-inlineBtn:active {
  box-shadow: none;
  background-color: var(--bg-secondary);
}
.ec-inlineBtn:hover {
  background-color: var(--bg-secondary);
}
@media (hover: hover) and (pointer: fine) {
  .ec-inlineBtn:hover {
    opacity: 0.8;
  }
}

/* プログレス */
.ec-progress {
  margin-bottom: 24px;
}
.ec-progress .ec-progress__number {
  background-color: #E5E5DF;
  color: var(--color-accent);
  font-family: var(--font-en);
  font-weight: 600;
}
.ec-progress .ec-progress__item {
  z-index: 1;
}
.ec-progress .ec-progress__item:after {
  background: #E5E5DF;
  height: 2px;
}
.ec-progress .is-complete .ec-progress__number {
  background-color: var(--color-accent);
  color: #fff;
}
.ec-progress .ec-progress__label,
.ec-progress .is-complete .ec-progress__label {
  color: var(--color-accent);
  letter-spacing: 0.05em;
}
.ec-progress .ec-progress__label br {
  display: none;
}
@media screen and (max-width: 576px) {
  .ec-progress .ec-progress__label br {
    display: block;
  }
}

/* アラートメッセージ */
.ec-alert-warning {
  background-color: #d9d6d4;
  margin-top: 50px;
  width: max-content;
  margin: 50px auto 0;
  padding: 10px 67px;
}
@media screen and (max-width: 576px) {
  .ec-alert-warning {
    width: 100%;
    padding: 10px 30px;
  }
}
.ec-alert-warning .ec-alert-warning__text {
  color: var(--color-text);
  font-size: 16px;
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (max-width: 576px) {
  .ec-alert-warning .ec-alert-warning__text {
    font-size: 14px;
  }
}
.ec-alert-warning .ec-alert-warning__icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
@media screen and (max-width: 576px) {
  .ec-alert-warning .ec-alert-warning__icon {
    width: 25px;
    height: 25px;
  }
}

/* 合計サマリー */
.ec-totalBox {
  background-color: var(--bg-secondary);
  padding: 16px;
}
.ec-totalBox .ec-totalBox__spec {
  margin-bottom: 17px;
  align-items: center;
}
.ec-totalBox .ec-totalBox__spec dt {
  font-size: 16px;
  line-height: normal;
}
.ec-totalBox .ec-totalBox__paymentTotal {
  font-size: 16px;
  font-weight: 300;
}
.ec-totalBox .ec-totalBox__paymentTotal .ec-totalBox__price,
.ec-totalBox .ec-totalBox__paymentTotal .ec-totalBox__taxLabel {
  color: var(--color-accent);
  font-weight: 300;
}
.ec-totalBox .ec-totalBox__taxRate {
  margin-bottom: 43px;
  display: flex;
  text-align: right;
  flex-wrap: wrap;
  justify-content: start;
}
.ec-totalBox .ec-totalBox__taxRate dd {
  margin-left: auto;
}

/* フォーム */
.ec-label,
.ec-input input,
.ec-birth input,
.ec-select input,
.ec-halfInput input,
.ec-numberInput input,
.ec-zipInput input,
.ec-telInput input {
  margin-bottom: 0;
  font-weight: 300;
}
.ec-input input,
.ec-birth input,
.ec-select input,
.ec-halfInput input,
.ec-numberInput input,
.ec-zipInput input,
.ec-telInput input {
  border-radius: 0px;
  border: solid 1px #d3cec7;
  background-color: #fff;
  font-size: 16px;
  padding: 12px 20px 13px;
}

.ec-input select,
.ec-birth select,
.ec-select select,
.ec-halfInput select,
.ec-numberInput select,
.ec-zipInput select,
.ec-telInput select {
  border-radius: 0px;
  background-color: #fff;
  color: var(--color-text);
  font-size: 16px;
  border: solid 1px #d3cec7;
  padding: 8px 30px 8px 20px;
  margin-bottom: 0;
  appearance: none;
}

.ec-input textarea,
.ec-birth textarea,
.ec-select textarea,
.ec-halfInput textarea,
.ec-numberInput textarea,
.ec-zipInput textarea,
.ec-telInput textarea {
  resize: none;
  height: 120px;
  padding: 15px 20px;
  font-size: 16px;
}
.ec-input textarea::placeholder {
  font-size: 16px;
}
.ec-select {
  margin-bottom: 0;
}
.ec-birth-wrap,
.ec-select-wrap,
.ec-job-wrap {
  width: max-content;
  position: relative;
}
.ec-birth-wrap::after,
.ec-select-wrap::after,
.ec-job-wrap::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: solid 2px var(--color-text);
  border-right: solid 2px var(--color-text);
  pointer-events: none;
}
.ec-birth {
  display: flex;
  align-items: center;
}
.ec-halfInput input[type="text"] {
  max-width: 200px;
  width: 100%;
}
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder {
  font-size: 16px;
  font-family: var(--font-jp);
  color: rgba(0, 0, 0, 0.3);
}

.ec-radio input {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: solid 1px var(--color-text);
  margin: 0 5px 0 0;
  background-color: #fff;
  position: relative;
  display: grid;
  place-items: center;
}
.ec-radio input:checked::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #005cc8;
}
.ec-radio div {
  display: flex;
  align-items: center;
}
.ec-radio div:not(:first-child) {
  margin-top: 15px;
}
.ec-zipInput {
  margin-bottom: 16px;
}
.ec-input.--first {
  margin: 16px 0;
}
.ec-required {
  font-size: 16px;
  color: var(--color-caution);
  margin-left: 0;
}
.l-form-wrap {
  margin-top: 40px;
  background-color: var(--bg-secondary);
  padding: 55px 40px;
}
.l-form-text {
  margin-top: 70px;
}
.l-form-text .caution {
  color: var(--color-caution);
}
.l-form-wrap dl {
  display: flex;
  align-items: center;
}
.l-form-wrap dl:not(:first-child) {
  margin-top: 30px;
}
.l-form-wrap dt {
  min-width: 180px;
  width: calc((200 / 1050) * 100%);
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.l-form-wrap dd {
  flex-grow: 1;
}
.l-form__button {
  max-width: 270px;
  width: 100%;
  margin: 40px auto 0;
  border-radius: 100px;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0.05em;
  padding: 12px;
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-form__button:hover {
    opacity: 0.8;
  }
}
.l-form__button--submit {
  background-color: var(--color-accent);
  color: #fff;
  font-weight: 300;
}

.l-form__button--cancel {
  background-color: #d9d6d4;
  font-weight: 300;
  color: var(--color-text);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-form-text {
    margin-top: 30px;
  }
  .l-form-wrap dl {
    display: block;
  }
  .l-form-wrap dt {
    width: 100%;
  }
  .l-form-wrap dd {
    margin-top: 15px;
  }
}
@media screen and (max-width: 576px) {
  .l-form-wrap {
    padding: 40px 20px;
    margin-top: 30px;
  }
  .l-form-wrap dt,
  .l-form-wrap dd {
    font-size: 14px;
  }

  .ec-input input,
  .ec-birth input,
  .ec-select input,
  .ec-halfInput input,
  .ec-numberInput input,
  .ec-zipInput input,
  .ec-telInput input,
  .ec-input select,
  .ec-birth select,
  .ec-select select,
  .ec-halfInput select,
  .ec-numberInput select,
  .ec-zipInput select,
  .ec-telInput select {
    font-size: 14px;
  }

  .ec-halfInput input[type="text"] {
    width: 48%;
  }
  .ec-radio div {
    flex-wrap: wrap;
  }
  .ec-radio label {
    margin-right: 11px;
  }
  .ec-radio input:checked::after {
    width: 8px;
    height: 8px;
  }
  .ec-radio input {
    width: 14px;
    height: 14px;
    margin: 0 3px 0 0;
  }
}

/* エラーメッセージ */
.ec-errorMessage {
  color: var(--color-caution);
  margin-top: 8px;
  font-weight: 300;
}

/* ====================================
ローディング
====================================== */
.loading__overlay {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  z-index: var(--index-loading);
  background-color: var(--bg-base);
  animation-duration: 2s;
  animation-fill-mode: both;
  top: 0;
  left: 0;
}
.loading__logo {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: transform 1s linear;
  animation-duration: 2s;
  animation-fill-mode: both;
  z-index: var(--index-loading);
}
.loading__logo {
  max-width: 400px;
  width: 100%;
}
.loading__logo.is-show {
  animation-name: imageShowBlur;
  opacity: 1;
  transition: 0.4s;
}
.loading__logo.is-hide,
.loading__overlay.is-hide {
  animation-name: imageHideBlur;
  opacity: 1;
  transition: 0.4s;
}
@keyframes imageShowBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -ms-filter: blur(20px);
    -o-filter: blur(20px);
    filter: blur(20px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageHideBlur {
  from {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }

  to {
    opacity: 0;
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -ms-filter: blur(20px);
    -o-filter: blur(20px);
    filter: blur(20px);
  }
}
@media screen and (max-width: 1024px) {
  .loading__logo {
    max-width: 300px;
  }
}
@media screen and (max-width: 576px) {
  .loading__logo {
    top: 47%;
    max-width: 250px;
  }
}

/* ====================================
ヘッダー
====================================== */
.header {
  width: 100%;
  opacity: 1;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--bg-base);
  z-index: var(--index-header);
  transition:
    opacity 0.25s,
    visibility 0.25s,
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header.end-load {
  z-index: var(--index-header-endLoad);
}
.header.UpMove {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
  transition:
    opacity 0.5s,
    visibility 0.5s,
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__inner {
  display: flex;
  align-items: center;
  position: relative;
  height: inherit;
  padding: 0 60px;
}
.header__menu {
  height: inherit;
}
.header__menu-list {
  display: flex;
  align-items: center;
  gap: min(2vw, 40px);
  height: inherit;
}
.header__menu-item {
  color: var(--color-text);
  letter-spacing: 0.8px;
  font-weight: 300;
  height: inherit;
}
.header__menu-link {
  transition: color 0.3s;
  display: grid;
  place-items: center;
  height: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .header__menu-link:hover {
    color: rgb(132 161 46 / 0.6);
    transition: color 0.3s;
  }
}
.header__megamenu {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: var(--bg-base);
  display: none;
}
.header__megamenu-inner {
  padding: 80px 20px;
  margin-inline: auto;
}
.header__megamenu-inner:not(.--guide) {
  max-width: calc(1480px - 180px * 2);
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 100px;
}
.header__megamenu-inner.--guide {
  max-width: calc(1480px - 140px * 2);
  display: block;
}
.header__megamenu-heading {
  font-size: 24px;
  line-height: normal;
  letter-spacing: 1.2px;
  padding-bottom: 10px;
  border-bottom: solid 1px #D3CEC7;
  color: #000000;
}
.header__megamenu-title {
  font-size: 30px;
  letter-spacing: 1.5px;
  color: var(--color-text);
}
.header__megamenu-button {
  margin-top: 40px;
}
.header__megamenu-list {
  display: flex;
  flex-wrap: wrap;
}
.header__megamenu-list:not(.--guide) {
  gap: 16px;
}
.header__megamenu-list.--guide {
  gap: 20px 100px;
  margin-top: 20px;
}
.header__megamenu-item:not(.--guide) {
  width: calc((100% / 3) - 16px * 2 / 3);
  max-width: 226px;
}
.header__megamenu-item.--guide {
  width: calc((100% / 3) - 100px * 2 / 3);
  max-width: 320px;
}
.header__megamenu-link {
  display: grid;
  align-items: center;
  column-gap: 10px;
  transition: opacity 0.3s;
}
.header__megamenu-link:not(.--guide) {
  grid-template-columns: 50px 1fr;
  padding: 15px;
  background-color: var(--bg-secondary);
  color: var(--color-text);
}
.header__megamenu-link.--guide {
  grid-template-columns: 1fr 13px;
  font-size: 18px;
  line-height: calc(45 / 18);
  letter-spacing: 0.9px;
  color: #000000;
}
.header__megamenu-link.--guide::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px rgba(132, 161, 46, 0.50);
  border-right: solid 2px rgba(132, 161, 46, 0.50);
  rotate: 45deg;
}
@media (any-hover: hover) {
  .header__megamenu-link:hover {
    color: var(--color-text);
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.header__megamenu-thumb {
  aspect-ratio: 1;
}
.header__megamenu-text {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1;
}
.header__megamenu-text .sub {
  font-size: 12px;
  letter-spacing: 0.6px;
  margin-top: 8px;
  display: block;
}
.header__logo {
  width: 140px;
  height: 150px;
  border-radius: 0 0 40px 40px;
  padding: 27px 20px 0;
  background-color: var(--bg-base);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header__nav {
  margin-left: auto;
}
.header__nav-list {
  display: flex;
  gap: 15px;
}
.header__nav-item {
  width: 180px;
}
.header__nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 100px;
  justify-content: center;
  line-height: normal;
}
.header__nav-icon {
  width: 20px;
  height: 20px;
}
.header__nav-item:not(.--cart) .header__nav-link {
  color: #694940;
  background-color: #E5E5DF;
  transition: background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-item:not(.--cart) .header__nav-link:hover {
    background-color: #D5D6D0;
    transition: background-color 0.3s;
  }
}
.header__nav-item:not(.--cart) .header__nav-link .fa-user:before {
  color: #694940;
}
.header__nav-item:not(.--cart) .header__nav-icon {
  fill: #694940;
}
.header__nav-item.--cart .header__nav-link {
  color: #fff;
  background-color: var(--color-accent);
  transition: background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-item.--cart .header__nav-link:hover {
    background-color: #5E7811;
    transition: background-color 0.3s;
  }
}
.header__nav-item.--cart .header__nav-icon {
  fill: #fff;
}

@media screen and (max-width: 1280px) {
  .header__inner {
    padding: 0 20px;
  }
  .header__menu-list {
    gap: min(1.5vw, 20px);
  }
  .header__menu-item,
  .header__nav-item {
    font-size: 14px;
  }
  .header__megamenu-inner {
    gap: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    height: 70px;
  }
  .header__logo {
    position: absolute;
    width: 115px;
    height: 126px;
    top: 0;
    padding: 15px 18px;
    border-radius: 0 0 28px 28px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__menu,
  .header__nav-item:not(.--cart) {
    display: none;
  }
  .header__nav-item.--cart {
    width: 45px;
    height: 45px;
    margin-right: 24px;
  }
  .header__nav-item.--cart .header__nav-link {
    height: 100%;
  }
  .header__nav-text {
    display: none;
  }
}

/* ====================================
ハンバーガーメニュー
====================================== */
.burger {
  width: 28px;
  height: 16px;
  display: none;
}
.burger img {
  display: block;
}
.burger__content {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100dvh;
  background-color: var(--bg-base);
  position: fixed;
  top: 0;
  left: 0;
  padding: 28px 0 45px;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  overflow-y: scroll;
}
.burger__content.is-active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.burger__logo {
  max-width: 94px;
  margin: 0 auto;
}
.burger__close {
  position: absolute;
  top: 27px;
  right: 15px;
  color: #000;
}
.burger__close img {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
}
.burger__close-text {
  font-size: 14px;
  letter-spacing: 0.56px;
}
.burger__inner {
  padding: 0 40px;
  margin-top: 45px;
}
.burger__nav-item {
  font-size: 34px;
  letter-spacing: 1.7px;
}
.burger__nav-item .sub {
  font-size: 14px;
  display: inline-block;
  margin-left: 20px;
  letter-spacing: 0.6px;
  opacity: 0.7;
}
.burger__menu {
  margin-top: 40px;
}
.burger__menu-item {
  letter-spacing: 0.6px;
  font-size: 14px;
}
.burger__menu-item:not(:first-child) {
  margin-top: 10px;
}
.burger__instagram {
  width: 20px;
  height: 20px;
  margin-top: 10px;
}
.burger__instagram-icon,
.burger__instagram-link {
  display: block;
  width: 100%;
  height: 100%;
}
.burger__buttons {
  margin-top: 40px;
}
.burger__button {
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
}
.burger__button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-size: 16px;
  padding: 18px 0 19px;
  border-radius: 100px;
}
.burger__button-link:not(.--cart) {
  background-color: rgba(227, 224, 220, 0.8);
  color: #876f53;
}
.burger__button-link.--cart {
  background-color: var(--color-accent);
  color: #fff;
  margin-top: 20px;
}
.burger__button-link.--cart .burger__button-icon {
  fill: #fff;
}
.burger__button-icon {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 1024px) {
  .burger {
    display: block;
  }
}
/* ====================================
フッター
====================================== */
.footer {
  background-color: #272A1F;
  color: #fff;
}
.footer__top {
  padding: 100px 0 50px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: space-between;
}
.footer__menu {
  display: flex;
  gap: 100px;
}
.footer__menu-item.--main {
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: calc(20 / 18);
}
.footer__menu-item.--main:not(:first-child) {
  margin-top: 30px;
}
.footer__menu-link {
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__menu-item.--main .footer__menu-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
  .footer__menu-item.--sub .footer__menu-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
.footer__menu-item.--sub {
  font-size: 14px;
  opacity: 0.7;
}
.footer__menu-item.--sub:not(:first-child) {
  margin-top: 20px;
}
.footer__menu-arrow {
  display: none;
}
.footer__nav {
  max-width: 268px;
  width: 100%;
}
.footer__nav-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.footer__nav-item:not(:first-child) {
  margin-top: 40px;
}
.footer__link-text {
  font-size: 40px;
}
.footer__link-text--sub {
  font-family: var(--font-jp);
  font-size: 16px;
  display: block;
  margin-top: 10px;
  letter-spacing: 0.8px;
}
.footer__link-arrow {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  border: solid 1px #93908d;
  position: relative;
}
.footer__link-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  fill: #93908d;
}
.footer__link-icon.--before {
  opacity: 0;
  transform: translateX(-100%);
  transition:
    transform 0.4s ease-in-out,
    opacity 0.2s ease-in-out;
}
.footer__link-icon.--after {
  transform: translateX(0);
  transition:
    transform 0.4s ease-in-out,
    opacity 0.2s ease-in-out 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__nav-link:hover .footer__link-icon.--before {
    opacity: 1;
    transform: translateX(0);
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out 0.2s;
  }
  .footer__nav-link:hover .footer__link-icon.--after {
    opacity: 0;
    transform: translateX(100%);
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out;
  }
}
.footer__bottom {
  margin-top: 50px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.footer__bottom-info {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__bottom-logo {
  max-width: 100px;
}
.footer__bottom-name {
  font-size: 23px;
  letter-spacing: 1.1px;
  margin-bottom: 10px;
}
.footer__bottom-name span{
  font-size: 12px;
  display: block;
}
.footer__bottom-address,
.footer__bottom-tel {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.8px;
}
.footer__bottom-address br {
  display: none;
}
.footer__bottom-link {
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 20px;
  gap: 20px;
}
.footer__bottom-link.--sp {
  display: none;
}
.footer__bottom-arrow {
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 100px;
  border: solid 1px #93908d;
}
.footer__bottom-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  fill: #93908d;
}
.footer__bottom-icon.--before {
  opacity: 0;
  transform: translateX(-100%) rotate(-45deg);
  transition:
    transform 0.4s ease-in-out,
    opacity 0.2s ease-in-out;
}
.footer__bottom-icon.--after {
  transform: translateX(0) rotate(-45deg);
  transition:
    transform 0.4s ease-in-out,
    opacity 0.2s ease-in-out 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__bottom-link:hover .footer__bottom-icon.--before {
    opacity: 1;
    transform: translateX(0) rotate(-45deg);
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out 0.2s;
  }
  .footer__bottom-link:hover .footer__bottom-icon.--after {
    opacity: 0;
    transform: translateX(100%) rotate(-45deg);
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out;
  }
}
.footer__bottom-copyright {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__bottom-instagram {
  display: block;
  width: 23px;
  height: 23px;
}
.footer__indtagram-icon {
  display: block;
  width: 100%;
  height: 100%;
  fill: #fff;
}
.footer__bottom-text {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .footer__menu {
    gap: 70px;
  }
}
@media screen and (max-width: 768px) {
  .footer__top {
    padding-top: 70px;
    flex-direction: column;
  }
  .footer__nav {
    max-width: 100%;
    order: 1;
  }
  .footer__nav-list {
    display: flex;
    justify-content: space-between;
  }
  .footer__nav-item {
    width: calc(50% - 20px / 2);
  }
  .footer__nav-item:not(:first-child) {
    margin-top: 0;
  }
  .footer__menu {
    margin-top: 57px;
    flex-direction: column;
    gap: 27px;
    order: 2;
  }
  .footer__menu-list.--main {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 20px;
  }
  .footer__menu-item.--main {
    width: calc(50% - 20px / 2);
  }
  .footer__menu-item.--main:not(:first-child) {
    margin-top: 0;
  }
  .footer__menu-item.--main a {
    display: block;
    padding-bottom: 17px;
    border-bottom: solid 1px #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer__menu-arrow {
    display: block;
    width: 13px;
    height: 13px;
    fill: #fff;
  }
  .footer__menu-item.--sub:not(:first-child) {
    margin-top: 17px;
  }
  .footer__bottom-link.--pc {
    display: none;
  }
  .footer__bottom-link.--sp {
    display: flex;
    order: 3;
    justify-content: start;
    margin-top: 50px;
    font-size: 14px;
    gap: 15px;
  }
  .footer__bottom-arrow {
    width: 16px;
    height: 16px;
  }
  .footer__bottom-icon {
    width: 8px;
    height: 8px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 576px) {
  .footer__link-text {
    font-size: 36px;
  }
  .footer__link-text--sub {
    font-size: 12px;
    margin-top: 8px;
  }
  .footer__link-arrow {
    width: 20px;
    height: 20px;
  }
  .footer__link-icon {
    width: 8px;
    height: 8px;
  }
  .footer__menu-item.--main {
    font-size: 14px;
  }
  .footer__bottom-name {
    font-size: 22px;
  }
  .footer__bottom-name span{
    font-size: 10px;
  }
  .footer__bottom-address br {
    display: block;
  }
  .footer__bottom-address,
  .footer__bottom-tel {
    font-size: 12px;
  }
}

/* ====================================
トップページ
====================================== */
.mv {
  /* background: url(../img/top/mv.jpg) no-repeat center center / cover; */
  /* aspect-ratio: 1440 / 710; */
  display: grid;
  place-items: center;
  position: relative;
  height: calc(100dvh - 90px);
}
.mv__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: var(--index-loading);
}

.mv__title {
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 100px;
  line-height: calc(100 / 80);
  letter-spacing: 10px;
  opacity: 0;
  transition: transform 1s linear;
  animation-duration: 2s;
  animation-fill-mode: both;
  z-index: var(--index-loading-title);
  position: relative;
}
.mv__title.is-show {
  animation-name: imageShowBlur;
  opacity: 1;
  transition: 0.4s;
}
.mv__lead {
  font-size: 22px;
  letter-spacing: 4.4px;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  opacity: 0;
}
.mv__lead.is-show {
  opacity: 1;
  transition: opacity 0.6s;
}
.mv__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mv__scroll-arrow {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: solid 1px #fff;
  display: grid;
  place-items: center;
}
.mv__scroll-arrow img {
  width: 20px;
}
.mv__scroll-text {
  color: #fff;
  letter-spacing: 1.6px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 10px;
}
.mv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .mv__title {
    font-size: 70px;
  }
  .mv__lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  /* .mv {
    background-image: url(../img/top/sp/mv.jpg);
  } */
}
@media screen and (max-width: 576px) {
  .mv__title {
    font-size: 52px;
  }
  .mv__lead {
    font-size: 14px;
  }
}

/* お知らせ */
.news {
  padding: 100px 0 30px;
}
.news .inner {
  max-width: 1040px;
  display: flex;
  gap: 70px;
}
.news .section__heading {
  font-size: 48px;
}
.news .section__sub-heading {
  font-size: 16px;
}
.news .section__sub-heading::before {
  width: 6px;
  height: 6px;
}
.news__list {
  flex-grow: 1;
}
.news__item {
  padding-bottom: 25px;
  border-bottom: solid 1px #d3cec7;
}
.news__item:not(:first-child) {
  margin-top: 25px;
}
.news__item-heading {
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}
.news__item-date,
.news__item-title {
  letter-spacing: 0.8px;
  line-height: normal;
}
.news__item-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.news__item-title {
  margin-right: 10px;
}
.news__item-close {
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-bottom: solid 2px rgba(132, 161, 46, 0.50);
  border-right: solid 2px rgba(132, 161, 46, 0.50);
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.news__item.is-active .news__item-close {
  transform: rotate(-135deg);
  transition: transform 0.3s;
}
.news__item-desc {
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.7px;
  margin-top: 5px;
  padding: 0 53px 0 113px;
  display: none;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 80px 0 60px;
  }
  .news .inner {
    flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 576px) {
  .news .inner {
    gap: 30px;
  }
  .news .section__heading {
    font-size: 36px;
  }
  .news .section__sub-heading {
    font-size: 12px;
  }
  .news__item {
    padding-bottom: 18px;
  }
  .news__item:not(:first-child) {
    margin-top: 18px;
  }
  .news__item-heading {
    font-size: 14px;
    gap: 20px;
  }
  .news__item-desc {
    font-size: 12px;
    padding-left: 95px;
  }
}
/* ランキング */
.ranking {
  background-color: var(--bg-secondary);
  padding: 170px 0 140px;
  position: relative;
  margin-top: 80px;
}
.ranking .section__heading {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.ranking .splide__track {
  overflow: visible;
}
.ranking.is-initialized:not(.is-active) .splide__list {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px 20px;
}
.ranking__item {
  background-color: var(--bg-base);
  position: relative;
}
.ranking__item:nth-child(1),
.ranking__item:nth-child(2) {
  width: calc(50% - 20px / 2);
  padding: 32px 37px;
}
.ranking__item:nth-child(3),
.ranking__item:nth-child(4),
.ranking__item:nth-child(5) {
  width: calc(33.33% - 20px * 2 / 3);
  padding: 21px 24px;
}
.ranking__item-link {
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .ranking__item-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.ranking__badge {
  position: absolute;
  top: -9px;
  left: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
.ranking__badge .number {
  color: #fff;
  line-height: 1;
}
.ranking__badge.--rank1 {
  background-color: #9b7a2f;
}
.ranking__badge.--rank2 {
  background-color: #837f75;
}
.ranking__badge.--rank3 {
  background-color: #7e491c;
}
.ranking__badge.--rank4,
.ranking__badge.--rank5 {
  background-color: #b5b0a2;
}
.ranking__badge.--rank1,
.ranking__badge.--rank2 {
  width: 74px;
  height: 74px;
  font-size: 11px;
}
.ranking__badge.--rank1 .number,
.ranking__badge.--rank2 .number {
  font-size: 33px;
}
.ranking__badge.--rank3,
.ranking__badge.--rank4,
.ranking__badge.--rank5 {
  width: 50px;
  height: 50px;
  font-size: 10px;
}
.ranking__badge.--rank3 .number,
.ranking__badge.--rank4 .number,
.ranking__badge.--rank5 .number {
  font-size: 22px;
}
.ranking__head {
  color: #C62A28;
  text-align: center;
  letter-spacing: 1px;
}
.ranking__item:nth-child(1) .ranking__head,
.ranking__item:nth-child(2) .ranking__head {
  font-size: 20px;
  margin-left: 65px;
}
.ranking__item:nth-child(3) .ranking__head,
.ranking__item:nth-child(4) .ranking__head,
.ranking__item:nth-child(5) .ranking__head {
  font-size: 16px;
  margin-left: 55px;
}
.ranking__head span {
  position: relative;
}
.ranking__item:nth-child(1) .ranking__head span,
.ranking__item:nth-child(2) .ranking__head span {
  padding-left: 53px;
}
.ranking__item:nth-child(3) .ranking__head span,
.ranking__item:nth-child(4) .ranking__head span,
.ranking__item:nth-child(5) .ranking__head span {
  padding-left: 40px;
}
.ranking__head span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/common/icon-cloud.svg) no-repeat center center / contain;
}
.ranking__item:nth-child(1) .ranking__head span::before,
.ranking__item:nth-child(2) .ranking__head span::before {
  width: 40px;
  height: 20px;
}
.ranking__item:nth-child(3) .ranking__head span::before,
.ranking__item:nth-child(4) .ranking__head span::before,
.ranking__item:nth-child(5) .ranking__head span::before {
  width: 30px;
  height: 14px;
}

.ranking__body {
  display: flex;
  justify-content: space-between;
}
.ranking__item:nth-child(1) .ranking__body,
.ranking__item:nth-child(2) .ranking__body {
  margin-top: 34px;
  gap: 20px;
}
.ranking__item:nth-child(3) .ranking__body,
.ranking__item:nth-child(4) .ranking__body,
.ranking__item:nth-child(5) .ranking__body {
  margin-top: 17px;
  gap: 10px;
}
.ranking__thumb {
  width: 49%;
  height: fit-content;
}
.ranking__item:nth-child(1) .ranking__thumb,
.ranking__item:nth-child(2) .ranking__thumb {
  aspect-ratio: 246 / 184;
  max-width: 246px;
}
.ranking__item:nth-child(3) .ranking__thumb,
.ranking__item:nth-child(4) .ranking__thumb,
.ranking__item:nth-child(5) .ranking__thumb {
  aspect-ratio: 160 / 120;
  max-width: 160px;
}
.ranking__thumb img {
  height: 100%;
  object-fit: cover;
  background-color: var(--bg-base);
}
.ranking__desc {
  flex-grow: 1;
  width: 43%;
}
.ranking__category {
  padding: 2px 8px;
  width: max-content;
  color: #fff;
  background-color: #A2A979;
  letter-spacing: 0.6px;
}
.ranking__item:nth-child(1) .ranking__category,
.ranking__item:nth-child(2) .ranking__category {
  font-size: 12px;
}
.ranking__item:nth-child(3) .ranking__category,
.ranking__item:nth-child(4) .ranking__category,
.ranking__item:nth-child(5) .ranking__category {
  font-size: 10px;
}
.ranking__item:nth-child(1) .ranking__name,
.ranking__item:nth-child(2) .ranking__name {
  font-size: 22px;
  letter-spacing: 1.1px;
  line-height: calc(33 / 22);
  margin-top: 5px;
}
.ranking__item:nth-child(3) .ranking__name,
.ranking__item:nth-child(4) .ranking__name,
.ranking__item:nth-child(5) .ranking__name {
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: calc(21 / 16);
  margin-top: 9px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ranking__area {
  color: #876f53;
}
.ranking__item:nth-child(1) .ranking__area,
.ranking__item:nth-child(2) .ranking__area {
  font-size: 12px;
  letter-spacing: 0.6px;
  margin-top: 10px;
}
.ranking__item:nth-child(3) .ranking__area,
.ranking__item:nth-child(4) .ranking__area,
.ranking__item:nth-child(5) .ranking__area {
  font-size: 10px;
  letter-spacing: 0.5px;
  margin-top: 5px;
}
.ranking__price span {
  font-family: var(--font-jp);
}
.ranking__item:nth-child(1) .ranking__price,
.ranking__item:nth-child(2) .ranking__price {
  font-size: 20px;
  letter-spacing: 1px;
  margin-top: 10px;
}
.ranking__item:nth-child(1) .ranking__price span,
.ranking__item:nth-child(2) .ranking__price span {
  font-size: 12px;
}
.ranking__item:nth-child(3) .ranking__price,
.ranking__item:nth-child(4) .ranking__price,
.ranking__item:nth-child(5) .ranking__price {
  font-size: 16px;
  letter-spacing: 0.8px;
  margin-top: 10px;
}
.ranking__item:nth-child(3) .ranking__price span,
.ranking__item:nth-child(4) .ranking__price span,
.ranking__item:nth-child(5) .ranking__price span {
  font-size: 10px;
}
.ranking .splide__pagination {
  gap: 10px;
  margin-top: 20px;
}
.ranking .splide__pagination__page {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background-color: var(--color-accent);
  opacity: 0.3;
}
.ranking .splide__pagination__page.is-active {
  opacity: 1;
}
@media screen and (max-width: 1280px) {
  .ranking__item:nth-child(1) .ranking__head,
  .ranking__item:nth-child(2) .ranking__head {
    font-size: 18px;
  }
  .ranking__item:nth-child(1) .ranking__name,
  .ranking__item:nth-child(2) .ranking__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .ranking__item a {
    display: flex;
    flex-direction: column;
  }
  .ranking__badge.--rank1,
  .ranking__badge.--rank2 {
    width: 64px;
    height: 64px;
  }
  .ranking__badge.--rank3,
  .ranking__badge.--rank4,
  .ranking__badge.--rank5 {
    width: 45px;
    height: 45px;
  }
  .ranking__badge.--rank1 .number,
  .ranking__badge.--rank2 .number {
    font-size: 30px;
  }
  .ranking__badge.--rank3 .number,
  .ranking__badge.--rank4 .number,
  .ranking__badge.--rank5 .number {
    font-size: 20px;
  }
  .ranking__item:nth-child(1) .ranking__head span::before,
  .ranking__item:nth-child(2) .ranking__head span::before {
    width: 30px;
  }
  .ranking__item:nth-child(3) .ranking__head span::before,
  .ranking__item:nth-child(4) .ranking__head span::before,
  .ranking__item:nth-child(5) .ranking__head span::before {
    width: 25px;
  }
  .ranking__item:nth-child(1) .ranking__head,
  .ranking__item:nth-child(2) .ranking__head {
    margin: 20px 0 0 0;
    font-size: 16px;
  }
  .ranking__item:nth-child(1) .ranking__head span,
  .ranking__item:nth-child(2) .ranking__head span {
    padding-left: 40px;
  }
  .ranking__item:nth-child(3) .ranking__head span,
  .ranking__item:nth-child(4) .ranking__head span,
  .ranking__item:nth-child(5) .ranking__head span {
    padding-left: 30px;
  }
  .ranking__item:nth-child(3) .ranking__head,
  .ranking__item:nth-child(4) .ranking__head,
  .ranking__item:nth-child(5) .ranking__head {
    margin: 20px 0 0 0;
    font-size: 14px;
  }
  .ranking__item:nth-child(1),
  .ranking__item:nth-child(2) {
    padding: 70px 30px 40px;
  }
  .ranking__item:nth-child(3),
  .ranking__item:nth-child(4),
  .ranking__item:nth-child(5) {
    padding: 50px 20px 20px;
  }
  .ranking__head {
    order: 2;
  }
  .ranking__body {
    display: contents;
  }
  .ranking__thumb {
    width: 100%;
    order: 1;
  }
  .ranking__item:nth-child(1) .ranking__thumb,
  .ranking__item:nth-child(2) .ranking__thumb,
  .ranking__item:nth-child(3) .ranking__thumb,
  .ranking__item:nth-child(4) .ranking__thumb,
  .ranking__item:nth-child(5) .ranking__thumb {
    max-width: 100%;
  }
  .ranking__desc {
    width: 100%;
    order: 3;
    margin-top: 20px;
    padding-top: 20px;
    border-top: solid 1px rgba(137, 26, 35, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .ranking {
    margin-top: 60px;
    padding: 100px 0 120px;
  }
  .ranking .inner {
    padding: 0 38px;
  }
  .ranking .splide__track {
    overflow: hidden;
    padding-top: 10px;
  }
  .ranking .splide__arrows {
    display: none;
    padding-top: 10px;
  }
  .ranking__badge.--rank3,
  .ranking__badge.--rank4,
  .ranking__badge.--rank5 {
    width: 64px;
    height: 64px;
    font-size: 11px;
  }
  .ranking__badge.--rank3 .number,
  .ranking__badge.--rank4 .number,
  .ranking__badge.--rank5 .number {
    font-size: 30px;
  }
  .ranking__item:nth-child(3),
  .ranking__item:nth-child(4),
  .ranking__item:nth-child(5) {
    padding: 70px 30px 40px;
  }
  .ranking__item:nth-child(1) .ranking__thumb,
  .ranking__item:nth-child(2) .ranking__thumb,
  .ranking__item:nth-child(3) .ranking__thumb,
  .ranking__item:nth-child(4) .ranking__thumb,
  .ranking__item:nth-child(5) .ranking__thumb {
    max-width: 80%;
    margin: 0 auto;
  }
  .ranking__item:nth-child(3) .ranking__head,
  .ranking__item:nth-child(4) .ranking__head,
  .ranking__item:nth-child(5) .ranking__head {
    font-size: 16px;
  }
  .ranking__item:nth-child(3) .ranking__head span,
  .ranking__item:nth-child(4) .ranking__head span,
  .ranking__item:nth-child(5) .ranking__head span {
    padding-left: 40px;
  }
  .ranking__item:nth-child(3) .ranking__name,
  .ranking__item:nth-child(4) .ranking__name,
  .ranking__item:nth-child(5) .ranking__name {
    font-size: 20px;
  }
  .ranking__item:nth-child(3) .ranking__area,
  .ranking__item:nth-child(4) .ranking__area,
  .ranking__item:nth-child(5) .ranking__area {
    font-size: 12px;
  }
  .ranking__item:nth-child(3) .ranking__price,
  .ranking__item:nth-child(4) .ranking__price,
  .ranking__item:nth-child(5) .ranking__price {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .ranking__badge.--rank1,
  .ranking__badge.--rank2,
  .ranking__badge.--rank3,
  .ranking__badge.--rank4,
  .ranking__badge.--rank5 {
    width: 55px;
    height: 55px;
    font-size: 10px;
  }
  .ranking__badge.--rank1 .number,
  .ranking__badge.--rank2 .number,
  .ranking__badge.--rank3 .number,
  .ranking__badge.--rank4 .number,
  .ranking__badge.--rank5 .number {
    font-size: 24px;
  }
  .ranking__item:nth-child(1),
  .ranking__item:nth-child(2),
  .ranking__item:nth-child(3),
  .ranking__item:nth-child(4),
  .ranking__item:nth-child(5) {
    padding: 56px 30px 40px;
  }
  .ranking__item:nth-child(1) .ranking__thumb,
  .ranking__item:nth-child(2) .ranking__thumb,
  .ranking__item:nth-child(3) .ranking__thumb,
  .ranking__item:nth-child(4) .ranking__thumb,
  .ranking__item:nth-child(5) .ranking__thumb {
    max-width: 100%;
  }
  .ranking__item:nth-child(1) .ranking__head,
  .ranking__item:nth-child(2) .ranking__head,
  .ranking__item:nth-child(3) .ranking__head,
  .ranking__item:nth-child(4) .ranking__head,
  .ranking__item:nth-child(5) .ranking__head {
    font-size: 14px;
  }
  .ranking__item:nth-child(1) .ranking__head span,
  .ranking__item:nth-child(2) .ranking__head span,
  .ranking__item:nth-child(3) .ranking__head span,
  .ranking__item:nth-child(4) .ranking__head span,
  .ranking__item:nth-child(5) .ranking__head span {
    padding-left: 37px;
  }
  .ranking__item:nth-child(1) .ranking__head span::before,
  .ranking__item:nth-child(2) .ranking__head span::before,
  .ranking__item:nth-child(3) .ranking__head span::before,
  .ranking__item:nth-child(4) .ranking__head span::before,
  .ranking__item:nth-child(5) .ranking__head span::before {
    width: 28px;
    height: 13px;
  }
  .ranking__item:nth-child(1) .ranking__name,
  .ranking__item:nth-child(2) .ranking__name,
  .ranking__item:nth-child(3) .ranking__name,
  .ranking__item:nth-child(4) .ranking__name,
  .ranking__item:nth-child(5) .ranking__name {
    font-size: 22px;
  }
}

/* カテゴリー */
.top-category {
  padding: 140px 0;
  position: relative;
}
.top-category__bg {
  position: absolute;
  top: -50px;
  right: 100px;
  width: 313px;
  height: 644px;
}
.top-category .inner {
  position: relative;
}
.top-category__list {
  display: flex;
  margin-top: 70px;
  gap: 40px;
}
.top-category__item {
  width: calc((100% / 3) - 40px * 2 / 3);
}
.top-category__thumb {
  aspect-ratio: 360 / 225;
}
.top-category__thumb img {
  height: 100%;
  object-fit: cover;
}
.top-category__name {
  font-size: 30px;
  letter-spacing: 1.5px;
  margin-top: 10px;
  line-height: normal;
  font-weight: 300;
}
.top-category__link a {
  margin-top: 10px;
  justify-content: end;
  width: max-content;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .top-category__bg {
    right: 30px;
  }
  .top-category__list {
    gap: 60px;
    flex-direction: column;
  }
  .top-category__item {
    max-width: 70%;
    width: 100%;
    margin-inline: auto;
  }
  .top-category__name {
    font-size: 30px;
  }
  .top-category__link a {
    font-size: 18px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .top-category {
    padding: 80px 0;
  }
  .top-category__bg {
    right: 0;
    top: -30px;
    width: 38.4%;
    height: auto;
  }
  .top-category__item {
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .top-category__list {
    margin-top: 46px;
    gap: 80px;
  }
  .top-category__name {
    font-size: 30px;
    line-height: normal;
    margin-top: 15px;
  }
  .top-category__text {
    font-size: 14px;
    margin-top: 0;
    line-height: calc(35 / 14);
  }
  .top-category__link a {
    margin-top: 15px;
  }
}

/* お客様の声 */
.voice {
  background-color: var(--bg-secondary);
  padding: 140px 0;
}
.voice__inner {
  max-width: calc(1440px - 50px);
  position: relative;
}
.voice__item {
  padding: 30px;
  background-color: var(--bg-base);
}
.voice__head {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 20px;
  align-items: center;
}
.voice__icon img {
  width: 100%;
}
.voice__icon .name {
  text-align: center;
  font-size: 14px;
  line-height: calc(25 / 14);
  color: #91918B;
  display: block;
  margin-top: 5px;
}
.voice__title {
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: normal;
  color: #5E7811;
}
.voice__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: calc(25 / 14);
  letter-spacing: 0.7px;
}
.voice__wrapper {
  max-width: calc(1440px - 50px * 2 + 200px);
  padding: 0 100px;
  margin-inline: auto;
  margin-top: 50px;
}
.voice__arrows {
  position: absolute;
  top: 65%;
  left: 50%;
  translate: -50% -50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}
.voice__arrows .splide__arrow {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-color: rgb(38 42 27 / 0.2);
  display: block;
  position: relative;
  cursor: pointer;
}
.voice__arrows .splide__arrow--prev {
  rotate: 180deg;
}
.voice__arrows .p-button__icon {
  fill: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .voice__arrows .splide__arrow:hover .p-button__icon.--before {
    opacity: 1;
    transform: translateX(0);
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out 0.2s;
  }
  .voice__arrows .splide__arrow:hover .p-button__icon.--after {
    opacity: 0;
    transform: translateX(100%);
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out;
  }
}
.voice .splide__pagination {
  gap: 10px;
  margin-top: 20px;
}
.voice .splide__pagination__page.is-active {
  opacity: 1;
}
.voice .splide__pagination__page {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background-color: var(--color-accent);
  opacity: 0.3;
}
@media screen and (max-width: 1280px) {
  .voice__wrapper {
    padding: 0 45px;
  }
}
@media screen and (max-width: 768px) {
  .voice {
    padding: 80px 0;
  }
  .voice__item {
    padding: 30px 20px;
  }
  .voice .splide__track {
    margin-top: 45px;
  }
  .voice__wrapper {
    max-width: 335px;
    padding: 0;
  }
}

/* ピックアップ */
.pickup {
  /* background-color: var(--bg-secondary); */
  padding: 140px 0;
}
.pickup__list {
  margin-top: 70px;
  display: flex;
  gap: 30px;
}
.pickup__item {
  width: calc(25% - 20px * 3 / 4);
}
.pickup__item a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .pickup__item a:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.pickup__thumb {
  aspect-ratio: 1/1;
}
.pickup__thumb img {
  height: 100%;
  object-fit: contain;
}
.pickup__body {
  margin-top: 20px;
}
.pickup__name {
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.pickup__price {
  font-size: 20px;
  color: #58720D;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  margin-top: 10px;
}
.pickup__price span {
  font-size: 10px;
  color: #58720D;
  letter-spacing: 0.5px;
  font-weight: 300;
  display: inline-block;
  margin-left: 0.5em;
}
.pickup__tags {
  margin-top: 10px;
}
.pickup__button {
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  .pickup__name {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .pickup {
    padding: 80px 0;
  }
  .pickup__list {
    margin-top: 45px;
    gap: 50px 20px;
    flex-wrap: wrap;
  }
  .pickup__item {
    width: calc(50% - 20px / 2);
  }
  .pickup__price {
    font-size: 16px;
  }
  .pickup__button {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 576px) {
  .pickup__body {
    margin-top: 10px;
  }
  .pickup__desc-title {
    margin-right: 5px;
  }
  .pickup__desc-body .leaf {
    width: 10px;
    height: 13px;
  }
  .pickup__desc-body {
    gap: 7px;
  }
}

/* トピック */
.topic {
  padding: 140px 0;
  position: relative;
  background-image: url(../img/top/bg-smoke.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--bg-secondary);
}
.topic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/bg-smoke02.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.topic .inner {
  position: relative;
  z-index: 1;
}
.topic__heading--sub {
  font-size: 24px;
  letter-spacing: 1.2px;
  color: #5E7811;
  position: relative;
}
.topic__heading {
  font-size: 60px;
  letter-spacing: 6px;
  line-height: calc(104 / 60);
  color: #5E7811;
  margin-top: 40px;
  position: relative;
}
.topic__text {
  color: #5E7811;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: calc(45 / 18);
  max-width: 460px;
  margin-top: 40px;
  position: relative;
  width: 38.3vw;
}
.topic__image {
  position: absolute;
}
.topic__image01 {
  max-width: clamp(410px, 30.5vw, 440px);
  right: 140px;
  top: 145px;
}
.topic__image02 {
  max-width: clamp(290px, 25.5vw, 368px);
  bottom: 50px;
  right: 442px;
}
.topic__image03 {
  max-width: clamp(170px, 12vw, 184px);
  top: 50px;
  right: 628px;
}
/* .topic__image04 {
  max-width: clamp(150px, 11.8vw, 170px);
  right: 0;
  bottom: 186px;
}
.topic__image05 {
  max-width: clamp(260px, 19.4vw, 280px);
  top: 0;
  right: 0;
} */
@media screen and (max-width: 1280px) {
  .topic__heading {
    font-size: 50px;
  }
  .topic__text {
    margin-top: 30px;
  }
  .topic__image03 {
    right: 650px;
  }
}
@media screen and (max-width: 1024px) {
  .topic {
    display: flex;
    flex-direction: column;
    padding: 140px 0 0;
    background-image: none;
    position: relative;
  }
  .topic::before {
    position: absolute;
    content: "";
    width: 28.5vw;
    height: auto;
    aspect-ratio: 107 / 321;
    top: 0;
    right: 0;
    background: url(../img/top/sp/bg-smoke.png) no-repeat center center / contain;
  }
  .topic::after {
    background-image: url(../img/top/sp/bg-smoke02.png);
  }
  .topic .inner {
    order: 1;
  }
  .topic__text {
    font-size: 16px;
  }
  .topic__heading {
    font-size: 50px;
  }
  .topic__image {
    position: relative;
  }
  .topic__image01 {
    order: 3;
    right: 0;
    top: -100px;
    left: 41vw;
  }
  .topic__image02 {
    order: 4;
    right: 0;
    left: 16vw;
    top: -200px;
    bottom: inherit;
  }
  .topic__image03 {
    order: 2;
    right: 0;
    top: 50px;
    left: clamp(120px, 16vw, 170px);
  }
  .topic__image04,
  .topic__image05 {
    display: none;
  }
  .topic__text {
    max-width: 100%;
    width: 100%;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .topic {
    padding: 80px 0 0;
  }
  .topic__image01 {
    left: 0;
    margin: 0 20px 0 auto;
    max-width: 53.3vw;
  }
  .topic__image02 {
    left: 0;
    margin-left: 16vw;
    max-width: 50.1vw;
    top: -170px;
  }
  .topic__image03 {
    margin: 0 auto 0 20px;
    left: 0;
    z-index: 1;
    max-width: 30.4vw;
  }
}
@media screen and (max-width: 576px) {
  .topic__heading--sub {
    font-size: 16px;
  }
  .topic__heading {
    font-size: 40px;
    margin-top: 15px;
  }
  .topic__text {
    font-size: 14px;
  }
  .topic__image01 {
    top: -55px;
  }
  .topic__image02 {
    top: -120px;
  }
}

/* インスタグラム */
.instagram {
  padding: 140px 0 125px;
  /* background-color: var(--bg-secondary); */
}
.instagram .section__heading {
  font-size: 48px;
}
.instagram .section__sub-heading {
  font-size: 16px;
  line-height: normal;
  margin-top: 7px;
}
.instagram__list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.instagram__item {
  width: calc(20% - 30px * 4 / 5);
  aspect-ratio: 1;
}
.instagram__item a {
  display: block;
  width: 100%;
  height: 100%;
}
.instagram__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instagram__button {
  max-width: 270px;
  margin: 50px auto 0;
}
.instagram__button-link {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  border-radius: 100px;
  border: solid 1px var(--color-accent);
  color: var(--color-accent);
  padding: 15px 0;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 0.9px;
  transition:
    color 0.2s,
    background-color 0.2s;
}
.instagram__button-icon {
  width: 23px;
  height: 23px;
  fill: var(--color-accent);
  transition: fill 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .instagram__button-link:hover {
    color: #fff;
    background-color: var(--color-accent);
    transition:
      color 0.2s,
      background-color 0.2s;
  }
  .instagram__button-link:hover .instagram__button-icon {
    fill: #fff;
    transition: fill 0.2s;
  }
}
@media screen and (max-width: 1024px) {
  .instagram__list {
    gap: 13px;
  }
  .instagram__item {
    width: calc(33.33% - 13px * 2 / 3);
  }
  .instagram__item:last-child {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .instagram {
    padding: 80px 0;
  }
}
@media screen and (max-width: 576px) {
  .instagram .section__heading {
    font-size: 36px;
  }
  .instagram .section__sub-heading {
    font-size: 12px;
  }
  .instagram__list {
    margin-top: 46px;
  }
}

/* ====================================
商品一覧
====================================== */
.product-mv {
  background: url(../img/product/main.jpg) no-repeat center center / cover;
  height: 420px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .product-mv {
    background-image: url(../img/product/sp/main.jpg);
  }
}
@media screen and (max-width: 576px) {
  .product-mv {
    height: 240px;
  }
}
.product {
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .product {
    padding-bottom: 80px;
  }
}
.product__inner {
  max-width: 1200px;
  padding: 0 20px;
}
.product__container {
  display: flex;
  gap: 70px;
  align-items: start;
  flex-direction: row-reverse;
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .product__container {
    flex-direction: column;
  }
}
.product__article {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .product__article {
    width: 100%;
  }
}

.product__search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: solid 1px #d3cec7;
}
@media screen and (max-width: 768px) {
  .product__search-top {
    flex-direction: column;
    align-items: start;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.product__search-heading {
  font-size: 28px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .product__search-heading {
    padding-bottom: 10px;
    border-bottom: solid 1px #d3cec7;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    font-size: 24px;
  }
}
.product__search-select-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product__search-select-wrap select {
  width: 150px;
  border: solid 1px #d2ccc3;
  border-radius: 0px;
  background-color: #fcfcfc;
  font-size: 14px;
  color: var(--color-text);
}
@media screen and (max-width: 576px) {
  .product__search-select-wrap select {
    font-size: 12px;
    width: 100%;
    padding: 10px 17px 10px 8px;
    background-size: 10px 10px;
    background-position: right 5px center;
  }
  .product__search-select-wrap select.disp-number {
    max-width: 60px;
  }
  .product__search-select-wrap select.order-by {
    max-width: 110px;
  }
}
.product__search-select-wrap select.-category {
  display: none;
}
@media screen and (max-width: 768px) {
  .product__search-select-wrap select.-category {
    display: block;
  }
}
.product__search-bottom {
  margin-top: 20px;
}
.product__search-counter--bold {
  font-size: 24px;
  font-weight: 400;
  display: inline-block;
  margin-right: 12px;
}
@media screen and (max-width: 576px) {
  .product__search-counter {
    font-size: 14px;
  }
  .product__search-counter--bold {
    font-size: 20px;
  }
}
.product__wrap {
  margin-top: 20px;
}
.product__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(212px, 1fr));
  gap: 60px 20px;
}
@media screen and (max-width: 576px) {
  .product__list {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 15px / 2), 1fr));
    gap: 50px 15px;
  }
}
.product__item-image {
  display: block;
  aspect-ratio: 1 / 1;
}
.product__item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__item-name {
  margin-top: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 576px) {
  .product__item-name {
    font-size: 14px;
    margin-top: 10px;
  }
}
.product__item-price {
  margin-top: 10px;
  color: #58720D;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .product__item-price {
    font-size: 16px;
  }
}
.product__item-price span {
  font-size: 10px;
  font-weight: 300;
}
.product__tags {
  margin-top: 10px;
}
.product__sidebar {
  min-width: 180px;
  width: 180px;
}
@media screen and (max-width: 768px) {
  .product__sidebar {
    display: none;
  }
}

.product__sidebar-heading {
  font-size: 24px;
  line-height: calc(48 / 24);
  letter-spacing: 0.05em;
  padding-left: 53px;
  position: relative;
}
.product__sidebar-heading::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.product__sidebar-heading--category01::before {
  background: url(../img/product/icon-category01.svg) no-repeat center center / contain;
}
.product__sidebar-heading--category02::before {
  background: url(../img/product/icon-category02.svg) no-repeat center center / contain;
}
.product__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__sidebar-list:not(:first-child) {
  padding-top: 40px;
  border-top: solid 1px #D3CEC7;
}
.product__sidebar-list:not(:last-child) {
  padding-bottom: 30px;
}
.product__sidebar-item {
  line-height: normal;
  letter-spacing: 0.8px;
}
.product__sidebar-item--parent {
  font-size: 24px;
  letter-spacing: 1.2px;
}
.product__sidebar-link {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .product__sidebar-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}

/* ====================================
商品詳細
====================================== */
.product-detail {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .product-detail {
    padding: 70px 0 40px;
  }
}
.product-detail__inner {
  max-width: 1200px;
}
.product-detail__container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.product-detail__container:nth-of-type(2) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .product-detail__container {
    flex-direction: column;
    justify-content: initial;
    gap: 0px;
    margin-top: 20px;
  }
  .product-detail__container:nth-of-type(2) {
    margin-top: 20px;
  }
}

.product-detail__container:last-of-type {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .product-detail__container:last-of-type {
    margin-top: 80px;
  }
}

.product-detail__slider {
  max-width: 530px;
  width: calc((530 / 1160) * 100%);
}
@media screen and (max-width: 768px) {
  .product-detail__slider {
    width: 100%;
    max-width: 100%;
  }
}
.product-detail__slider .splide__arrows {
  display: none;
}
.product-detail__slide-list {
  aspect-ratio: 1;
}
.product-detail__slide-item {
  aspect-ratio: 1 / 1;
  display: block;
  height: 100%;
}
.product-detail__slide-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #e9e6e1;
}
.product-detail__thumb {
  margin-top: 10px;
}
.product-detail__thumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-detail__thumb-item {
  aspect-ratio: 1 / 1;
  width: calc(20% - 10px * 4 / 5);
  opacity: 0.6;
  cursor: pointer;
}
.product-detail__thumb-item.is-active {
  opacity: 1;
}
.product-detail__thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__profile {
  max-width: 550px;
  width: calc((550 / 1160) * 100%);
}
@media screen and (max-width: 768px) {
  .product-detail__profile {
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
  }
}
.product-detail__title {
  font-size: 28px;
  line-height: calc(56 / 28);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .product-detail__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 576px) {
  .product-detail__title {
    font-size: 22px;
  }
}
.product-detail__text--free {
  margin-top: 30px;
  line-height: 2;
  font-size: 18px;
  color: #876f53;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .product-detail__text--free {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .product-detail__text--free {
    font-size: 14px;
  }
}
.product-detail__text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 17px;

  span {
    margin-top: 30px;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e6e9de;
  }
}
.product-detail__spec {
  margin-top: 30px;
  padding-top: 30px;
  display: grid;
  row-gap: 10px;
  border-top: solid 1px #e6e9de;
}
.product-detail__spec-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
}
.product-detail__spec-title {
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.05em;
  /* width: 50px; */
  /* margin-right: 10px; */
  text-align-last: justify;
  white-space: nowrap;
  font-weight: 300;
}
.product-detail__spec-text {
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: calc(28 / 14);
  font-weight: 300;
}
.product-detail__rating {
  margin-top: 20px;
  padding-bottom: 30px;
  border-bottom: solid 1px #e6e9de;
}
.product-detail__rating-list {
  padding: 20px;
  background-color: var(--bg-secondary);
  display: grid;
  row-gap: 10px;
  max-width: 400px;
}
.product-detail__rating-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  .kinds {
    flex-shrink: 0;
    width: 60px;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: normal;
  }

  .line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 1px;
    border-bottom: dashed 1px rgba(38, 42, 27, 0.15);
  }

  .line span {
    display: inline-block;
    position: relative;
    width: 1px;
    height: 10px;
    background-color: rgba(38, 42, 27, 0.15);
  }
  
  .line span::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: var(--color-caution);
    content: "";
    opacity: 0;
  }

  .line span.select::after {
    opacity: 1;
  }
}
.product-detail__price {
  margin-top: 30px;
  font-size: 14px;
}
.product-detail__price-num {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .product-detail__price-num {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .product-detail__price-num {
    font-size: 24px;
  }
}
.product-detail__navi {
  margin-top: 10px;
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .product-detail__navi {
    font-size: 14px;
    margin-top: 5px;
  }
}
.product-detail__navi a {
  position: relative;
  padding-right: 18px;
}
.product-detail__navi a::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: solid 2px #b3b3b3;
  border-right: solid 2px #b3b3b3;
  top: 50%;
  right: 2px;
  transform: translateY(-50%) rotate(-45deg);
}
.product-detail__action {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .product-detail__action {
    flex-direction: column;
    align-items: start;
  }
}
.product-detail__action-num {
  display: flex;
  align-items: center;
}
.product-detail__action-num input {
  margin-bottom: 0;
  width: 120px;
  height: 60px;
  border-radius: 0px;
  border: solid 1px #d2ccc3;
}
@media screen and (max-width: 576px) {
  .product-detail__action-num input {
    width: 100px;
    height: 44px;
  }
}
.product-detail__action-num span {
  font-size: 18px;
  margin-right: 25px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .product-detail__action-num span {
    font-size: 16px;
  }
}
.product-detail__button {
  max-width: 300px;
  border-radius: 100px;
  text-align: center;
  padding: 16px;
  width: calc((300 / 550) * 100%);
}
@media screen and (max-width: 1024px) {
  .product-detail__button {
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .product-detail__button {
    max-width: 270px;
  }
}
.product-detail__button--cart {
  background-color: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .product-detail__button--cart:hover {
    background-color: #5E7811;
    color: #fff;
  }
}
.product-detail__button--disabled {
  pointer-events: none;
  background-color: #d9d6d4;
  color: var(--color-text);
  margin-left: auto;
}
.product-detail__button--icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.product-detail__favorite {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}
.product-detail__button--favorite {
  border: solid 1px #d2ccc3;
  background-color: #fff;
}
.product-detail__button-text--favorite {
  padding-left: 35px;
  position: relative;
  color: var(--color-text);
}
.product-detail__button-text--favorite::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size:
    contain,
    0 0;
  background-image: url(../img/product/icon-heart.svg), url(../img/product/icon-heart_active.svg);
}
.product-detail__button-text--favorite.is-disabled::before {
  background-image: url(../img/product/icon-heart_active.svg);
}
@media (hover: hover) and (pointer: fine) {
  .product-detail__button--favorite:hover .product-detail__button-text--favorite::before {
    background-size: contain;
    background-image: url(../img/product/icon-heart_active.svg);
  }
}
.product-detail__button--return {
  border: solid 1px #d2ccc3;
  background-color: #fff;
  cursor: pointer;
}
.product-detail__box--video {
  max-width: 530px;
  width: calc((530 / 1160) * 100%);
}
@media screen and (max-width: 768px) {
  .product-detail__box--video {
    max-width: 100%;
    width: 100%;
  }
}

.product-detail__box-heading {
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 43px;
  position: relative;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .product-detail__box-heading {
    font-size: 20px;
  }
}
.product-detail__box-heading::before {
  position: absolute;
  content: "";
  width: 38px;
  height: 38px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.product-detail__box-heading--video::before {
  background: url(../img/product/icon-category02.svg) no-repeat center center / contain;
}
.product-detail__box-heading--info::before {
  background: url(../img/product/icon-category01.svg) no-repeat center center / contain;
}
.product-detail__box-video {
  aspect-ratio: 530 / 298;
}
.product-detail__box-video video {
  width: 100%;
}
.product-detail__box--info {
  max-width: 550px;
  width: calc((550 / 1160) * 100%);
}
@media screen and (max-width: 768px) {
  .product-detail__box--info {
    max-width: 100%;
    width: 100%;
    margin-top: 80px;
  }
}

.product-detail__info-list {
  border-bottom: solid 1px #d3cec7;
}
.product-detail__info-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-top: solid 1px #d3cec7;
}
.product-detail__info-title {
  min-width: 140px;
  padding: 0 25px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (max-width: 576px) {
  .product-detail__info-title {
    font-size: 14px;
    padding: 0 15px;
    min-width: 110px;
  }
}

.product-detail__info-desc {
  font-size: 16px;
  line-height: 2;
  padding: 0 25px;
  font-weight: 300;
}
@media screen and (max-width: 576px) {
  .product-detail__info-desc {
    font-size: 14px;
    padding: 0 15px;
  }
}
.product-detail-bg {
  display: flex;
  align-items: center;
  height: 156px;
  overflow: hidden;
  gap: 3em;
}
@media screen and (max-width: 768px) {
  .product-detail-bg {
    height: 72px;
  }
}
@keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.product-detail-bg__wrap {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 2em;
  list-style: none;
  animation: loop-slide 100s infinite linear 1s both;
}
.product-detail-bg__text {
  display: inline-block;
  color: rgba(0, 0, 0, 0.05);
  font-weight: 300;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 5px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .product-detail-bg__text {
    font-size: 60px;
    letter-spacing: 3px;
    font-weight: 400;
  }
}
.product-detail-feature {
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  .product-detail-feature {
    margin-top: 40px;
    padding: 0 20px;
  }
}
.product-detail-feature + .recommend {
  margin-top: 166px;
}
@media screen and (max-width: 768px) {
  .product-detail-feature + .recommend {
    margin-top: 80px;
  }
} 
.product-detail-feature__wrapper:not(:first-child) {
  margin-top: 100px;
}
@media screen and (max-width: 900px) {
  .product-detail-feature__wrapper:not(:first-child) {
    margin-top: 80px;
  }
}
.product-detail-feature__wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 1024px) {
  .product-detail-feature__wrapper {
    gap: 60px;
  }
}
@media screen and (max-width: 900px) {
  .product-detail-feature__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.product-detail-feature__wrapper:not(.--even) {
  justify-content: end;
  padding-left: 20px;
}
@media screen and (max-width: 900px) {
  .product-detail-feature__wrapper:not(.--even) {
    padding-left: 0;
  }
}
.product-detail-feature__wrapper.--even {
  flex-direction: row-reverse;
  justify-content: start;
  padding-right: 20px;
}
@media screen and (max-width: 900px) {
  .product-detail-feature__wrapper.--even {
    flex-direction: column;
    padding-right: 0;
  }
}
.product-detail-feature__info {
  width: calc(640 / 1440 * 100%);
}
@media screen and (max-width: 1024px) {
  .product-detail-feature__info {
    width: calc(672 / 1440 * 100%);
  }
}
@media screen and (max-width: 900px) {
  .product-detail-feature__info {
    max-width: 80%;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .product-detail-feature__info {
    max-width: 100%;
  }
}
.product-detail-feature__image {
  aspect-ratio: 660 / 440;
  width: calc(660 / 1440 * 100%);
}
@media screen and (max-width: 900px) {
  .product-detail-feature__image {
    max-width: 80%;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .product-detail-feature__image {
    max-width: 100%;
  }
}
.product-detail-feature__heading {
  font-size: 28px;
  letter-spacing: 1.4px;
  line-height: calc(56 / 28);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .product-detail-feature__heading {
    font-size: 20px;
  }
}
.product-detail-feature__heading .sub {
  display: block;
  color: #876F53;
  font-size: 16px;font-weight: 400;
  letter-spacing: 0.8px;
}
.product-detail-feature__text {
  font-size: 14px;
  line-height: calc(26 / 14);
  letter-spacing: 0.7px;
  margin-top: 20px;
}
.product-detail-howto {
  margin-top: 100px;
  padding-bottom: 166px;
}
@media screen and (max-width: 768px) {
  .product-detail-howto {
    margin-top: 60px;
    padding-bottom: 80px;
  }
} 
.product-detail-howto__inner {
  max-width: 1200px;
}
.product-detail-howto__heading {
  display: grid;
  grid-template-columns: 27px auto;
  align-items: center;
  column-gap: 10px;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: normal;
  font-weight: 300;
  padding-top: 40px;
  border-top: solid 1px #D3CEC7;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .product-detail-howto__heading {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
.product-detail-howto__heading::before {
  content: "";
  aspect-ratio: 1;
  width: 27px;
  background: url(/html/user_data/assets/img/product/icon-leaf.png) no-repeat center center / contain;
}
.product-detail-howto__container {
  margin: 40px auto 0;
  background-color: var(--bg-secondary);
  padding: 30px;
  max-width: 870px;
}
@media screen and (max-width: 768px) {
  .product-detail-howto__container {
    padding: 30px 20px;
    max-width: calc(295 / 335 * 100%);
    margin: 20px auto 0;
  }
}
.product-detail-howto__subheading {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: normal;
  column-gap: 5px;
}
.product-detail-howto__subheading.--glass::before {
  content: "";
  aspect-ratio: 1;
  width: 32px;
  background: url(/html/user_data/assets/img/product/icon-glass.svg) no-repeat center center / contain;
}
.product-detail-howto__subheading.--pot::before {
  content: "";
  aspect-ratio: 1;
  width: 32px;
  background: url(/html/user_data/assets/img/product/icon-pot.svg) no-repeat center center / contain;
}
.product-detail-howto__list {
  margin-top: 10px;
  display: grid;
  row-gap: 10px;
  margin-left: 10px;
}
.product-detail-howto__item {
  display: grid;
  grid-template-columns: 20px 1fr;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: normal;
  font-weight: 300;
  column-gap: 7px;
}
.product-detail-howto__item .number {
  aspect-ratio: 1;
  width: 20px;
  border-radius: 100px;
  background-color: rgb(0 0 0 / 0.1);
  font-size: 12px;
  color: #891A23;
  letter-spacing: 0.6px;
  line-height: 1;
  font-weight: 300;
  margin-block: calc((1lh - 4px) / 2);
  display: grid;
  place-items: center;
}

.recommend {
  padding: 140px 0;
  background-color: var(--bg-secondary);
  position: relative;
}
@media screen and (max-width: 768px) {
  .recommend {
    padding: 80px 0;
  }
}
.recommend__inner {
  max-width: 1200px;
}
.recommend__heading {
  position: absolute;
  text-align: center;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 48px;
  letter-spacing: 0.05em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recommend__heading {
    font-size: 44px;
  }
}
@media screen and (max-width: 576px) {
  .recommend__heading {
    font-size: 36px;
    top: -20px;
  }
}
.recommend__subheading {
  font-size: 16px;
  padding-left: 20px;
  position: relative;
  display: block;
  width: max-content;
  margin: 0 auto;
  line-height: 2;
  font-family: var(--font-jp);
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .recommend__subheading {
    font-size: 12px;
  }
}
.recommend__subheading::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--color-caution);
}
.recommend__list {
  display: flex;
  gap: 30px;
}
.recommend__item {
  width: calc(25% - 20px * 3 / 4);
}
.recommend__item a {
  transition: opacity 0.3s;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .recommend__item a:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.recommend__thumb {
  aspect-ratio: 1/1;
}
.recommend__thumb img {
  height: 100%;
  object-fit: contain;
}
.recommend__body {
  margin-top: 20px;
}
.recommend__name {
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.recommend__price {
  font-size: 20px;
  color: #58720D;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  /* margin-top: 10px; */
}
.recommend__price span {
  font-size: 10px;
  color: #58720D;
  letter-spacing: 0.5px;
  font-weight: 300;
  display: inline-block;
  margin-left: 0.5em;
}
.recommend__desc {
  margin-top: 10px;
}
.recommend__desc-item {
  display: flex;
}
.recommend__desc-title {
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0.6px;
  width: 40px;
  margin-right: 15px;
  white-space: nowrap;
  font-weight: 300;
}
.recommend__desc-body {
  display: flex;
  align-items: center;
  gap: 9px;
}
.recommend__desc-body .leaf {
  display: block;
  width: 14px;
  height: 18px;
}
.recommend__desc-body .leaf img {
  display: block;
}
.recommend__button {
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  .recommend__name {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .recommend__list {
    gap: 50px 20px;
    flex-wrap: wrap;
  }
  .recommend__item {
    width: calc(50% - 20px / 2);
  }
  .recommend__button {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 576px) {
  .recommend__body {
    margin-top: 10px;
  }
  .recommend__desc-title {
    margin-right: 5px;
  }
  .recommend__desc-body .leaf {
    width: 10px;
    height: 13px;
  }
  .recommend__desc-body {
    gap: 7px;
  }
}

.checked {
  padding: 140px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .checked {
    padding: 80px 0;
  }
}
.checked__inner {
  max-width: 1200px;
}
.checked__heading {
  position: absolute;
  text-align: center;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 48px;
  letter-spacing: 0.05em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .checked__heading {
    font-size: 44px;
  }
}
@media screen and (max-width: 576px) {
  .checked__heading {
    font-size: 36px;
    top: -20px;
  }
}
.checked__subheading {
  font-size: 16px;
  padding-left: 20px;
  position: relative;
  display: block;
  width: max-content;
  margin: 0 auto;
  line-height: 2;
  font-family: var(--font-jp);
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .checked__subheading {
    font-size: 12px;
  }
}
.checked__subheading::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--color-caution);
}
.checked__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .checked__list {
    gap: 50px 20px;
  }
}
.checked__item {
  width: calc(25% - 30px * 3 / 4);
}
@media screen and (max-width: 768px) {
  .checked__item {
    width: calc(50% - 20px / 2);
  }
}

.checked__link {
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .checked__link:hover {
    opacity: 0.8;
  }
}
.checked__title {
  margin-top: 20px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 576px) {
  .checked__title {
    font-size: 16px;
  }
}

.checked__price {
  margin-top: 4px;
  letter-spacing: 0.05em;
  font-size: 18px;
  line-height: 2;
  color: #58720D;
}
.checked__price span {
  font-size: 10px;
  color: #58720D;
}
@media screen and (max-width: 576px) {
  .checked__price {
    font-size: 16px;
  }
}

.product-detail .ec-modal .ec-modal-wrap {
  border: none;
  width: 100%;
  max-width: 700px;
  padding: 40px 20px;
}
.product-detail .ec-modal .product-detail__button {
  margin: 0;
}
.modal-button-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  .modal-button-wrap {
    flex-direction: column;
  }
}

/* ====================================
ログイン
====================================== */
.login {
  padding: 0 0 140px;
}
@media screen and (max-width: 768px) {
  .login {
    padding-bottom: 80px;
  }
}
.login__inner {
  max-width: 1200px;
}
.login__container {
  max-width: 720px;
  margin: 0 auto;
  background-color: #e6e2de;
  padding: 56px 80px 60px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .login__container {
    padding: 50px 70px;
  }
}
@media screen and (max-width: 576px) {
  .login__container {
    padding: 50px 30px;
    margin-top: 60px;
  }
}

.login__input {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.login__input input[type="email"],
.login__input input[type="password"] {
  border-radius: 0px;
  background-color: #fff;
  border: none;
  width: 100%;
  padding: 8px;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .login__input input[type="email"],
  .login__input input[type="password"] {
    font-size: 14px;
  }
}
.login__input input[type="email"]::placeholder,
.login__input input[type="password"]::placeholder {
  color: #999999;
  letter-spacing: 0.05em;
}
.login__checkbox {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}
.login__checkbox .form-check {
  display: flex;
  align-items: center;
  padding-left: 0;
  gap: 5px;
}
.login__checkbox .form-check .form-check-input {
  float: none;
  margin: 0;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 0px;
  border: solid 1px #ccc;
  position: relative;
  display: grid;
  place-items: center;
}
.login__checkbox .form-check .form-check-input:checked {
  background-image: none;
  background-color: #fff;
}
.login__checkbox .form-check .form-check-input::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 8px;
  border-bottom: solid 2px var(--color-text);
  border-right: solid 2px var(--color-text);
  transform: rotate(45deg);
  opacity: 0;
}
.login__checkbox .form-check .form-check-input:checked::after {
  opacity: 1;
}
.login__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  .login__wrap {
    flex-direction: column-reverse;
    align-items: start;
    margin-top: 10px;
    gap: 20px;
  }
}
.login__button {
  max-width: 240px;
  width: 54%;
  appearance: none;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 0px;
  border: none;
  line-height: 2;
  padding: 9px;
  text-align: center;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .login__button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 576px) {
  .login__button {
    margin: 0 auto;
    width: 100%;
  }
}
.login__link-wrap {
  display: flex;
  flex-direction: column;
}
.login__link {
  color: #1a6889;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .login__link:hover {
    color: #1a6889;
    opacity: 0.7;
  }
}

.login__wrap--shopping {
  display: flex;
  gap: 30px;
  max-width: 1050px;
  margin: 80px auto 0;
}
@media screen and (max-width: 860px) {
  .login__wrap--shopping {
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .login__wrap--shopping {
    margin-top: 40px;
  }
}
.login__wrap--shopping .login__container {
  max-width: 670px;
  width: calc((670 / 1050) * 100%);
  margin-top: 0;
  padding: 56px 30px;
}
@media screen and (max-width: 860px) {
  .login__wrap--shopping .login__container {
    max-width: 100%;
    width: 100%;
  }
}
.login__guest {
  max-width: 350px;
  width: calc((350 / 1050) * 100%);
  background-color: #e6e2de;
  display: grid;
  place-items: center;
  padding: 0 45px;
}
@media screen and (max-width: 860px) {
  .login__guest {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 60px 30px;
  }
}
.login__guest-text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
}
.login__guest-link {
  display: block;
  max-width: 240px;
  text-align: center;
  color: #fff;
  background-color: var(--color-accent);
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 9px 0;
  margin: 15px auto 0;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .login__guest-link:hover {
    color: #fff;
    background-color: var(--color-accent);
    opacity: 0.8;
  }
}

/* ====================================
カート
====================================== */
.cart {
  padding-bottom: 140px;
}
.cart__inner {
  max-width: 1200px;
}
.cart__container {
  margin-top: 80px;
}
.cart__text {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 100%;
  color: var(--color-text);
}
.cart .ec-cartRole {
  color: var(--color-text);
}
.cart .ec-cartRole__cart {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
}
.cart .ec-cartHeader {
  background-color: transparent;
}
.cart .ec-cartHeader .ec-cartHeader__label {
  font-weight: 300;
  line-height: 2;
  padding: 2px 15px;
  background-color: #E5E5DF;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cart .ec-cartRow .ec-cartRow__delColumn,
.cart .ec-cartRow .ec-cartRow__contentColumn,
.cart .ec-cartRow .ec-cartRow__amountColumn,
.cart .ec-cartRow .ec-cartRow__subtotalColumn {
  border-bottom: solid 1px #d3cec7;
}
.cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__name {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.cart .ec-cartRow__text {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.cart .ec-cartRow__unitPrice {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButton,
.cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButtonDisabled,
.cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountUpButton {
  border-color: #d1c7bc;
  background: transparent;
}
.cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountUpButton .ec-cartRow__amountUpButton__icon img,
.cart .cartRow__amountColumn .ec-cartRow__amountDownButtonDisabled .ec-cartRow__amountDownButton__icon img,
.cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButton .ec-cartRow__amountDownButton__icon img {
  width: 12px;
  height: 12px;
  top: 26%;
}
.cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButton .ec-cartRow__amountDownButton__icon img,
.cart
  .ec-cartRow
  .ec-cartRow__amountColumn
  .ec-cartRow__amountDownButtonDisabled
  .ec-cartRow__amountDownButton__icon
  img {
  width: 10px;
  height: 10px;
  left: 55%;
}
.cart
  .ec-cartRow
  .ec-cartRow__amountColumn
  .ec-cartRow__amountDownButtonDisabled
  .ec-cartRow__amountDownButton__icon
  img {
  opacity: 0.3;
}
.cart .ec-cartRole .ec-cartRole__actions {
  margin: 0 0 0 auto;
  max-width: 240px;
  width: 100%;
}
.cart .ec-cartRole .ec-cartRole__total {
  padding: 8px 0 35px;
  font-weight: 300;
}
.cart .ec-cartRole .ec-cartRole__totalAmount {
  color: var(--color-accent);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .cart {
    padding-bottom: 80px;
  }
  .cart .ec-cartRow .ec-cartRow__delColumn {
    width: 8%;
  }
  .cart .ec-cartRow .ec-cartRow__img {
    min-width: 90px;
    max-width: 180px;
  }
  .cart .ec-cartRow .ec-cartRow__contentColumn {
    width: 100%;
  }
  .cart .ec-cartRow .ec-cartRow__summary {
    width: auto;
  }
  .cart .ec-cartRow .ec-cartRow__delColumn .ec-icon img {
    width: 16px;
    height: 16px;
  }
  .cart
    .ec-cartRow
    .ec-cartRow__amountColumn
    .ec-cartRow__amountDownButtonDisabled
    .ec-cartRow__amountDownButton__icon
    img {
    top: 31%;
  }
}
@media screen and (max-width: 576px) {
  .cart__container {
    margin-top: 60px;
  }
  .cart .ec-cartRole {
    padding: 0;
  }
  .cart .ec-cartRow .ec-cartRow__img {
    width: 80px;
    min-width: 0;
  }
  .cart__text,
  .cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__name,
  .cart .ec-cartRow__unitPrice,
  .cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__sutbtotalSP,
  .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountSP {
    font-size: 14px;
  }
  .cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__name {
    margin-bottom: 0;
  }
  .cart .ec-cartRow__text {
    font-size: 10px;
  }
  .cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButton,
  .cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButtonDisabled,
  .cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountUpButton {
    width: 25px;
    height: 25px;
    min-width: 0;
  }

  .cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButton .ec-cartRow__amountDownButton__icon img,
  .cart
    .ec-cartRow
    .ec-cartRow__amountColumn
    .ec-cartRow__amountDownButtonDisabled
    .ec-cartRow__amountDownButton__icon
    img {
    width: 8px;
    height: 8px;
    left: 57%;
    top: 35%;
  }

  .cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountUpButton .ec-cartRow__amountUpButton__icon img {
    width: 10px;
    height: 10px;
    left: 55%;
    top: 29%;
  }

  .cart .ec-cartRole .ec-cartRole__actions {
    max-width: 100%;
  }

  .cart .ec-cartRole .ec-blockBtn--action,
  .cart .ec-blockBtn--cancel {
    max-width: 240px;
    margin: 0 auto;
  }
  .cart .ec-blockBtn--cancel {
    margin-top: 16px;
  }
}

/* ====================================
マイページ
====================================== */
.mypage {
  padding-bottom: 140px;
}
.mypage__inner {
  max-width: 1200px;
}
.mypage__container {
  margin: 50px auto 0;
  max-width: 1050px;
}
.mypage__message-text {
  line-height: calc(29 / 16);
  letter-spacing: 0.8px;
}
.mypage__logout {
  display: inline-block;
  margin-left: 22px;
  color: var(--color-accent);
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .mypage__logout:hover {
    color: var(--color-accent);
    text-decoration: none;
  }
}
.mypage__nav-list {
  display: flex;
  margin-top: 40px;
}
.mypage__nav-item {
  width: calc(100% / 5);
  text-align: center;
}
.mypage__nav-item a {
  display: block;
  padding: 16px 10px;
  line-height: calc(29 / 16);
  border-top: solid 1px #d3cec7;
  border-right: solid 1px #d3cec7;
  border-bottom: solid 1px #d3cec7;
  transition: color 0.3s;
}
.mypage__nav-item:first-child a {
  border-left: solid 1px #d3cec7;
}
.mypage__nav-item.active a {
  color: var(--color-accent);
}
@media (hover: hover) and (pointer: fine) {
  .mypage__nav-item a:hover {
    color: var(--color-accent);
  }
}

.mypage .ec-mypageRole {
  padding: 0;
  margin-top: 70px;
  color: var(--color-text);
}
.mypage .ec-para-normal {
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: solid 1px #d3cec7;
}
.mypage .ec-historyRole .ec-historyRole__contents {
  color: var(--color-text);
  padding: 30px 0;
  border: none;
}
.mypage .ec-historyRole .ec-historyRole__contents:not(:first-child) {
  margin-top: 50px;
}
.mypage .ec-historyListHeader .ec-historyListHeader__date {
  font-size: 16px;
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
  font-weight: 300;
}
.mypage .ec-definitions,
.mypage .ec-definitions--soft {
  line-height: calc(29 / 16);
  margin: 0;
}
.mypage .ec-definitions dt,
.mypage .ec-definitions--soft dt {
  font-weight: 300;
}
.mypage .ec-imageGrid .ec-imageGrid__img {
  padding: 0;
  margin-right: 10px;
}
.mypage .ec-imageGrid {
  border-top: none;
}
.mypage .ec-imageGrid:not(:first-child) {
  margin-top: 10px;
}
.mypage .ec-imageGrid .ec-imageGrid__content {
  padding-left: 10px;
}
.mypage .ec-historyRole .ec-historyRole__detail .ec-historyRole__detailTitle,
.mypage .ec-historyRole .ec-historyRole__detail .ec-historyRole__detailPrice {
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .mypage {
    padding-bottom: 80px;
  }
  .mypage__nav-list {
    flex-wrap: wrap;
  }
  .mypage__nav-item {
    width: 50%;
  }
  .mypage__nav-item:nth-child(3) a,
  .mypage__nav-item:nth-child(4) a,
  .mypage__nav-item:nth-child(5) a {
    border-top: none;
  }
  .mypage__nav-item:nth-child(3) a,
  .mypage__nav-item:nth-child(5) a {
    border-left: solid 1px #d3cec7;
  }
  .mypage .ec-historyRole .ec-historyRole__detail {
    border-top: none;
  }
}
@media screen and (max-width: 576px) {
  .mypage .ec-mypageRole {
    margin-top: 50px;
  }
  .mypage .ec-para-normal,
  .mypage .ec-historyListHeader .ec-historyListHeader__date,
  .mypage .ec-definitions,
  .mypage .ec-definitions--soft,
  .mypage .ec-historyListHeader .ec-historyListHeader__action a,
  .mypage .ec-historyRole .ec-historyRole__detail .ec-historyRole__detailPrice,
  .mypage .ec-historyRole .ec-historyRole__detail .ec-historyRole__detailPrice {
    font-size: 14px;
  }
}

/* 注文履歴詳細 */
.mypage .ec-orderRole {
  padding: 0;
  margin-top: 70px;
  color: var(--color-text);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.05em;
  gap: 40px;
}
.mypage__heading {
  background-color: transparent;
  border: solid 1px var(--color-accent);
  color: var(--color-accent);
  padding: 13px 15px;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.05em;
}

.mypage .ec-orderDelivery .ec-orderDelivery__title {
  font-size: 16px;
  line-height: calc(28 / 16);
  border-bottom: solid 1px #d3cec7;
  font-weight: 300;
}
.mypage .ec-orderDelivery__list {
  border-bottom: solid 1px #d3cec7;
}
.mypage .ec-orderDelivery__item {
  border-bottom: solid 1px #d3cec7;
  padding: 12px 0;
}
.ec-orderDelivery__item .mypage__delivery-text {
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: normal;
}
.mypage .ec-orderDelivery .ec-orderDelivery__address {
  margin: 30px 0;
}
.mypage .ec-orderDelivery .ec-orderDelivery__address p {
  line-height: calc(28 / 16);
  letter-spacing: 0.8px;
  font-size: 16px;
}
.mypage .ec-orderPayment,
.mypage .ec-orderConfirm,
.mypage .ec-orderMails {
  margin-top: 40px;
}
.mypage .ec-orderPayment p,
.mypage .ec-orderConfirm p {
  margin-top: 20px;
  line-height: calc(30 / 16);
}
.mypage .ec-orderMail__wrap {
  margin-top: 20px;
  line-height: calc(30 / 16);
}
.mypage .ec-orderMail .ec-orderMail__link a,
.mypage .ec-orderMail .ec-orderMail__close a {
  color: #7fb7ca;
}
.mypage .ec-orderMail {
  border-bottom: solid 1px #d3cec7;
  margin-bottom: 20px;
}
.mypage .ec-orderRole__detail {
  padding: 0;
  width: calc((690 / 1050) * 100%);
}
.mypage .ec-orderRole .ec-orderRole__summary {
  padding: 0;
  position: sticky;
  top: 90px;
  height: max-content;
  width: calc((318 / 1050) * 100%);
  min-width: 290px;
}
.ec-orderRole:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .mypage .ec-orderRole__detail {
    width: 100%;
    max-width: 100%;
  }
  .mypage .ec-orderRole .ec-orderRole__summary {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .mypage__heading {
    padding: 8px 15px;
  }
}

/* お気に入り */
.mypage__favorite {
  margin-top: 70px;
}
@media screen and (max-width: 576px) {
  .mypage__favorite {
    margin-top: 50px;
  }
}
.mypage__favorite-text {
  line-height: calc(29 / 16);
}
@media screen and (max-width: 576px) {
  .mypage__favorite-text {
    font-size: 14px;
  }
}
.mypage__favorite-text span {
  color: var(--color-accent);
}
.ec-favoriteRole__itemList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 27px;
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  .ec-favoriteRole__itemList {
    gap: 40px 15px;
  }
}
.ec-favoriteRole__item {
  width: calc(25% - 27px * 3 / 4);
  position: relative;
  padding: 40px 40px 0 30px;
}
@media screen and (max-width: 1024px) {
  .ec-favoriteRole__item {
    width: calc(33.33% - 27px * 2 / 3);
  }
}
@media screen and (max-width: 768px) {
  .ec-favoriteRole__item {
    width: calc(50% - 27px / 2);
  }
}
@media screen and (max-width: 576px) {
  .ec-favoriteRole__item {
    width: calc(50% - 15px / 2);
    padding: 30px 15px 0;
  }
}
.ec-closeBtn--circle {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #d1c7bc;
}
@media screen and (max-width: 576px) {
  .ec-closeBtn--circle {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }
  .ec-closeBtn--circle .ec-icon img {
    margin-top: -7px;
    margin-left: -7px;
    width: 15px;
    height: 15px;
  }
}
.ec-favoriteRole__item-image {
  aspect-ratio: 180 / 195;
}
.ec-favoriteRole__item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ec-favoriteRole__itemTitle {
  line-height: normal;
  letter-spacing: 0.05em;
  font-size: 16px;
  margin-top: 6px;
}
@media screen and (max-width: 576px) {
  .ec-favoriteRole__itemTitle {
    font-size: 14px;
  }
}
.ec-favoriteRole__itemPrice {
  font-size: 20px;
  color: #876f53;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
@media screen and (max-width: 576px) {
  .ec-favoriteRole__itemPrice {
    font-size: 18px;
  }
}
.ec-favoriteRole__itemPrice span {
  font-size: 10px;
}

/* 会員情報編集 */
.mypage__change-text {
  text-align: center;
  line-height: normal;
  margin-top: 70px;
}
.mypage__change-button {
  max-width: 240px;
  margin: 40px auto 0;
}

/* お届け先一覧、追加 */
.mypage__delivery-text {
  font-size: 16px;
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
}
.mypage__delivery-wrap {
  max-width: 945px;
  margin: 50px auto 0;
}
.mypage__delivery-list {
  margin-top: 12px;
  border-top: solid 1px #d3cec7;
}
.mypage__delivery-item {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #d3cec7;
}
.mypage__delivery-remove {
  width: 5%;
  display: grid;
  place-items: center;
}
.mypage__delivery-remove img {
  width: 15px;
  height: 15px;
}
.mypage__delivery-address {
  line-height: normal;
  font-size: 16px;
  padding: 16px;
  width: 40%;
  flex-grow: 1;
}
@media screen and (max-width: 576px) {
  .mypage__delivery-text {
    font-size: 14px;
  }
  .mypage__delivery-wrap {
    margin: 40px auto 0;
  }
  .mypage__delivery-address {
    font-size: 14px;
  }
}

/* 退会手続き */
.mypage__withdraw-wrap {
  margin-top: 70px;
}
.ec-withdrawRole__title,
.ec-withdrawConfirmRole__title {
  margin-top: 15px;
  font-size: 28px;
  line-height: normal;
  letter-spacing: 1.4px;
  color: var(--color-caution);
  text-align: center;
}
.ec-withdrawRole__description,
.ec-withdrawConfirmRole__description {
  text-align: center;
  line-height: calc(29 / 16);
  letter-spacing: 0.8px;
  margin-top: 5px;
}
.ec-withdrawRole__description br.sm,
.ec-withdrawConfirmRole__description br.sm {
  display: none;
}
.mypage__withdraw-button-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 40px;
}
.mypage__withdraw-wrap .ec-blockBtn--cancel {
  max-width: 360px;
  font-weight: 300;
}
.mypage__withdraw-wrap .ec-blockBtn {
  max-width: 360px;
  background-color: #616161;
  color: #fff;
  font-size: 16px;
  line-height: 2;
  padding: 8px;
  height: auto;
  transition: opacity 0.3s;
  font-weight: 300;
}
@media (hover: hover) and (pointer: fine) {
  .mypage__withdraw-wrap .ec-blockBtn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 576px) {
  .mypage__withdraw-wrap {
    margin-top: 40px;
  }
  .ec-withdrawRole__title,
  .ec-withdrawConfirmRole__title {
    font-size: 20px;
    margin-top: 0;
  }
  .ec-withdrawRole__description,
  .ec-withdrawConfirmRole__description {
    font-size: 14px;
  }
  .ec-withdrawRole__description br.sm,
  .ec-withdrawConfirmRole__description br.sm {
    display: block;
  }
}

/* ====================================
お問い合わせ
====================================== */
.contact {
  padding-bottom: 140px;
}
.contact__inner {
  max-width: 1200px;
}
.contact__container {
  max-width: 1000px;
  margin: 80px auto 0;
}
.contact__text {
  line-height: normal;
  letter-spacing: 0.8px;
}
.contact__textarea-text {
  margin-top: 10px;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0.6px;
}
.contact__button-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin: 40px auto 0;
}
.contact__button-wrap .l-form__button {
  margin: 0;
}

/* 完了 */
.contact__complete-title {
  font-size: 28px;
  line-height: normal;
  letter-spacing: 1.4px;
  text-align: center;
}
.contact__complete-text {
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-top: 40px;
  text-align: center;
}
.contact__complete-button {
  max-width: 360px;
  display: block;
  width: 100%;
  margin: 40px auto 0;
  color: #fff;
  background-color: #616161;
  padding: 12px 20px;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .contact__complete-button:hover {
    opacity: 0.8;
    color: #ccc;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding-bottom: 80px;
  }
  .contact__container {
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 576px) {
  .contact__complete-title {
    font-size: 20px;
  }
  .contact__complete-text {
    font-size: 14px;
  }
  .contact__complete-text br {
    display: none;
  }
}

/* ====================================
パスワード再発行
====================================== */
.forgot {
  padding-bottom: 140px;
}
.forgot__inner {
  max-width: 1200px;
}
.forgot__container {
  max-width: 1000px;
  margin: 80px auto 0;
}
.forgot__title {
  text-align: center;
  font-size: 28px;
  line-height: normal;
  letter-spacing: 1.4px;
}
.forgot__text {
  line-height: normal;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .forgot {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 576px) {
  .forgot__container {
    margin-top: 50px;
  }
  .forgot__title {
    font-size: 20px;
  }
  .forgot__text {
    font-size: 14px;
  }
}

/* ====================================
新規会員登録
====================================== */
.entry {
  padding-bottom: 140px;
}
.entry__inner {
  max-width: 1200px;
}
.entry__container {
  max-width: 1000px;
  margin: 80px auto 0;
}
.entry__text {
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.05em;
}
.entry .ec-checkbox {
  margin-top: 40px;
}
.entry .ec-checkbox label {
  margin-bottom: 0;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  cursor: pointer;
}
.entry .ec-checkbox input {
  float: none;
  margin: 0;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 0px;
  border: solid 1px #ccc;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #fff;
}
.entry .ec-checkbox input::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 8px;
  border-bottom: solid 2px var(--color-text);
  border-right: solid 2px var(--color-text);
  transform: rotate(45deg);
  opacity: 0;
}
.entry .ec-checkbox input:checked::after {
  opacity: 1;
}
.entry .ec-link {
  color: var(--color-text);
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .entry .ec-link:hover {
    color: var(--color-text);
    text-decoration: none;
  }
}
.entry__button-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
.entry__button-wrap .l-form__button {
  margin: 0;
}
.entry__title {
  font-size: 28px;
  line-height: normal;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 300;
}
.entry .ec-reportDescription {
  text-align: center;
  line-height: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 30px;
}

.entry__button-wrap .ec-blockBtn--cancel,
.entry__button-wrap .ec-blockBtn--action {
  max-width: 360px;
}

@media screen and (max-width: 768px) {
  .entry {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 576px) {
  .entry__container {
    margin: 60px auto 0;
  }
  .entry__text {
    font-size: 14px;
  }
  .entry .ec-checkbox {
    margin-top: 30px;
  }
}
/* ====================================
404ページ
====================================== */
.not-found {
  padding-bottom: 140px;
}
.not-found__container {
  margin-top: 60px;
}
.not-found__title {
  text-align: center;
  font-size: 28px;
  line-height: normal;
  letter-spacing: 0.05em;
}
.not-found__text {
  line-height: normal;
  letter-spacing: 0.05em;
  margin-top: 30px;
  text-align: center;
}
.not-found__button {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 40px auto 0;
  background-color: rgba(38, 42, 27, 0.50);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.05em;
  transition: background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .not-found__button:hover {
    color: #fff;
    background-color: rgba(38, 42, 27, 0.70);
  }
}
@media screen and (max-width: 768px) {
  .not-found {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 576px) {
  .not-found__container {
    margin-top: 50px;
  }
  .not-found__title {
    font-size: 20px;
  }
  .not-found__text {
    font-size: 14px;
    margin-top: 20px;
  }
}

/* ====================================
注文手続き
====================================== */
.shopping {
  padding-bottom: 140px;
}
.shopping__container {
  margin-top: 80px;
}
.shopping__heading {
  background-color: transparent;
  border: solid 1px var(--color-accent);
  color: var(--color-accent);
  padding: 13px 15px;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.05em;
}
.shopping .ec-orderAccount .ec-orderAccount__change {
  float: initial;
  margin-left: auto;
  display: block;
  width: max-content;
  margin-top: 20px;
}
.shopping .mod-button {
  margin-top: 20px;
}
.shopping .ec-orderRole {
  padding: 0;
  margin-top: 70px;
  color: var(--color-text);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.05em;
  gap: 40px;
}
.shopping .ec-orderRole__detail {
  padding: 0;
  width: calc((690 / 1050) * 100%);
}
.shopping .ec-orderAccount .ec-orderAccount__account {
  margin: 20px 0 0;
  line-height: normal;
}
.shopping .ec-orderDelivery .ec-orderDelivery__title {
  font-size: 16px;
  line-height: calc(28 / 16);
  border-bottom: solid 1px #d3cec7;
  font-weight: 300;
  padding: 0 0 10px 0;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shopping .ec-orderDelivery .ec-orderDelivery__change {
  position: static;
}
.shopping .ec-orderDelivery__list {
  border-bottom: solid 1px #d3cec7;
}
.shopping .ec-borderedList li {
  border-bottom: solid 1px #d3cec7;
  padding: 12px 0;
}
.shopping .ec-imageGrid {
  border: none;
}
.shopping .ec-imageGrid .ec-imageGrid__img {
  padding: 0;
}
.shopping .ec-imageGrid .ec-imageGrid__content {
  padding-left: 10px;
}
.shopping__delivery-text {
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: normal;
}
.shopping .ec-orderDelivery .ec-orderDelivery__address {
  margin: 30px 0;
}
.shopping .ec-orderDelivery .ec-orderDelivery__address p {
  line-height: calc(28 / 16);
  letter-spacing: 0.8px;
  font-size: 16px;
}
.shopping .ec-orderPayment,
.shopping .ec-orderConfirm,
.shopping .ec-orderMails {
  margin-top: 40px;
}
.shopping .ec-orderPayment p,
.shopping .ec-orderConfirm p {
  margin-top: 20px;
  line-height: calc(30 / 16);
}
.shopping .ec-orderPayment__text-list {
  padding-left: 1em;
  margin-top: 10px;
}
.shopping .ec-orderPayment__text {
  line-height: normal;
}
.shopping .ec-orderMail__wrap {
  margin-top: 20px;
  line-height: calc(30 / 16);
}
.shopping .ec-orderMail .ec-orderMail__link a,
.shopping .ec-orderMail .ec-orderMail__close a {
  color: #7fb7ca;
}
.shopping .ec-orderMail {
  border-bottom: solid 1px #d3cec7;
  margin-bottom: 20px;
}
.shopping .ec-orderRole__detail {
  padding: 0;
  width: calc((690 / 1050) * 100%);
}
.shopping .ec-orderRole .ec-orderRole__summary {
  padding: 0;
  position: sticky;
  top: 90px;
  height: max-content;
  width: calc((318 / 1050) * 100%);
  min-width: 290px;
}
.ec-orderRole:after {
  display: none;
}
.shopping .ec-orderRole .ec-borderedList {
  border-top: none;
}
.shopping .ec-orderDelivery__actions .ec-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border-bottom: solid 1px #d3cec7;
  padding-bottom: 20px;
  row-gap: 20px;
}
.shopping .ec-orderDelivery__actions .ec-select {
  display: flex;
  align-items: center;
}
.shopping .ec-orderDelivery__actions .ec-select-wrap {
  max-width: 200px;
  width: 100%;
}
.shopping .ec-orderDelivery__actions .ec-select select {
  width: 100%;
}
.shopping .ec-select__delivery-how {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}
.shopping .ec-select__delivery {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}
.shopping .ec-select__time {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.shopping .ec-select label {
  font-weight: 300;
}
.shopping .ec-orderDelivery__edit-text {
  line-height: normal;
  font-size: 14px;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}

.shopping .ec-orderPayment .ec-radio,
.shopping .ec-orderPayment .ec-blockRadio {
  margin-top: 20px;
}

.shopping .ec-orderConfirm .ec-input {
  margin-top: 11px;
}

.ec-totalBox .ec-totalBox__btn a {
  color: var(--color-text);
}

.shopping .ec-orderConfirm .ec-input textarea {
  height: 120px;
}

.shopping .ec-orderPayment h2 {
  background-color: transparent;
  border: solid 1px var(--color-accent);
  color: var(--color-accent);
  padding: 13px 15px;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  .shopping .ec-orderDelivery__actions .ec-selects {
    grid-template-columns: 1fr;
  }
  .shopping .ec-select__delivery-how {
    grid-row: 1 / 2;
    grid-column: 1;
  }
  .shopping .ec-select__delivery {
    grid-row: 2 / 3;
    grid-column: 1;
  }
  .shopping .ec-select__time {
    grid-row: 3 / 4;
    grid-column: 1;
  }
}
@media screen and (max-width: 768px) {
  .shopping {
    padding-bottom: 80px;
  }
  .shopping .ec-orderRole {
    margin-top: 50px;
  }
  .shopping .ec-orderRole__detail {
    width: 100%;
    max-width: 100%;
  }
  .shopping .ec-orderRole .ec-orderRole__summary {
    position: static;
    max-width: 100%;
    width: 100%;
  }
  .shopping .ec-select label {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .shopping .ec-orderAccount .ec-orderAccount__account,
  .shopping .ec-imageGrid .ec-imageGrid__content,
  .shopping .ec-orderDelivery .ec-orderDelivery__address p {
    font-size: 14px;
  }
}

/* お客様情報入力 */
.nonmember__container {
  margin-top: 80px;
}
.nonmember__button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.nonmember__button-wrap .l-form__button--submit,
.nonmember__button-wrap .l-form__button--cancel {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .nonmember__container {
    margin-top: 60px;
  }
}

/* お届け先の指定 */
.shipping__wrap {
  max-width: 945px;
  margin: 0 auto;
}
.shipping__text {
  text-align: center;
}
.shipping .ec-addressRole .ec-addressRole__actions {
  border-bottom: solid 1px #d3cec7;
}
.shipping .ec-addressList .ec-addressList__item {
  border-bottom: solid 1px #d3cec7;
  display: flex;
  align-items: center;
}
.shipping .ec-addressList .ec-addressList__remove {
  max-width: 176px;
  width: 21%;
  padding: 0;
}
.shipping .ec-addressList .ec-addressList__remove input {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: solid 1px var(--color-text);
  display: grid;
  place-items: center;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
}
.shipping .ec-addressList .ec-addressList__remove input::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #005cc8;
  opacity: 0;
}
.shipping .ec-addressList .ec-addressList__remove input:checked::after {
  opacity: 1;
}
.shipping .ec-addressList .ec-addressList__address {
  margin-right: 0;
  flex-grow: 1;
  padding: 15px;
  line-height: normal;
  font-weight: 300;
  letter-spacing: 0.8px;
}
.shipping__button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 16px;
}
.shipping__button-wrap .ec-blockBtn--action,
.shipping__button-wrap .ec-blockBtn--cancel {
  max-width: 286px;
}
@media screen and (max-width: 576px) {
  .shipping__text,
  .shipping .ec-addressList .ec-addressList__address {
    font-size: 14px;
  }
  .shipping .ec-addressList .ec-addressList__remove {
    width: 15%;
  }
  .shipping .ec-addressList .ec-addressList__remove input {
    width: 16px;
    height: 16px;
  }
  .shipping .ec-addressList .ec-addressList__remove input::after {
    width: 10px;
    height: 10px;
  }
}

/* お届け先の複数指定 */
.ec-AddAddress {
  padding: 0;
}
.shipping .ec-AddAddress .ec-AddAddress__add {
  border: none;
  margin-bottom: 40px;
}
.shipping .ec-AddAddress .ec-AddAddress__item {
  background-color: var(--bg-secondary);
}
.shipping .ec-AddAddress .ec-AddAddress__itemThumb {
  min-width: 120px;
}
.ec-AddAddress .ec-AddAddress__itemtTitle {
  font-weight: 300;
}
.shipping .ec-AddAddress .ec-AddAddress__select {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
}
.shipping .ec-AddAddress .ec-AddAddress__selectAddress label,
.shipping .ec-AddAddress .ec-AddAddress__selectNumber label {
  white-space: nowrap;
}
.shipping .ec-AddAddress .ec-AddAddress__selectAddress select {
  min-width: 0;
  width: 100%;
}
.shipping .ec-AddAddress .ec-AddAddress__selectAddress .ec-select-wrap {
  width: auto;
}
.shipping .ec-AddAddress .ec-AddAddress__select .ec-inlineBtn.delete {
  margin-left: auto;
}
.shipping .ec-AddAddress .ec-select,
.shipping .ec-AddAddress .ec-input {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 576px) {
  .shipping .ec-AddAddress .ec-AddAddress__itemtContent {
    font-size: 14px;
  }
  .shipping .ec-AddAddress .ec-AddAddress__selectAddress label,
  .shipping .ec-AddAddress .ec-AddAddress__selectNumber label {
    font-size: 14px;
  }
  .shipping .ec-AddAddress .ec-AddAddress__selectNumber input {
    padding: 8px 30px 8px 20px;
  }
  .shipping .ec-AddAddress .ec-AddAddress__select {
    row-gap: 10px;
  }
  .shipping .ec-AddAddress .ec-AddAddress__select {
    margin-bottom: 20px;
  }
  .shipping .ec-AddAddress .ec-AddAddress__new {
    margin-bottom: 10px;
  }
}

/* 完了 */
.shopping__complete-title {
  font-size: 28px;
  letter-spacing: 1.5px;
  line-height: normal;
  font-weight: 300;
  text-align: center;
  margin-top: 50px;
  color: var(--color-accent);
}
.shopping__complete-text {
  font-size: 16px;
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 15px;
}
.shopping__button-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
.shopping__button-wrap .ec-blockBtn--cancel,
.shopping__button-wrap .ec-blockBtn--action {
  max-width: 240px;
}
@media screen and (max-width: 576px) {
  .shopping__complete-title {
    font-size: 20px;
  }
  .shopping__complete-text {
    font-size: 14px;
  }
}

.shopping .ec-alert-warning {
  width: auto;
}

/* ====================================
会社概要
====================================== */
.company {
  padding-bottom: 140px;
}
.company__inner {
  max-width: 1200px;
}
.company__container {
  max-width: 1000px;
  margin: 80px auto 0;
}
.company__list {
  border-bottom: solid 1px #d3cec7;
}
.company__item,
.company__text {
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.company__item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-top: solid 1px #d3cec7;
}
.company__item-title {
  max-width: 180px;
  padding: 0 20px;
  min-width: 130px;
  width: 18%;
  font-weight: 300;
}
.company__item-text {
  padding: 0 20px;
  flex-grow: 1;
}
.company__item-text span{
  display: block;
  font-size: 14px;
}
.company__item-link {
  display: grid;
  grid-template-columns: 30px auto;
  column-gap: 10px;
  margin-top: 10px;
  align-items: center;
}
.company__item-arrow {
  height: 30px;
  width: 30px;
  background-color: var(--color-accent);
  border-radius: 100px;
  position: relative;
}
.company__item-icon {
  fill: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
}
.company__item-icon.--before {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out, opacity 0.2s ease-in-out;
}
.company__item-icon.--after {
  transform: translateX(0);
  transition: transform 0.4s ease-in-out, opacity 0.2s ease-in-out 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .company__item-link:hover .company__item-icon.--before {
    opacity: 1;
    transform: translateX(0);
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out 0.2s;
  }
  .company__item-link:hover .company__item-icon.--after {
    opacity: 0;
    transform: translateX(100%);
    transition:
      transform 0.4s ease-in-out,
      opacity 0.2s ease-in-out;
  }
}
@media screen and (max-width: 768px) {
  .company {
    padding-bottom: 80px;
  }
  .company__container {
    margin-top: 50px;
  }
  .company__item {
    flex-direction: column;
    align-items: start;
    padding: 18px 0;
  }
  .company__item-title {
    width: 100%;
    max-width: 100%;
  }
  .company__item-text {
    margin-top: 10px;
    width: 100%;
  }
  .company__item-text span{
    font-size: 12px;
  }
}
@media screen and (max-width: 576px) {
  .company__item,
  .company__text {
    font-size: 14px;
  }
}

/* ====================================
よくあるご質問
====================================== */
.faq {
  padding-bottom: 140px;
}
.faq__inner {
  max-width: 1200px;
}
.faq__container {
  margin-top: 80px;
}
.faq__wrap:not(:first-child) {
  margin-top: 100px;
}
.faq__heading {
  font-size: 24px;
  letter-spacing: 1.2px;
  font-weight: 300;
  line-height: normal;
  padding-bottom: 10px;
  border-bottom: solid 1px #d3cec7;
}
.faq__list {
  margin-top: 40px;
}
.faq__item {
  background-color: var(--bg-secondary);
  padding: 25px 30px;
}
.faq__item:not(:first-child) {
  margin-top: 20px;
}
.faq__question {
  display: flex;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: normal;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}
.faq__question::before,
.faq__question::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--color-accent);
}
.faq__question::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
.faq__question.is-open::after {
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
}
.faq__question-head {
  font-family: var(--font-en);
  color: var(--color-accent);
  font-size: 28px;
  letter-spacing: 1.4px;
  margin-right: 27px;
}
.faq__answer {
  margin-top: 22px;
  padding: 20px 30px 0 50px;
  border-top: solid 1px #d3cec7;
  font-size: 16px;
  line-height: normal;
  display: none;
}
.faq__link {
  text-decoration: underline;
  color: #337ab7;
}
@media (any-hover: hover) {
  .faq__link:hover {
    color: #337ab7;
  }
}
@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 80px;
  }
  .faq__container {
    margin-top: 50px;
  }
  .faq__wrap:not(:first-child) {
    margin-top: 80px;
  }
  .faq__heading {
    font-size: 22px;
  }
  .faq__item {
    padding: 20px 25px;
  }
  .faq__item:not(:first-child) {
    margin-top: 15px;
  }
  .faq__question-head {
    font-size: 24px;
    margin-right: 20px;
  }
  .faq__question {
    font-size: 16px;
    padding-right: 20px;
  }
  .faq__answer {
    font-size: 14px;
    padding: 20px 20px 0 40px;
  }
  .faq__question::before,
  .faq__question::after {
    width: 15px;
  }
}
@media screen and (max-width: 576px) {
  .faq__list {
    margin-top: 30px;
  }
  .faq__item {
    padding: 20px;
  }
  .faq__question-head {
    font-size: 22px;
    margin-right: 15px;
  }
  .faq__answer {
    margin-top: 15px;
    padding: 15px 15px 0 35px;
  }
}

/* ====================================
ご利用ガイド
====================================== */
.guide {
  padding-bottom: 140px;
}
.guide__inner {
  max-width: 1200px;
}
.guide__container {
  margin-top: 80px;
}
.guide__wrap:not(:first-child) {
  margin-top: 100px;
}
.guide__heading {
  font-size: 24px;
  line-height: normal;
  letter-spacing: 1.2px;
  font-weight: 300;
  padding-bottom: 10px;
  border-bottom: solid 1px #d3cec7;
  margin-bottom: 40px;
}
.guide__text {
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.8px;
}
.guide__text .accent {
  color: var(--color-caution);
}
.guide__text + .guide__text {
  margin-top: 30px;
}
.guide__delivery-list {
  margin-top: 40px;
  border-top: solid 1px #d3cec7;
}
.guide__delivery-item {
  border-bottom: solid 1px #d3cec7;
  display: flex;
  align-items: center;
  padding: 20px 0;
  justify-content: space-between;
}
.guide__delivery-title {
  padding: 0 25px;
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
}
.guide__delivery-text {
  padding: 0 25px;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  white-space: nowrap;
}
.guide__subheading {
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: normal;
  font-weight: 300;
  padding-left: 15px;
  position: relative;
  margin: 40px 0 9px;
}
.guide__subheading::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--color-caution);
}
.guide__card-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0 30px;
}
.guide__card-item {
  max-width: 120px;
  width: 120px;
  min-width: 120px;
}
.guide__box {
  margin-top: 60px;
  padding: 40px 80px;
  background-color: #F4F4E9;
  display: flex;
  align-items: center;
  gap: 40px;
}
.guide__box.--payment {
  margin-top: 20px;
}
.guide__box-text,
.guide__box-address {
  font-style: normal;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.8px;
}
.guide__box-text {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .guide {
    padding-bottom: 80px;
  }
  .guide__container {
    margin-top: 50px;
  }
  .guide__heading {
    font-size: 22px;
  }
  .guide__box {
    padding: 40px 60px;
  }
}
@media screen and (max-width: 576px) {
  .guide__heading {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .guide__wrap:not(:first-child) {
    margin-top: 80px;
  }
  .guide__text,
  .guide__delivery-title,
  .guide__delivery-text,
  .guide__box-text,
  .guide__box-address {
    font-size: 14px;
  }
  .guide__delivery-title,
  .guide__delivery-text {
    padding: 0 15px;
  }
  .guide__subheading {
    margin: 30px 0 9px;
  }
  .guide__box {
    flex-direction: column;
    align-items: start;
    gap: 0;
    padding: 30px 40px;
    margin-top: 40px;
  }
}

/* ====================================
プライバシーポリシー
====================================== */
.privacy {
  padding-bottom: 140px;
}
.privacy__inner {
  max-width: 1200px;
}
.privacy__container {
  margin-top: 80px;
}
.privacy__text {
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.8px;
}
.privacy__wrap:first-child {
  margin-top: 80px;
}
.privacy__wrap:not(:first-child) {
  margin-top: 100px;
}
.privacy__heading {
  font-size: 24px;
  line-height: normal;
  letter-spacing: 1.2px;
  font-weight: 300;
  padding-bottom: 10px;
  border-bottom: solid 1px #d3cec7;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .privacy {
    padding-bottom: 80px;
  }
  .privacy__container {
    margin-top: 50px;
  }
  .privacy__heading {
    font-size: 22px;
  }
}
@media screen and (max-width: 576px) {
  .privacy__heading {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .privacy__wrap:first-child {
    margin-top: 60px;
  }
  .privacy__wrap:not(:first-child) {
    margin-top: 60px;
  }
  .privacy__text {
    font-size: 14px;
  }
}

/* ====================================
特定商取引法に関する表記
====================================== */
.law {
  padding-bottom: 140px;
}
.law__inner {
  max-width: 1200px;
}
.law__container {
  max-width: 1000px;
  margin: 80px auto 0;
}
.law__list {
  border-top: solid 1px #d3cec7;
}
.law__item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: solid 1px #d3cec7;
}
.law__title,
.law__text {
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.8px;
  padding: 0 20px;
}
.law__title {
  font-weight: 300;
  min-width: 192px;
  width: 22%;
}
.law__text {
  flex-grow: 1;
  width: 78%;
}

@media screen and (max-width: 768px) {
  .law {
    padding-bottom: 80px;
  }
  .law__container {
    margin-top: 50px;
  }
  .law__item {
    display: block;
    padding: 20px 0;
  }
  .law__title {
    width: 100%;
    min-width: 0;
  }
  .law__text {
    margin-top: 5px;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .law__title,
  .law__text {
    font-size: 14px;
    padding: 0 15px;
  }
}



/* ====================================
こだわりの製茶工程
====================================== */
#about .intro {
  padding-bottom: 140px;
  position: relative;
  z-index: 1;
}
#about .intro::after {
  content: '';
  background: url(../img/about_tea/bg-intro.jpg) no-repeat center bottom / cover;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#about .intro__wrapper {
  margin-top: 160px;
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: max-content 1fr;
  gap: 140px 0;
}
#about .intro__title {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#about .intro__title .small {
  color: #876F53;
  font-size: 18px;
}
#about .intro__title .main {
  font-size: 28px;
}
#about .intro__txt {
  font-size: 14px;
  line-height: 2;
}
#about .js-intro-swiper {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  position: relative;
  width: 100%;
}
#about .js-intro-swiper .swiper-slide {
  width: 440px;
}
#about .js-intro-swiper .swiper-button-prev,
#about .js-intro-swiper .swiper-button-next {
  background-color: var(--color-accent);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  opacity: 1;
  visibility: visible;
}
#about .js-intro-swiper .swiper-button-prev {
  left: 0;
}
#about .js-intro-swiper .swiper-button-next {
  right: 0;
}
#about .js-intro-swiper .swiper-button-prev::after,
#about .js-intro-swiper .swiper-button-next::after {
  content: none;
}
#about .js-intro-swiper .swiper-button-prev .icon,
#about .js-intro-swiper .swiper-button-next .icon {
  fill: #fff;
  width: 21px;
  height: 21px;
}
#about .js-intro-swiper .swiper-button-prev .icon {
  transform: scale(-1, 1);
}
#about .js-intro-swiper .swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
#about .about__title {
  font-size: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
#about .about__title .sub {
  color: #876F53;
  font-size: 18px;
}
#about .process {
  padding: 140px 0;
}
#about .process__list {
  max-width: 835px;
  width: 100%;
  margin: 0 auto;
}
#about .process__item {
  background-color: var(--bg-secondary);
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: max-content 1fr;
  align-items: start;
  gap: 10px 30px;
  margin-left: 35px;
  padding: 30px 30px 30px 70px;
  position: relative;
}
#about .process__item_arrow {
  margin: 20px auto;
  width: max-content;
}
#about .process__item_arrow .icon {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}
#about .process__item_step {
  background-color: #fff;
  border: solid 1px var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35px;
  margin: auto;
  width: 70px;
  height: 70px;
}
#about .process__item_step .num {
  font-size: 35px;
}
#about .process__item.even .process__item_step {
  background-color: var(--color-accent);
  color: #fff;
}
#about .process__item_img {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
#about .process__item_title {
  border-bottom: solid 1px #E6E9DE;
  font-size: 20px;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  padding-bottom: 15px;
}
#about .process__item .txt {
  font-size: 14px;
  line-height: 1.8;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
#about .end {
  position: relative;
  padding: 140px 0 0;
}
#about .end::before {
  content: '';
  background-color: #E6E9DE;
  width: calc(100% - 40px);
  max-width: 1160px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#about .end__txt {
  color: var(--color-accent);
  font-size: 36px;
  line-height: 2;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}
#about .end__img {
  display: flex;
  margin-top: 140px;
}
@media screen and (max-width: 1024px) {
  #about .intro__wrapper {
    margin-top: 80px;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, auto);
    gap: 20px;
  }
  #about .intro__title {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  #about .intro__txt {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin-bottom: 20px;
  }
  #about .js-intro-swiper {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
}
@media screen and (max-width: 768px) {
  #about .intro {
    padding-bottom: 80px;
  }
  #about .intro::after {
    background: url(../img/about_tea/sp/bg-intro.jpg) no-repeat center bottom / cover;
  }
  #about .intro__title .small {
    font-size: 14px;
  }
  #about .intro__title .main {
    font-size: 20px;
  }
  #about .js-intro-swiper .swiper-slide {
    width: 280px;
  }
  #about .js-intro-swiper .swiper-button-prev,
  #about .js-intro-swiper .swiper-button-next {
    width: 45px;
    height: 45px;
  }
  #about .js-intro-swiper .swiper-button-prev .icon,
  #about .js-intro-swiper .swiper-button-next .icon {
    width: 13px;
    height: 13px;
  }
  #about .about__title {
    font-size: 20px;
  }
  #about .about__title .sub {
    font-size: 14px;
  }
  #about .process {
    padding: 80px 0;
  }
  #about .process .about__title {
    margin-bottom: 50px;
  }
  #about .process__item {
    grid-template-columns: 130px 1fr;
    gap: 10px 20px;
    margin: 25px calc(50% - 50vw) 0;
    padding: 35px 20px 20px;
    width: 100vw;
  }
  #about .process__item_step {
    font-size: 8px;
    top: -25px;
    bottom: inherit;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
  }
  #about .process__item_step .num {
    font-size: 25px;
  }
  #about .process__item_title {
    font-size: 18px;
    padding-bottom: 5px;
    line-height: 1.5;
  }
  #about .process__item_arrow {
    margin: 10px auto 35px;
  }
  #about .end {
    padding: 80px 0 0;
  }
  #about .end__txt {
    font-size: 24px;
    margin-top: 0;
  }
  #about .end__img {
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
  }
  #about .end__img_item {
    height: 26.667vw;
    width: max-content;
  }
  #about .end__img_item img {
    object-fit: cover;
    width: auto;
    height: 100%;
  }
}