/* ----------------------------------------------
カラー
----------------------------------------------- */
:root {
  --color-bk: #000000;
  --color-wh: #fff;
  --color-red: #8e0b21;
  --color-gray: #f2f2f2;
  --color-transparent: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------------
フォント
----------------------------------------------- */
/*
@font-face {
  font-family: "G OTF GKyokaICAPro";
  src: url("../fonts/G-OTF-GKyokaICAPro-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "G OTF GKyokaICAPro";
  src: url("../fonts/G-OTF-GKyokaICAPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "G OTF GKyokaICAPro";
  src: url("../fonts/G-OTF-GKyokaICAPro-Medium.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/MinionPro-Semibold.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  unicode-range:U+0030-0039,U+0041-005A,U+0061-007A;
}

@font-face {
  font-family: "Koburina Gochic Std";
  src: url("../fonts/こぶりなゴシック Std W3.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Koburina Gochic Std";
  src: url("../fonts/こぶりなゴシック Std W6.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
  */



:root {
  --font-mincho: "Klee One", cursive, serif;
  --font-gochic: "Noto Sans JP", sans-serif;
}

/* ----------------------------------------------
トップページ
----------------------------------------------- */

/* hero
----------------------------------------------- */

.p-topHeading__wrap {
  width: 100%;
  position: relative;
  margin-bottom: 70px;
}

.p-topHeading__logo {
  width: calc(100vw / 13);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
  .p-topHeading__wrap a img {
    transition: 0.3s;
  }

  .p-topHeading__wrap a:hover img {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  .p-topHeading__wrap {
    margin-bottom: 60px;
  }

  .p-topHeading__logo {
    width: calc(50vw / 3.7);
  }
}

/* media
----------------------------------------------- */

.p-media__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-inline: 40px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.p-mediaList__item img {
  width: auto;
  height: 42px;
}

.slick-initialized.p-media__list {
  opacity: 1;
}

.p-media__list .slick-next {
  right: 0;
}

.p-media__list .slick-prev {
  left: 0;
}

.p-media__list.slick-initialized .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-media__list .slick-prev,
  .p-media__list .slick-next {
    top: 50%;
  }
}

element.style {
}
@media screen and (max-width: 480px) {
  .slick-initialized .p-mediaList__item img {
    height: 40px;
  }
}

/* news
----------------------------------------------- */

.p-topNews__list {
  max-width: 918px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

.p-topNews__article {
  border-bottom: 1px dotted var(--color-bk);
  padding-bottom: 10px;
}

.p-topNews__article a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 10px;
  position: relative;
  padding-left: 1.2em;
}

.p-topNews__article a::before {
  content: "●";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.813em;
}

.p-topNews__date {
  font-weight: 300;
  font-family: var(--font-gochic);
  letter-spacing: 0.05em;
  line-height: 1.406;
  transition: ease 0.4s;
}

.p-topNews__category {
  font-weight: 300;
  font-family: var(--font-gochic);
  letter-spacing: 0.05em;
  line-height: 1.406;
  padding-inline: 5px;
  text-align: center;
  transition: ease 0.4s;
  white-space: nowrap;
  min-width: 90px;
}

.p-topNews__title {
  font-weight: 300;
  font-family: var(--font-gochic);
  letter-spacing: 0.05em;
  line-height: 1.406;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: ease 0.4s;
}

@media screen and (min-width: 769px) {
  a:hover .p-topNews__title,
  a:hover .p-topNews__date,
  a:hover .p-topNews__category {
    opacity: 0.7;
  }

  .p-topNews__article a:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .p-topNews__list {
    gap: 15px 0;
  }

  .p-topNews__article a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-right: 0;
    position: relative;
  }

  .p-topNews__date {
    font-size: 0.875em;
    font-weight: 600;
  }

  .p-topNews__category {
    font-size: 0.875em;
    min-width: auto;
  }

  .p-topNews__title {
    width: 100%;
    font-size: 0.875em;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
  }
}

/* ----------------------------------------------
名匠のギフト
----------------------------------------------- */

.p-special__block01 {
  display: grid;
  gap: 50px 30px;
  grid-template-columns: repeat(3, 1fr);
}

.p-special__block01.-col02 {
  grid-template-columns: repeat(2, 1fr);
}

.p-special__dl picture {
  display: block;
  margin-bottom: 20px;
}

.p-special__dl dt {
  padding-bottom: 20px;
  border-bottom: 0.2844px solid var(--color-bk);
  margin-bottom: 20px;
  text-align: center;
  font-family: var(--font-gochic);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.553;
}

.p-special__dl dd {
  font-size: 0.813em;
  font-family: var(--font-gochic);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.769;
  text-align: justify;
  line-break: strict;
  word-wrap: break-word;
  font-feature-settings: "halt";
}

.p-shop__list {
  display: flex;
  gap: 64px;
}

.p-shopList__item {
  width: calc((100% / 2) - 32px);
}

.p-shopList__picture {
  display: block;
  margin-bottom: 30px;
}

.p-shopList__textBlock h3 {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-shopList__textBlock h3 img {
  width: auto;
  height: 65px;
}

.p-shopList__textBlock p {
  font-size: 0.844em;
  line-height: 1.786;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: justify;
  font-family: var(--font-gochic);
  line-break: strict;
  word-wrap: break-word;
  font-feature-settings: "halt";
}

@media screen and (min-width: 481px) {
  .p-special__block01.center {
    display: flex;
    gap: 50px 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .p-special__block01.center .p-special__dl {
    width: calc((100% / 3) - 20px);
  }
}

@media screen and (max-width: 480px) {
  .p-special__block01 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 27px;
  }

  .p-special__dl dt {
    font-size: 0.938em;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .p-special__dl picture {
    margin-bottom: 10px;
  }

  .p-shop__list {
    flex-direction: column;
    gap: 40px 0;
  }

  .p-shopList__item {
    width: 100%;
  }

  .p-shopList__picture {
    margin-bottom: 17px;
  }

  .p-shopList__textBlock h3 {
    margin-bottom: 15px;
  }

  .p-shopList__textBlock h3 img {
    height: 42px;
  }

  .p-shopList__item:nth-child(2) .p-shopList__textBlock h3 img {
    height: 50px;
  }

  .p-special__dl dd {
    font-size: 0.875em;
    line-height: 1.786;
    letter-spacing: 0.06em;
  }
}

/* ----------------------------------------------
共通 - 一覧
----------------------------------------------- */

/* バナー一覧 */

.l-bnr__wrap {
  margin-bottom: 80px;
}

.l-bnr__wrap.unber {
  margin-top: 100px;
  margin-bottom: 0;
}

.l-bnr__wrap.unber .l-bnr__list {
  border-top: 1px solid var(--color-bk);
  padding-top: 60px;
}

.l-bnr__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 37px;
  margin-inline: auto;
}

.l-bnr__list.large {
  max-width: 860px;
  gap: 30px 0;
}

.l-bnr__list.large img {
  max-width: 350px;
  width: 90%;
}

.l-bnr__listItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.l-bnr__listItem a {
  width: 100%;
  text-align: center;
}

.l-bnr__listItem figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px 0;
}

.l-bnr__listItem figcaption {
  text-align: center;
  line-height: 2.125;
  letter-spacing: 0.05em;
  font-size: 15px;
}

.l-section__wrap + .l-section__wrap {
  margin-top: 80px;
}

/* 商品一覧 */

.p-product__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  margin-inline: auto;
}

.p-product__list.-col02 {
  max-width: 912px;
  margin-inline: auto;
}

.p-product__list.-col02-2 {
  max-width: 690px;
}

p + .p-product__list {
  margin-top: 60px;
}

.p-product__list + .c-title04 {
  margin-top: 90px;
}

.p-productList__item {
  width: calc((100% / 3) - 34px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-product__list.-col02-2 .p-productList__item {
  width: calc((100% / 2) - 30px);
  max-width: 320px;
}

.p-product__list.-col02 .p-productList__item {
  width: calc((100% / 2) - 30px);
  max-width: 426px;
}

.p-productList__picture {
  display: block;
  margin-bottom: 30px;
}

.p-productList__textBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px 0;
}

.p-productList__textBlock .series {
  font-size: 0.875em;
  font-weight: 600;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 5px 10px 7px 10px;
  line-height: 1;
  position: relative;
  margin-bottom: 15px;
  background: var(--color-wh);
}

.p-productList__textBlock .series::before {
  content: "";
  width: calc(100% + 4px);
  height: 1px;
  background: #000;
  border-radius: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-productList__textBlock .series::after {
  content: "";
  width: calc(100% + 4px);
  height: 1px;
  background: #000;
  border-radius: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-productList__textBlock .title {
  font-family: var(--font-gochic);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.563;
  font-size: 0.875em;
}

.p-productList__textBlock .sub-title {
  font-family: var(--font-gochic);
  font-size: 0.813em;
  line-height: 1.538;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.p-productList__textBlock .sub-title b {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 1.231em;
}

.p-productList__textBlock .detail {
  font-family: var(--font-gochic);
  font-size: 0.813em;
  line-height: 1.538;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  padding-inline: 8px;
  margin-top: 10px;
}

.p-productList__textBlock .detail::before {
  content: "";
  width: 3px;
  height: 100%;
  border-top: 1px solid var(--color-bk);
  border-bottom: 1px solid var(--color-bk);
  border-left: 1px solid var(--color-bk);
  position: absolute;
  top: 0;
  left: 0;
}

.p-productList__textBlock .detail::after {
  content: "";
  width: 3px;
  height: 100%;
  border-top: 1px solid var(--color-bk);
  border-bottom: 1px solid var(--color-bk);
  border-right: 1px solid var(--color-bk);
  position: absolute;
  top: 0;
  right: 0;
}

.p-productList__textBlock .price {
  font-size: 1.063em;
  font-family: var(--font-gochic);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 10px;
  padding-left: 17px;
}

.p-productList__textBlock .tax {
  font-weight: 600;
  font-size: 0.824em;
}

.p-productList__item .c-btn__center {
  margin-top: 20px;
}

.p-product__titleBlock {
  position: relative;
  margin-bottom: 90px;
}

.p-product__titleBlock h2 {
  width: calc(22vw / 13);
  height: auto;
  position: absolute;
  top: calc(75vw / 13);
  left: calc(80vw / 13);
}

.p-product__logo {
  width: calc(275vw / 13);
  height: auto;
  position: absolute;
  top: calc(75vw / 13);
  left: 50%;
  transform: translateX(-50%);
}

.p-voice__block {
  margin-bottom: 20px;
}

.p-voice__block .title {
  font-family: var(--font-gochic);
  font-weight: 400;
  font-size: 0.938em;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 40px;
}

.p-voice__block .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 23px;
  background: url(../img/top/voice-icon.svg) no-repeat center center/cover;
}

.p-voice__block .comment {
  padding-top: 20px;
  border-top: 0.2px solid var(--color-bk);
  margin-top: 20px;
  font-family: var(--font-gochic);
  font-weight: 300;
  font-size: 0.813em;
  letter-spacing: 0.04em;
  line-height: 1.769;
  text-align: justify;
}

.js-slick .slick-dots li {
  width: 6px;
  height: 6px;
  margin: 0 7.5px;
}

.js-slick .slick-dots li button {
  width: 6px;
  height: 6px;
  padding: 0;
}

.js-slick .slick-dots li button:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4c4c4;
  opacity: 1;
}

.js-slick .slick-dots li.slick-active button:before {
  color: var(--color-red);
  background: var(--color-red);
  opacity: 1;
  width: 6px;
  height: 6px;
}

.p-product__list.js-slick .slick-dots {
  bottom: -10px;
}

.js-slick.slick-dotted.slick-slider {
  padding-bottom: 30px;
}

.js-slick .slick-prev,
.js-slick .slick-next {
  width: 20px;
  height: 20px;
  background: var(--color-bk);
  border-radius: 50%;
}

.js-slick .slick-prev,
.js-slick .slick-next {
  top: 24.778%;
}

.js-slick .slick-next {
  right: -10px;
}

.js-slick .slick-prev {
  left: -10px;
}

.js-slick .slick-prev:before,
.js-slick .slick-next:before {
  content: "";
  opacity: 1;
  width: 4px;
  height: 10px;
  background: url(../img/common/arrow-wh.svg) no-repeat center center / cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.js-slick .slick-prev:before {
  transform: translate(-50%, -50%) rotate(-180deg);
}

/* slick-dots が1個しかないとき非表示 */
.slick-dots li:only-child {
  display: none;
}

/* ドット全体を消すには親ごと非表示に */
.slick-dots:has(li:only-child) {
  display: none !important;
}

/* 価格一覧 */

.p-price__list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.p-price__list.-col04 {
  grid-template-columns: repeat(4, 1fr);
}

.p-priceList__item a {
  display: block;
  text-align: center;
  padding-inline: 10px;
  font-size: 1em;
  font-family: var(--font-gochic);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 42px;
  background: url(../img/common/btn-bg.webp) repeat center center/cover;
  position: relative;
}

.p-priceList__item a span {
  position: relative;
  z-index: 2;
}

.p-priceList__item a:hover {
  opacity: 1;
}

.p-priceList__item a::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--color-bk);
  top: 0;
  left: 0;
  opacity: 0;
  transition: ease 0.4s;
}

.p-priceList__item a:hover::before {
  opacity: 0.1;
}

.p-product__list.-grid .p-productList__item {
  width: 100%;
  max-width: 980px;
}

.p-productList__textBlock .logo {
  margin-bottom: 26px;
}

.p-productList__textBlock .copy {
  font-family: var(--font-mincho);
  font-size: 1.188em;
  font-weight: 600;
  line-height: 1.789;
  text-align: center;
  margin-bottom: 20px;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

.p-productList__textBlock .read {
  font-size: 0.875em;
  font-family: var(--font-gochic);
  font-weight: 300;
  line-height: 1.786;
  padding-top: 15px;
  border-top: 0.2px solid var(--color-bk);
  margin-bottom: 20px;
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-feature-settings: "half";
}

.p-product__list.-grid .slick-list {
  max-width: 980px;
}

.slick-dots li {
  width: 6px;
  height: 6px;
  margin: 0 7.5px;
}

.slick-dots li button {
  width: 6px;
  height: 6px;
  padding: 0;
}

.slick-dots li button:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4c4c4;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: var(--color-red);
  background: var(--color-red);
  opacity: 1;
}

.slick-prev,
.slick-next {
  width: 30px;
  height: 30px;
  background: var(--color-bk);
  border-radius: 50%;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  opacity: 1;
  width: 8px;
  height: 14px;
  background: url(../img/common/arrow-wh.svg) no-repeat center center / cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slick-prev:before {
  transform: translate(-50%, -50%) rotate(-180deg);
}

@media screen and (min-width: 769px) {
  .p-product__list.-grid .p-productList__item {
    flex-direction: row;
    gap: 0 60px;
  }

  .slick-initialized .p-productList__item.slick-slide {
    display: flex;
  }

  .p-product__list.-grid .p-productList__picture {
    width: 460px;
    display: block;
    padding-left: 34px;
  }

  .p-product__list.-grid .p-productList__textBlock {
    width: 460px;
    align-items: flex-start;
  }

  .p-product__list.-grid .price {
    padding-left: 0;
  }

  .p-product__list.-grid .detail {
    max-width: 350px;
    text-align: justify;
    overflow-wrap: anywhere; /* 収まらない場合に折り返す */
    /*word-break: keep-all; /* 単語の分割はデフォルトに依存 */
    line-break: strict; /* 禁則処理を厳格に適用 */
    font-feature-settings: "half";
  }

  .p-product__list.-grid .c-btn__primary {
    margin: 0 0 0 20px;
  }

  .p-product__list.-grid .p-productList__textBlock .copy {
    text-align: left;
    margin-bottom: 5px;
  }

  .slick-prev:hover,
  .slick-next {
    transition: 0.3s;
  }

  .slick-prev:hover,
  .slick-next:hover {
    background: var(--color-bk);
    opacity: 0.6;
  }

  .p-product__list .slick-dots {
    bottom: -10px;
  }
}

@media screen and (max-width: 768px) {
  .p-product__list.-grid .c-btn__primary {
    display: block;
    margin: 20px 0 0 0;
  }

  .p-product__list .slick-dots {
    bottom: -10px;
  }

  .slick-prev,
  .slick-next {
    top: calc(100%);
    z-index: 3;
  }

  .slick-next {
    right: 0;
  }

  .slick-prev {
    left: 0;
  }

  .slick-dotted.slick-slider {
    padding-bottom: 40px;
  }

  .slick-prev:hover,
  .slick-next:hover {
    background: var(--color-bk);
    opacity: 1;
  }

  .p-priceList__item a {
    font-size: 0.875em;
  }
}

@media screen and (min-width: 481px) {
  .l-bnr__listItem {
    width: calc(50% - 18.5px);
  }

  .l-bnr__listItem.large {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .l-bnr__wrap.unber .l-bnr__list {
    padding-top: 40px;
  }

  .l-bnr__wrap.unber {
    margin-top: 80px;
  }

  .l-bnr__list {
    flex-direction: column;
    gap: 20px 0;
  }

  .p-product__list,
  .p-product__list.-col02-2 {
    gap: 50px 27px;
  }

  .p-product__list.gift {
    gap: 20px 20px;
  }

  .p-product__list.-col02 {
    gap: 50px 0;
  }

  .p-product__list.-col_sp01 {
    flex-direction: column;
    gap: 50px 0;
  }

  .p-product__list.-col_sp01 .p-productList__item {
    width: 100%;
  }

  .p-product__list .p-productList__item {
    width: calc((100% / 2) - 13.5px);
  }

  .p-product__list.-col02-2 .p-productList__item,
  .p-product__list.-col02 .p-productList__item {
    width: 100%;
  }

  .p-productList__picture {
    margin-bottom: 20px;
  }

  .p-product__list.gift .p-productList__picture {
    margin-bottom: 15px;
  }

  .p-productList__textBlock .price {
    margin-top: 5px;
    text-align: center;
  }

  .p-voice__block .comment {
    padding-top: 10px;
    margin-top: 10px;
  }

  .p-price__list,
  .p-price__list.-col04 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .p-media__list {
    gap: 20px 30px;
  }

  .p-mediaList__item {
    width: calc((100% / 2) - 15px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-mediaList__item img {
    height: 33px;
  }

  .p-product__titleBlock {
    margin-bottom: 60px;
  }

  .p-product__titleBlock h2 {
    width: calc(10vw / 3.4);
  }

  .p-product__logo {
    width: calc(100vw / 3.4);
    top: calc(20vw / 3.4);
  }

  .p-productList__textBlock .copy {
    font-size: 0.938em;
    margin-bottom: 10px;
  }

  .load-more-button {
    position: relative;
    margin-inline: auto;
    font-family: var(--font-mincho);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.563;
    color: var(--color-red);
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-red);
  }

  .l-bnr__list img {
    width: 100%;
  }

  .l-bnr__listItem figure {
    gap: 10px 0;
  }

  .l-bnr__listItem figcaption {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .l-bnr__listItem figcaption p{
    text-align: justify;
    line-break: strict;
    word-wrap: break-word;
    font-feature-settings: "halt";
  }
}

/* ----------------------------------------------
お知らせ
----------------------------------------------- */

/* 一覧
----------------------------------------------- */

.p-news__categoryNav {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-gochic);
  font-weight: 300;
  letter-spacing: 0.05em;
  gap: 20px;
  padding-top: 40px;
  margin-bottom: 30px;
}

.p-news__categoryNav li + li {
  border-left: 1px solid var(--color-bk);
  padding-left: 20px;
}

.p-news__categoryNav a,
.p-news__categoryNav span {
  position: relative;
}

.p-news__categoryNav a:hover::after,
.p-news__categoryNav span::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  background: var(--color-bk);
}

.p-news__year {
  max-width: 738px;
  margin-inline: auto;
  text-align: left;
  font-family: var(--font-gochic);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.p-news__list {
  display: flex;
  flex-direction: column;
  max-width: 738px;
  margin-inline: auto;
}

.p-news__article {
  padding-block: 20px;
  border-bottom: 1px dotted var(--color-bk);
}

.p-news__article:first-child {
  border-top: 1px dotted var(--color-bk);
}

.p-news__article a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--font-gochic);
  font-weight: 300;
  gap: 40px;
}
.p-news__thum {
  width: 150px;
  height: 100px;
  display: block;
  position: relative;
  overflow: hidden;
}

.p-news__thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-news__text {
  width: 550px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-inline: 0 40px;
  gap: 20px;
  position: relative;
}

.p-news__text::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  border: 2px solid var(--color-red);
  border-left: 0;
  border-bottom: 0;
}

.p-news__date {
  font-size: 1em;
  font-family: var(--font-en);
  line-height: 1.625;
}

.p-news__category {
  width: 90px;
  font-size: 1em;
  padding-block: 2px;
  text-align: center;
  word-break: keep-all;
  background: var(--color-red);
  color: var(--color-wh);
}

.p-news__title {
  width: calc(100% - 160px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-pager__block {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

ul.page-numbers .prev,
ul.page-numbers .next {
  width: 15px;
  height: 15px;
  position: relative;
}

ul.page-numbers .prev::after,
ul.page-numbers .next::after {
  content: "";
  top: 50%;
  left: 48%;
  position: absolute;
  vertical-align: middle;
  line-height: 1;
  width: 11px;
  height: 11px;
  border: 2px solid var(--color-red);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-50%, -50%) rotate(45deg);
}

ul.page-numbers .prev::after {
  left: 52%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

ul.page-numbers .prev:hover,
ul.page-numbers .next:hover {
  opacity: 1;
}

a.page-numbers,
span.page-numbers {
  font-family: var(--font-gochic);
  font-weight: 300;
}

.current.page-numbers {
  color: var(--color-red);
}

.dots.page-numbers {
  position: relative;
  top: 0;
}

@media screen and (min-width: 769px) {
  ul.page-numbers .prev::before,
  ul.page-numbers .next::before {
    content: "";
    background: var(--color-red);
    width: 0;
    height: 100%;
    border-radius: 50%;
    transition: ease 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  ul.page-numbers .prev:hover::before,
  ul.page-numbers .next:hover::before {
    width: 100%;
    opacity: 1;
  }

  ul.page-numbers .prev:hover::after,
  ul.page-numbers .next:hover::after {
    border-color: var(--color-wh);
  }

  .p-news__article a:hover .p-news__date,
  .p-news__article a:hover .p-news__category,
  .p-news__article a:hover .p-news__title {
    opacity: 0.6;
  }

  .p-news__article a:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 480px) {
  .p-news__categoryNav {
    padding-top: 0;
  }

  .p-news__article {
    padding-block: 16px;
  }

  .p-news__article a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 20px;
  }

  .p-news__thum {
    width: 100px;
    height: 66px;
  }

  .p-news__text {
    width: calc(100% - 120px);
    flex-wrap: wrap;
    padding-inline: 0 30px;
  }

  .p-news__date {
    font-size: 0.75em;
  }

  .p-news__category {
    font-size: 0.75em;
  }

  .p-news__title {
    width: 100%;
    font-size: 0.875em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .c-pager__block {
    margin-top: 40px;
  }

  ul.page-numbers .prev,
  ul.page-numbers .next {
    width: 40px;
    height: 40px;
  }
  ul.page-numbers .prev::after,
  ul.page-numbers .next::after {
    width: 10px;
    height: 10px;
  }
  a.page-numbers,
  span.page-numbers {
    font-size: 1.125em;
  }
}

/* 記事ページ
----------------------------------------------- */

.p-detail__wrap {
  padding-top: 40px;
}

.p-detail__title {
  font-size: 1.5em;
  padding-bottom: 15px;
  border-bottom: 1px dotted var(--color-bk);
  margin-bottom: 15px;
}

.p-detail__heading {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 40px;
}

.p-detail__date {
  font-weight: 300;
  font-family: var(--font-gochic);
  letter-spacing: 0.1em;
  line-height: 1.406;
  font-size: 0.938em;
}

.p-detail__category {
  padding: 2px 15px;
  text-align: center;
  word-break: keep-all;
  background: var(--color-red);
  color: var(--color-wh);
  font-family: var(--font-gochic);
  font-weight: 300;
  font-size: 0.938em;
}

.p-detail__content {
  font-family: var(--font-gochic);
  margin-bottom: 100px;
}

.p-detail__content p {
  font-size: 0.938em;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-detail__content p + p {
  margin-top: 40px;
}

.p-detail__content a {
  text-decoration: underline;
}

.p-detail__content h2 {
  font-size: 1.375em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-bk);
  font-family: var(--font-mincho);
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.p-detail__content h3 {
  font-size: 1.125em;
  font-family: var(--font-mincho);
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.p-detail__content h3::before {
  content: "●";
  color: var(--color-red);
  font-size: 0.889em;
}

.p-detail__content p + h2,
.p-detail__content p + h3,
.p-detail__content figure + p,
.p-detail__content figure + h2,
.p-detail__content figure + h3 {
  margin-top: 60px;
}

.p-detail__content h2 + h3 {
  margin-top: 25px;
}

.p-detail__content p + img,
.p-detail__content img + p,
.p-detail__content p + figure {
  margin-top: 40px;
}

.p-detail__content .wp-block-image :where(figcaption) {
  margin-bottom: 0;
  margin-top: 1em;
}

.p-detail__wrap .pager__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.pager__item {
  display: flex;
  justify-content: center;
}

.pager__item.prev {
  justify-content: flex-start;
}

.pager__item.next {
  justify-content: flex-end;
}

.pager__item.prev a,
.pager__item.next a {
  display: flex;
  align-items: center;
  gap: 0 20px;
  letter-spacing: 0.1em;
  font-size: 1em;
  line-height: 1;
}

.pager__item.next a {
  text-align: right;
  justify-content: flex-end;
}

.pager__item.prev a::before,
.pager__item.next a::after {
  content: "";
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: solid 2px var(--color-red);
  border-right: solid 2px var(--color-red);
  position: relative;
  top: 2px;
}

.pager__item.prev a::before {
  transform: rotate(-135deg);
}

.no_bullets {
  width: 100%;
  padding: 40px;
  margin-bottom: 40px;
  background: var(--color-gray);
}

.p-detail__content p.toc_title {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}

.toc_title::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: var(--color-bk);
}

.toc_list {
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  list-style-type: decimal;
  padding-left: 1em;
}

/* ----------------------------------------------
共通 - お問い合わせ
----------------------------------------------- */

.p-contact__wrap {
  padding-block: 100px 200px;
}

.p-contact__attBlock {
  max-width: 724px;
  margin-inline: auto;
  background: var(--color-gray);
  padding: 40px;
}

.p-contact__attBlock h2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 16px;
}

.p-contact__attBlock p,
.p-contact__attBlock li {
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.8;
  color: #727283;
}

.p-contact__attBlock p + h2 {
  margin-top: 40px;
}

.p-contact__attBlock a {
  text-decoration: underline;
}

.p-contact__attBlock ul {
  padding-left: 1em;
  list-style-type: disc;
}

.p-contact__attBlock p + ul {
  margin-top: 40px;
}

.p-contact__form {
  max-width: 930px;
  margin: 100px auto;
}
.p-contact__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-contact__group + .p-contact__group {
  margin-top: 48px;
}

.p-contact__title {
  font-size: 1.5em;
  font-weight: 700;
}

.p-contact__form .req {
  background: var(--color-red);
  color: var(--color-wh);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  border-radius: 10px;
  padding: 8px 16px;
  display: inline-block;
  margin-left: 24px;
  vertical-align: middle;
}

.p-contact__input {
  font-size: 1em;
  line-height: 1.9;
  font-weight: 400;
}

.c-form__annotation {
  text-align: right;
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 8px;
}

.p-contact__privacyBlock {
  margin-top: 48px;
}

.p-contact__privacyBlock > p {
  font-size: 1em;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 16px;
}

.p-contact__privacyScloll {
  border: 1px solid #727283;
  padding: 16px;
  overflow-y: scroll;
  height: 200px;
  border-radius: 10px;
  font-size: 1em;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 40px;
}

.p-contact__privacyScloll h3,
.p-contact__privacyScloll h4 {
  font-weight: 400;
}

.p-contact__privacyScloll ol {
  list-style-type: decimal;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

.p-contact__privacyScloll p + ol,
.p-contact__privacyScloll ol + p,
.p-contact__privacyScloll ol + h3,
.p-contact__privacyScloll p + h4 {
  margin-top: 16px;
}

.p-contact__privacyBlock .wpcf7-form-control-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.p-contact__privacyBlock .wpcf7-list-item label {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 40px;
  position: relative;
  cursor: pointer;
}

.p-contact__privacyBlock .wpcf7-list-item label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 10px;
  width: 30px;
  height: 30px;
  border: 1px solid #727283;
  transform: translateY(-50%);
}

.p-contact__privacyBlock
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 8px;
  left: 5px;
  width: 20px;
  height: 10px;
  border-left: 4px solid var(--color-red);
  border-bottom: 4px solid var(--color-red);
  transform: rotate(-45deg);
}

.p-contact__privacyBlock input[type="checkbox"] {
  display: none;
}

.p-contact__textBottom {
  max-width: 930px;
  margin-inline: auto;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.8;
  color: #727283;
}

.p-contact__form .err {
  font-size: 14px;
  color: var(--color-red);
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .p-contact__wrap {
    padding-block: 80px 120px;
  }

  .p-contact__attBlock {
    padding: 24px;
  }

  .p-contact__form {
    margin: 64px auto;
  }

  .p-contact__title {
    font-size: 1.25em;
  }

  .p-contact__form .req {
    font-size: 12px;
    margin-left: 16px;
    line-height: 1;
    padding: 8px 10px;
  }

  .p-contact__input {
    font-size: 0.875em;
  }

  .c-form__select select,
  .c-form__inputText input[type="text"],
  .c-form__inputText input[type="email"],
  .c-form__inputText input[type="tel"],
  .c-form__textarea {
    font-size: 0.875em;
  }

  .c-form__annotation {
    text-align: left;
  }

  .c-form__radiobtn label .wpcf7-list-item-label {
    font-size: 1em;
    padding: 0 10px 0 30px;
  }
  .c-form__radiobtn label .wpcf7-list-item-label:before {
    width: 24px;
    height: 24px;
  }

  .c-form__radiobtn input[type="radio"]:checked + .wpcf7-list-item-label:after {
    width: 14px;
    height: 14px;
    left: 5px;
  }

  .p-contact__privacyScloll {
    font-size: 0.875em;
  }

  .p-contact__privacyBlock .wpcf7-form-control-wrap {
    margin-bottom: 64px;
  }

  .p-contact__privacyBlock .wpcf7-list-item label {
    font-size: 1em;
    padding-left: 30px;
  }

  .p-contact__privacyBlock .wpcf7-list-item label::before {
    width: 25px;
    height: 25px;
    border-radius: 8px;
  }

  .p-contact__privacyBlock
    input[type="checkbox"]:checked
    + .wpcf7-list-item-label::after {
    top: 6px;
    left: 4px;
    width: 16px;
    height: 8px;
    border-left: 3px solid var(--color-red);
    border-bottom: 3px solid var(--color-red);
  }
}

/* ----------------------------------------------
共通 - ポリシー
----------------------------------------------- */

.p-policy__wrap {
  padding-block: 100px 200px;
}

.p-policy__wrap .c-grid__block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 40px;
  margin-bottom: 40px;
}

.p-policy__wrap p + p {
  margin-top: 20px;
}

.p-policy__wrap p + h4,
.p-policy__wrap p + h5,
.p-policy__wrap ol + h5,
.p-policy__wrap ul + h5,
.p-policy__wrap p + h6,
.p-policy__wrap .c-table__block + p,
.p-policy__wrap ul + p,
.p-policy__wrap ol + p {
  margin-top: 40px;
}

.p-policy__wrap p + h6 {
  padding-left: 1.2em;
}

.p-policy__wrap hr {
  margin-block: 80px;
}

.p-policy__wrap table {
  margin-top: 70px;
}

@media screen and (min-width: 769px) {
  .p-policy__wrap .c-grid__block .c-grid__left {
    width: calc(200vw / 9.3);
  }

  .p-policy__wrap .c-grid__block .c-grid__right {
    width: calc(690vw / 9.3);
  }
}

@media screen and (max-width: 768px) {
  .p-policy__wrap .c-grid__block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px 0;
    margin-bottom: 40px;
  }

  .p-policy__wrap .c-grid__block .c-grid__left {
    width: calc(100% - 80px);
  }

  .p-policy__wrap hr {
    margin-block: 40px;
  }

  .p-policy__wrap p + h5,
  .p-policy__wrap ol + h5,
  .p-policy__wrap ul + h5,
  .p-policy__wrap p + h6,
  .p-policy__wrap .c-table__block + p,
  .p-policy__wrap ul + p,
  .p-policy__wrap ol + p {
    margin-top: 32px;
  }

  .p-policy__wrap table {
    margin-top: 40px;
  }
}

/* ----------------------------------------------
ギフト特集
----------------------------------------------- */

.p-gift__grid {
  display: flex;
  gap: 0 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.p-gift__grid picture {
  width: 510px;
}

.p-gift__grid .p-gift__gridText {
  width: 510px;
}

.p-gift__example {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
}

.p-gift__example picture {
  margin-bottom: 30px;
  display: block;
}

.p-gift__wrap h3 {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 1.188em;
  letter-spacing: 0.05em;
  line-height: 1.308;
  color: var(--color-red);
  margin-bottom: 30px;
  position: relative;
}

.p-gift__wrap .p-gift__example h3 {
  font-size: 1em;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  padding-right: 17px;
}

.p-gift__wrap h3::before {
  content: "●";
  display: inline-block;
  margin-right: 5px;
}

.p-gift__wrap .js-accBtn i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  border: 1px solid var(--color-bk);
}

.p-gift__wrap .js-accBtn i::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: solid 1px var(--color-bk);
  border-right: solid 1px var(--color-bk);
  transition: ease 0.4s;
}

.p-gift__wrap .js-accBtn.is-active i::before {
  top: 6px;
  transform: translateX(-50%) rotate(-45deg);
}

.p-gift__wrap h4 {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 1.063em;
  letter-spacing: 0.05em;
  line-height: 1.462;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 0.2px solid var(--color-bk);
}

.p-gift__wrap .p-gift__example h4 {
  font-size: 1em;
}

.p-gift__wrap p {
  font-family: var(--font-gochic);
  font-size: 0.875em;
  line-height: 1.786;
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-feature-settings: "halt";
  font-weight: 300;
}

.js-accBtn {
  cursor: pointer;
}

.js-accBlock {
  transition: ease 0.4s;
  display: none;
}

.js-accBlock.is-active {
  display: block;
}

@media screen and (max-width: 480px) {
  .p-gift__grid {
    flex-direction: column;
  }

  .p-gift__grid picture {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }

  .p-gift__grid .p-gift__gridText {
    width: 100%;
  }

  .p-gift__example {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }

  .p-gift__example picture {
    margin-bottom: 20px;
    margin-inline: auto;
    width: 80%;
  }

  .p-gift__wrap h3 {
    font-size: 1em;
    padding-right: 17px;
    margin-bottom: 20px;
    text-align: center;
  }

  .p-gift__wrap h4 {
    font-size: 1em;
    text-align: center;
  }

  .p-gift__wrap .p-gift__example h3 {
    width: 80%;
    margin-inline: auto;
  }
}

/* ----------------------------------------------
大口注文のお問い合わせ
----------------------------------------------- */

/* ケース */

.p-case__list {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}

.p-caseList__item {
  display: flex;
  align-items: center;
  gap: 0 40px;
}

.p-caseList__picture {
  width: 426px;
}

.p-caseList__textBlock {
  width: 426px;
}

.p-caseList__textBlock .title {
  font-family: var(--font-mincho);
  font-size: 1.063em;
  font-weight: 600;
  line-height: 1.462;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  border-bottom: 0.2px solid var(--color-bk);
  margin-bottom: 20px;
}

.p-caseList__textBlock .title span {
  font-family: "Noto Serif JP", serif;
  display: block;
  color: var(--color-red);
  font-size: 1.118em;
  margin-bottom: 30px;
}

.p-caseList__textBlock .title span::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-red);
  display: inline-block;
  margin-right: 10px;
}

.p-caseList__textBlock .read {
  font-family: var(--font-gochic);
  font-size: 0.875em;
  line-height: 1.786;
  font-weight: 300;
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-feature-settings: "halt";
}

@media screen and (max-width: 480px) {
  .p-caseList__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px 0;
  }

  .p-caseList__picture {
    width: 100%;
  }

  .p-caseList__textBlock {
    width: 100%;
  }

  .p-caseList__textBlock .title span{
    margin-bottom: 10px;
  }
}

/* ご注文からお届けまでの流れ */

.p-order__flow {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  max-width: 776px;
  margin-inline: auto;
}

.p-orderFlow__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--font-gochic);
  position: relative;
}

.p-orderFlow__item + .p-orderFlow__item {
  padding-top: 25px;
  border-top: 1px dotted var(--color-bk);
}

.p-orderFlow__item + .p-orderFlow__item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent var(--color-red);
  position: absolute;
  top: -8px;
  left: 64px;
  bottom: 0;
  transform: rotate(90deg);
}

.p-orderFlow__dt {
  width: 155px;
  font-size: 1em;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.p-orderFlow__dt span {
  font-family: "Noto Serif JP", serif;
  background: var(--color-red);
  color: var(--color-wh);
  border-radius: 23px;
  font-weight: bold;
  width: 23px;
  height: 23px;
  line-height: 20px;
  display: inline-block;
  text-align: center;
  margin-right: 14px;
  font-size: 16px;
  letter-spacing: 0;
}

.p-orderFlow__dd {
  font-size: 1em;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 2.125;
}

.p-orderFlow__dd span {
  font-size: 0.813em;
  display: block;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .p-orderFlow__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px 0;
  }

  .p-orderFlow__dt {
    width: 100%;
  }

  .p-orderFlow__dd {
    font-size: 0.875em;
    line-height: 1.8;
  }

  .p-orderFlow__dd span {
    margin-top: 10px;
  }

  .p-orderFlow__item + .p-orderFlow__item::before {
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .p-orderFlow__dt span {
    line-height: 20px;
    font-size: 16px;
  }
}

/* フォーム */

.p-form__inner {
  margin-bottom: 40px;
  font-family: var(--font-gochic);
  font-weight: 300;
  max-width: 620px;
  margin-inline: auto;
}

.p-form__inner .p-input__group dt {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.p-form__inner .p-input__group .req {
  font-size: 11px;
  color: var(--color-red);
}

.p-form__inner .p-input__group dd {
  font-size: 14px;
}

.p-contact__from {
  margin-top: 60px;
}

.err {
  color: var(--color-red);
  font-weight: normal;
  font-size: 14px;
  margin-top: 10px;
}

.p-form__inner input[type="email"],
.p-form__inner input[type="text"],
.p-form__inner input[type="number"],
.p-form__inner input[type="tel"],
.p-form__inner input[type="date"],
.p-form__inner textarea {
  width: 100%;
  padding: 10px;
  outline: none;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0.2px solid var(--color-bk);
  background: #fff;
  font-size: 14px;
}

.agree-field {
  text-align: center;
  margin-bottom: 40px;
}

.agree-field .checkbox {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-family: var(--font-gochic);
}

.recaptcha-field div {
  margin: 40px auto;
}

.submit-field {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.submit-field .submit-btn {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--font-mincho);
  background: url(../img/common/submit-bg.svg) no-repeat center center / 100%;
  color: var(--color-wh);
  line-height: 1.75;
  padding: 5px 10px;
  z-index: 2;
  min-width: 206px;
}

.submit-field .reset-btn {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--font-mincho);
  background: url(../img/common/reset-bg.svg) no-repeat center center / 100%;
  color: var(--color-wh);
  line-height: 1.75;
  padding: 5px 10px;
  z-index: 2;
  min-width: 206px;
}

.submit-field .submit-btn::before {
  content: "";
  width: 2px;
  height: calc(100% - 4px);
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  background: var(--color-red);
}

.submit-field .return-btn {
  text-align: center;
  border: 2px solid #666;
  background: #fff;
  color: #666;
  font-weight: 600;
  vertical-align: middle;
  min-width: 180px;
  padding: 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 751px) {
  .p-contact__from.-conf,
  .p-contact__from.-comp {
    padding-top: 80px;
  }

  .p-form__inner {
    display: flex;
    flex-wrap: wrap;
  }

  .p-form__inner .p-input__group {
    width: 100%;
    margin-top: 40px;
  }

  .p-form__inner .p-input__group.-half {
    width: 48%;
  }

  .p-form__inner .p-input__group + .p-input__group {
    margin-left: 4%;
  }

  .p-form__inner .p-input__group:nth-of-type(2n + 1) {
    margin-left: 0;
  }

  .p-form__inner .p-input__group:nth-of-type(-n + 2) {
    margin-top: 0;
  }

  .p-form__inner .p-input__group:last-child {
    margin-left: 0;
  }

  .submit-field .submit-btn {
    transition: 0.3s;
  }

  .submit-field .submit-btn:hover {
    opacity: 0.7;
  }

  .submit-field .return-btn {
    margin-right: 20px;
  }

  .submit-field .return-btn:hover {
    background: #666;
    color: #fff;
  }

  .agree-field .checkbox-input {
    margin-right: 10px;
  }

  .submit-field {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 750px) {
  .p-form__inner .p-input__group + .p-input__group {
    margin-top: 20px;
  }

  .agree-field .checkbox-input {
    margin-bottom: 10px;
  }

  .p-contact__from.-conf,
  .p-contact__from.-comp {
    padding-top: 80px;
  }

  .submit-field .return-btn {
    margin-bottom: 20px;
  }
}

.p-att__block {
  max-width: 620px;
  margin-inline: auto;
  margin-block: 30px 60px;
  font-family: var(--font-gochic);
  font-size: 0.781em;
  line-height: 1.538;
  letter-spacing: 0.04em;
  font-weight: 300;
}

.p-att__block li::before {
  content: "＊";
  display: inline-block;
}

/* 個人情報 */
.p-privacy__box {
  overflow-y: scroll;
  height: 150px;
  background: #fff;
  border: #dcdcdc 1px solid;
  padding: 30px;
  margin-bottom: 40px;
  max-width: 620px;
  margin-inline: auto;
  font-family: var(--font-gochic);
  font-weight: ;
}

.p-privacy__box h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

.p-privacy__box h5 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

.p-privacy__box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0;
}

.p-privacy__box p + h5 {
  margin-top: 30px;
}

@media screen and (max-width: 750px) {
  .p-privacy__box {
    padding: 20px;
    height: 200px;
  }
}

/* 送信完了 */

.p-contact__from.-comp h4 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 40px;
}

.p-contact__from.-comp p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
}

/* ----------------------------------------------
たきものゑびすについて
----------------------------------------------- */
.p-about__title {
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.556;
  letter-spacing: 0.07em;
  text-align: center;
  margin-bottom: 40px;
}

.p-about__shopkeeper {
  display: block;
  margin-left: auto;
  margin-top: 30px;
  max-width: 136px;
}

@media screen and (max-width: 480px) {
  .p-about__shopkeeper {
    max-width: 100px;
  }
  .p-about__title {
    margin-bottom: 20px;
  }
}

/* ----------------------------------------------
チリメン山椒の発祥
----------------------------------------------- */

.p-picture__list {
  display: grid;
  gap: 50px 30px;
  grid-template-columns: repeat(3, 1fr);
}

.c-reg__text + .p-picture__list,
.p-picture__list + .c-reg__text {
  margin-top: 30px;
}

.p-picture__list + .c-title03 {
  margin-top: 50px;
}

.p-sightseeing__wrap h3 {
  text-align: center;
  font-weight: 400;
  font-family: var(--font-gochic);
  color: var(--color-red);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.p-sightseeing__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 40px;
  font-family: var(--font-gochic);
  line-height: 2.125;
  font-weight: 400;
}

.p-sightseeing__list a {
  position: relative;
}

.p-sightseeing__list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-bk);
}

@media screen and (max-width: 480px) {
  .p-picture__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ----------------------------------------------
店舗情報
----------------------------------------------- */

.p-shop__title01 {
  font-size: 1.125em;
  color: var(--color-red);
  font-weight: 600;
  line-height: 1.556;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
  text-align: center;
}

.p-shop__title01 .en{
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.p-shop__title02 {
  font-family: var(--font-gochic);
  font-weight: 400;
  font-size: 0.938em;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  text-align: left;
}

.p-shop__list .p-shop__title01 {
  text-align: left;
}

.p-shop__info {
  font-family: var(--font-gochic);
  font-weight: 300;
  text-align: left;
  line-height: 2.125;
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-feature-settings: "halt";
}

.p-shop__info span {
  font-size: 0.8em;
}

.p-shop__info + .p-shop__title01,
.p-shop__list + .p-shop__title02 {
  margin-top: 60px;
}

.p-shop__info .map i {
  width: 13px;
  height: 13px;
  display: inline-block;
  margin-left: 8px;
  background: url(../img/shop/red-arrow.svg) no-repeat center center/cover;
}

.p-shop__info a {
  position: relative;
  text-decoration: underline;
}

.p-shop__list .p-shop__info {
  line-height: 1.719;
}

/* ----------------------------------------------
ギフトサービス
----------------------------------------------- */

/* サービス一覧
----------------------------------------------- */

.p-giftService__paperBlock {
  padding-block: 50px;
}

.p-giftService__paperBlock .slick-dotted.slick-slider {
  margin-bottom: 5px;
}

.p-giftService__paperBlock .slick-prev {
  left: -50px;
}

.p-giftService__paperBlock .slick-next {
  right: -50px;
}

.p-giftService__paperBlock .slick-dots {
  position: relative;
  bottom: 0;
}

.p-giftService__paperThumnail {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0 40px;
  margin-top: 40px;
}

.l-section__wrap.guide .p-giftService__paperThumnail {
  font-family: var(--font-gochic);
  gap: 0 20px;
  font-size: 14px;
  font-weight: 300;
}

.p-giftService__paperThumnail img {
  margin-bottom: 20px;
}

.p-giftService__paperThumnail h4 {
  font-size: 1em;
  letter-spacing: 0.05em;
  line-height: 1.563;
  font-weight: 600;
  margin-bottom: 10px;
}

.p-giftService__paperThumnail p {
  font-size: 0.875em;
  line-height: 1.786;
  text-align: justify;
  line-break: strict;
  word-wrap: break-word;
  font-feature-settings: "halt";
  font-family: var(--font-gochic);
  font-weight: 300;
}

/* 熨斗紙
----------------------------------------------- */

.p-giftService__wrap02 .c-reg__text + picture {
  display: block;
  margin-top: 30px;
}

.p-giftService__wrap02 + .p-giftService__wrap02 {
  padding-top: 80px;
  margin-top: 0;
}

.p-giftService__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
  margin-block: 40px 96px;
}

.p-giftService__tab li {
  text-align: center;
  position: relative;
  display: inline-block;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-family: var(--font-gochic);
  border-top: 0.5px solid var(--color-bk);
  border-bottom: 0.5px solid var(--color-bk);
  color: var(--color-bk);
  line-height: 35px;
  padding: 0 10px;
  z-index: 2;
  min-width: 165px;
  opacity: 0.25;
  cursor: pointer;
}

.p-giftService__tab li.current {
  opacity: 1;
}

.p-giftService__tab li::after {
  content: "";
  width: 6px;
  height: calc(100% + 1px);
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  background: url(../img/common/btn-corner_bd.svg) no-repeat center center /
    cover;
}

.p-giftService__tab li::before {
  content: "";
  width: 6px;
  height: calc(100% + 1px);
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%) rotate(-180deg);
  background: url(../img/common/btn-corner_bd.svg) no-repeat center center /
    cover;
}

.p-giftService__noshiGrid {
  display: flex;
  justify-content: center;
  gap: 0 36px;
  margin-bottom: 60px;
}

.p-giftService__noshiGrid picture {
  width: 250px;
}

.p-giftService__noshiRight {
  font-family: var(--font-gochic);
  font-weight: 300;
  width: 145px;
  display: flex;
  flex-direction: column;
}

.p-giftService__noshiRight p {
  font-size: 0.75em;
  line-height: 1.667;
  text-align: justify;
  line-break: strict;
  word-wrap: break-word;
  font-feature-settings: "halt";
  margin-top: auto;
}

.p-giftService__noshiRight ol {
  font-size: 0.938em;
  line-height: 1.9;
}

.p-giftService__noshiText + .p-giftService__noshiText {
  margin-top: 55px;
}

.p-giftService__noshiText h4 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-red);
  font-weight: 600;
  margin-bottom: 27px;
  line-height: 1.5;
}

.p-giftService__noshiText .js-noshi-accordion {
  position: relative;
  padding-right: 30px;
  cursor: pointer;
}

.p-giftService__noshiText h4::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--color-red);
  border-radius: 50%;
  display: inline-block;
  margin-right: 13px;
  position: relative;
  top: 2px;
}

.p-giftService__noshiText h4::after {
  content: "";
  border-top: 1px dotted var(--color-bk);
  flex: 1;
  margin-left: 10px;
}

.p-giftService__noshiText ul {
  font-family: var(--font-gochic);
}

.p-giftService__noshiText ul li {
  display: flex;
  align-items: flex-start;
  font-size: 0.938em;
  line-height: 1.867;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.p-giftService__noshiText ul li + li {
  margin-top: 10px;
}

.p-giftService__noshiText ul li::before {
  content: "・";
  display: inline-block;
}

.p-giftService__noshiText ul li b {
  font-weight: 500;
  word-break: keep-all;
  white-space: nowrap;
}

.p-giftService__noshiImage {
  margin-block: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 78px;
}

.p-giftService__noshiImage figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px 0;
  width: 155px;
  font-family: var(--font-gochic);
  font-weight: 500;
}

.acc-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  border: 1px solid var(--color-bk);
}

.acc-arrow::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: solid 1px var(--color-bk);
  border-right: solid 1px var(--color-bk);
  transition: ease 0.4s;
}

.acc-arrow.open::before {
  top: 6px;
  transform: translateX(-50%) rotate(-45deg);
}

.js-noshi-content li {
  transition: opacity 0.3s ease;
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* 非表示時のスタイル */
.js-noshi-content li.is-hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

@media screen and (max-width: 480px) {
  .p-giftService__wrap01 .p-price__list.l-container {
    padding-inline: 0;
  }

  .p-giftService__paperBlock .slick-dotted.slick-slider {
    padding-bottom: 0;
  }

  .p-giftService__paperBlock .slick-prev {
    left: -20px;
  }

  .p-giftService__paperBlock .slick-next {
    right: -20px;
  }

  .p-giftService__paperBlock .slick-prev,
  .p-giftService__paperBlock .slick-next {
    top: 50%;
    z-index: 3;
  }

  .p-giftService__paperThumnail {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 20px;
  }

  .p-giftService__paperThumnail li {
    width: calc((100% / 2) - 15px);
  }

  .p-giftService__paperThumnail h4 {
    font-size: 13px;
  }

  .p-giftService__paperThumnail p {
    font-size: 12px;
  }

  .p-giftService__tab {
    gap: 0 20px;
  }

  .p-giftService__tab li {
    min-width: 120px;
    font-size: 14px;
  }

  .p-giftService__noshiGrid {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }

  .p-giftService__noshiGrid picture {
    width: 80%;
  }

  .p-giftService__noshiRight {
    width: 100%;
  }

  .p-giftService__noshiRight ol {
    display: flex;
    gap: 0 15px;
    font-size: 14px;
  }

  .p-giftService__noshiRight p {
    margin-top: 10px;
  }

  .p-giftService__noshiText ul li {
    font-size: 13px;
    flex-direction: column;
    padding-left: 1em;
    position: relative;
  }

  .p-giftService__noshiText ul li::before {
    position: absolute;
    top: 0;
    left: 0;
  }

  .p-giftService__noshiImage {
    gap: 0 20px;
    font-size: 14px;
  }
}

/* ----------------------------------------------
商品ページ
----------------------------------------------- */

.ec-layoutRole__main {
  margin-top: 30px;
}

.ec-headingTitle {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-weight: lighter!important;
  font-size: 23px;
  line-height: 1.087;
}

.ec-headingTitle span {
  font-family: var(--font-gochic);
  font-weight: 400;
  font-size: 16px;
  display: block;
  padding-top: 20px;
  border-top: 1px solid var(--color-bk);
  margin-top: 20px;
}
.ec-select label {
  font-family: var(--font-gochic);
  font-weight: 300;
  font-size: 13px;
  margin-right: 0;
}

.ec-productRole .ec-productRole__actions .ec-select select,
#page_product_list .ec-select select {
  font-family: var(--font-gochic);
  font-weight: 300;
  border-color: var(--color-bk);
  border-width: 0.2px;
  height: 30px;
  min-width: 100%;
  min-height: 30px;
  padding: 5px 10px;
  line-height: 1.2;
  font-size: 13px;
}

.tooltip-btn {
  margin-left: 0;
}

.ec-zipInput,
.ec-select {
  margin-top: 0;
  margin-bottom: 20px;
}

.ec-productRole .ec-productRole__actions .ec-select.nolist {
  margin-top: 20px;
}

#page_product_detail .ec-input label{
  font-family: var(--font-gochic);
    font-weight: 300;
    font-size: 13px;
    margin-right: 0;
}

.ec-productRole__actions .ec-input label {
  font-family: var(--font-gochic);
  font-weight: 300 !important;
  font-size: 13px !important;
}

.ec-select.nolist div:first-child {
  margin-bottom: 5px;
}

.ec-productRole__profile .ec-productRole__description {
  margin-top: 30px;
  font-family: var(--font-gochic);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.786;
  text-align: justify;
  line-break: strict;
  word-wrap: break-word;
  letter-spacing: 0;
}

.ec-productRole__price-number {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: 30px;
  gap: 0 20px;
}

.ec-numberInput {
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-gochic);
  font-weight: 300;
  color: var(--color-bk);
}

.ec-numberInput span {
  color: var(--color-bk);
}

.ec-productRole {
  margin-top: 30px;
}

.ec-productRole .ec-productRole__priceRegular,
.ec-productRole .ec-productRole__price {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
}

.ec-numberInput input[type="number"] {
  margin-bottom: 0;
  font-size: 16px;
  font-family: var(--font-gochic);
  font-weight: 300;
  padding: 5px 10px;
  line-height: 1;
  letter-spacing: 0;
  min-width: 100px;
  border-radius: 0;
  text-align: center;
  height: auto;
  text-indent: 0.2em;
  min-height: 40px;
}

.ec-productRole .ec-productRole__priceRegular .price01-default,
.ec-productRole .ec-price .ec-price__price {
  font-family: var(--font-gochic);
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}

.ec-productRole .ec-productRole__priceRegularTax,
.ec-productRole .ec-price .ec-price__tax {
  font-family: var(--font-gochic);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

.ec-input textarea,
.ec-halfInput textarea,
.ec-numberInput textarea,
.ec-zipInput textarea,
.ec-telInput textarea,
.ec-select textarea,
.ec-birth textarea {
  min-height: 60px;
}

.ec-productRole__profile .ec-productRole__description table tr + tr,
.ec-Role .ec-productRole__description table tr + tr {
  border-top: 1px dotted var(--color-bk);
}

.ec-productRole__profile .ec-productRole__description table,
.ec-Role .ec-productRole__description table {
  border-top: 0.2px solid var(--color-bk);
  border-bottom: 0.2px solid var(--color-bk);
}

.ec-productRole__profile .ec-productRole__description table th:after,
.ec-Role .ec-productRole__description table th:after {
  content: "";
  width: 0.2px;
  height: 100%;
  background: var(--color-bk);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ec-productRole__profile .ec-productRole__description table th,
.ec-Role .ec-productRole__description table th {
  min-width: 90px;
  padding: 0;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.538;
  position: relative;
}

.ec-productRole__profile .ec-productRole__description table td,
.ec-Role .ec-productRole__description table td {
  padding: 0 10px 0 20px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.538;
}

.ec-productRole__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 20px;
}

.ec-blockBtn--action {
  background: var(--color-red);
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: 0.3s;
  padding: 10px 0;
  line-height: 1;
  display: block;
  box-sizing: border-box;
  height: auto;
  font-family: var(--font-mincho);
  min-width: 206px;
}

.ec-blockBtn--cancel {
  background: #999;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: 0.3s;
  padding: 10px 0;
  line-height: 1;
  display: block;
  box-sizing: border-box;
  height: auto;
  font-family: var(--font-mincho);
  min-width: 206px;
}

.ec-off4Grid .ec-off4Grid__cell {
  width: auto;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px 0;
}

.ec-off4Grid {
  margin-inline: auto;
}

.ec-blockBtn--action.add-favorite {
  background: var(--color-bk);
}

.ec-blockBtn--action.add-favorite.c-btn__primary::before,
.ec-blockBtn--action.add-favorite.c-btn__primary::after {
  background-image: url(../img/common/btn-corner_bk.svg);
}

.ec-blockBtn--cancel.c-btn__primary::before,
.ec-blockBtn--cancel.c-btn__primary::after {
  background-image: url(../img/common/btn-corner_gray.svg);
}

.ec-blockBtn--action.add-cart:hover {
  background: var(--color-red);
}

.ec-blockBtn--action.add-favorite:hover {
  background: var(--color-bk);
}

.ec-blockBtn--cancel:hover {
  background: #999;
  color: var(--color-wh);
}

.ec-sliderItemRole .slick-list {
  height: calc(430vw / 13);
  max-height: 430px;
}

.ec-sliderItemRole .slick-initialized .slick-slide {
  height: 100%;
}

.ec-sliderItemRole .slick-track {
  height: 100%;
}

.ec-productRole img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media print, screen and (min-width: 751px) {
  .ec-grid2 .ec-grid2__cell {
    width: 49.75%;
  }

  .ec-productRole .ec-productRole__profile {
    margin-left: 6em;
  }

  .ec-productRole .ec-productRole__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
    /* margin-top: 30px; */
    position: fixed;
    right: 0;
    bottom: 0;
    padding: 20px;
    z-index: 999999;
    width: 430px;
    margin-bottom: 0;
  }

  .ec-productRole .ec-productRole__btn .ec-blockBtn--action {
    min-width: calc(50% - 15px);
    width: calc(50% - 15px);
  }

  .ec-blockBtn--action.c-btn__primary:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    opacity: 0.7;
  }
}
@media screen and (max-width: 750px) {
  .ec-sliderItemRole .slick-list {
    height: calc(230vw / 3.7);
  }

  .ec-sliderItemRole .item_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .ec-productRole .ec-productRole__priceRegularTax,
  .ec-productRole .ec-price .ec-price__tax {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .ec-productRole .ec-productRole__btn {
    width: 100%;
    /*margin-top: 20px;
    margin-bottom: 30px;*/
    position: fixed;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    padding-block: 20px;
    z-index: 999999;
    margin-bottom: 0;
  }

  .ec-productRole .ec-productRole__btn .ec-blockBtn--action {
    width: calc((100% / 2) - 40px);
    min-width: auto;
  }

  .ec-productRole .ec-grid2__cell + .ec-grid2__cell {
    border-top: none;
  }
}

/* ----------------------------------------------
よくあるご質問
----------------------------------------------- */

.p-faq__wrap {
  margin-top: 60px;
}

.p-faq__categoryNav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-inline: auto;
  gap: 30px 30px;
  align-items: center;
  justify-content: flex-start;
  max-width: 690px;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.p-faq__listItem {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.p-faq__categoryNav .c-btn__primary {
  width: 210px;
  min-width: 100%;
  max-width: 100%;
}

.p-faq__guestion.js-accBtn i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-bk);
}

.p-faq__guestion.js-accBtn i::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: solid 1px var(--color-bk);
  border-right: solid 1px var(--color-bk);
  transition: ease 0.4s;
}

.p-faq__guestion.js-accBtn.is-active i::before {
  top: 12px;
  transform: translateX(-50%) rotate(-45deg);
}

.p-faq__guestion {
  font-family: var(--font-gochic);
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0.03em;
  line-height: 1.308;
  position: relative;
  gap: 0 20px;
  background: var(--color-wh);
  padding-left: 65px;
  padding-right: 40px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-faq__guestion::after {
  content: "";
  background: var(--color-bk);
  width: calc(100% - 110px);
  height: 0.2px;
  right: 45px;
  bottom: 0;
  position: absolute;
}

.p-faq__guestion .number {
  background: var(--color-red);
  color: var(--color-wh);
  padding: 5px;
  position: absolute;
  top: 0;
  left: 12px;
  line-height: 15px;
  height: 30px;
}

.p-faq__answer {
  font-family: var(--font-gochic);
  font-weight: 300;
  font-size: 1em;
  letter-spacing: 0.03em;
  line-height: 1.7;
  gap: 0 20px;
  position: relative;
  padding-left: 65px;
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-feature-settings: "halt";
  padding-bottom: 20px;
}

.p-faq__answer .en {
  position: absolute;
  top: 0;
  left: 25px;
  color: var(--color-red);
  font-weight: 400;
}

.p-faq__answer a {
  position: relative;
}

.p-faq__answer a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-bk);
  position: absolute;
  left: 0;
  bottom: -3px;
}

.p-faq__answer .credit-icon {
  max-width: 350px;
}

.p-faq__answer ul {
  list-style-type: disc;
  padding-left: 1em;
  margin-left: 1em;
}

.p-faq__answer div {
  margin-top: 20px;
}

.p-faq__list + p {
  margin-top: 60px;
}

@media screen and (max-width: 750px) {
  .p-faq__categoryNav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    max-width: 650px;
    margin-top: 40px;
    margin-inline: auto;
  }

  .p-faq__categoryNav li {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-faq__categoryNav .c-btn__primary {
    width: 100%;
    min-width: 100%;
    font-size: 12px;
    padding: 0 5px;
    letter-spacing: 0.01em;
    line-height: 34px;
  }

  .p-faq__categoryNav .c-btn__primary::before {
    width: 3.8px;
    left: -3.6px;
    background: url(../img/common/btn-corner.svg) no-repeat center center /
      contain;
  }

  .p-faq__categoryNav .c-btn__primary::after {
    width: 3.8px;
    right: -3.5px;
    background: url(../img/common/btn-corner.svg) no-repeat center center /
      contain;
  }

  .p-faq__answer,
  .p-faq__guestion {
    font-size: 13px;
    padding-left: 45px;
  }

  .p-faq__guestion::after {
    width: calc(100% - 90px);
  }

  .p-faq__guestion .number {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 30px;
  }

  .p-faq__answer .en {
    left: 10px;
  }
}

/* ----------------------------------------------
ショッピングガイド
----------------------------------------------- */

.p-guide__list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  font-family: var(--font-gochic);
}

.p-guide__listItem {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

.p-guide__listItem dt {
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.p-guide__listItem dt::before {
  content: "●";
  color: var(--color-red);
  display: inline-block;
  padding-right: 5px;
}

.p-guide__listItem dd {
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-feature-settings: "halt";
}

.p-guide__listItem dd span {
  font-size: 14px;
}

.p-guide__listItem dd.figure-grid {
  display: flex;
  justify-content: center;
  gap: 40px calc(140vw / 13);
}

.p-guide__listItem dd.figure-grid figure {
  width: 260px;
  margin: 0;
}

.p-guide__listItem figure {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  max-width: 650px;
  margin-inline: auto;
}

.p-guide__listItem figure + figure {
  margin-top: 40px;
}

.p-guide__listItem figure figcaption {
  font-weight: 400;
  letter-spacing: 0.1em;
}

.p-guide__listItem figure figcaption span {
  font-weight: 400;
  padding-left: 10px;
}

.l-section__wrap.guide p {
  font-family: var(--font-gochic);
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-weight: 300;
}

.l-section__wrap.guide ul.disc {
  padding-left: 1em;
  list-style-type: disc;
  font-family: var(--font-gochic);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}

.l-section__wrap.guide ul.disc span {
  font-size: 14px;
}

.l-section__wrap.guide ul + div {
  margin-top: 30px;
}

.l-section__wrap.guide p + ul,
.l-section__wrap.guide p + div,
.l-section__wrap.guide figure + ul {
  margin-top: 30px;
}

.l-section__wrap.guide p + h3,
.l-section__wrap.guide ul + h3,
.l-section__wrap.guide div + h3 {
  margin-top: 50px;
}

.l-section__wrap.guide .credit-icon {
  max-width: 340px;
  display: block;
}

.l-section__wrap.guide .credit-icon02 {
  max-width: 140px;
  display: inline-block;
  padding-left: 5px;
}

.c-table__primary.guide tbody th {
  width: 140px;
  text-align: left;
}

.c-table__primary.guide02 tbody th {
  width: 100px;
  text-align: left;
}

.p-guide__inner {
  max-width: 750px;
  margin-inline: auto;
}

.p-guide__inner h4 {
  font-family: var(--font-gochic);
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.guide .table01 tbody th {
  width: 70px;
}

@media screen and (max-width: 768px) {
  .p-guide__list {
    font-size: 14px;
  }

  .l-section__wrap.guide ul.disc {
    font-size: 14px;
  }

  .l-section__wrap.guide ul.disc span {
    font-size: 12px;
  }

  .c-table__primary.guide tbody th {
    width: 120px;
  }
  .l-section__wrap.guide p {
    font-size: 14px;
  }

  .p-guide__listItem dd.figure-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px 0;
  }

  .p-guide__listItem dd.figure-grid figure {
    width: 100%;
  }

  .p-guide__listItem dd.figure-grid figure img {
    width: 60%;
    margin-inline: auto;
  }

  .c-table__primary.guide02 tbody th,
  .c-table__primary.guide02 tbody td {
    width: 100%;
    display: block;
  }

  .c-table__primary.guide02 tbody td {
    font-size: 12px;
  }

  .p-guide__inner h4 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .guide .table01 tbody th {
    width: 55px;
  }
}

/* ----------------------------------------------
プライバシーポリシー
----------------------------------------------- */

.p-privacy__list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  font-family: var(--font-gochic);
}

.p-privacy__listItem {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

.p-privacy__title {
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.p-privacy__text {
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.03em;
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-feature-settings: "halt";
}

@media screen and (max-width: 750px) {
  .p-privacy__list {
    font-size: 14px;
  }
}

/* ----------------------------------------------
お問い合わせ
----------------------------------------------- */

.ec-contactHeader + .ec-contactHeader {
  margin-top: 50px;
}

.ec-contactHeader h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.ec-contactHeader .tel-number {
  margin-top: 20px;
}

.ec-contactHeader .tel-number strong {
  font-family: "Noto Serif JP", serif;
}

.ec-contactHeader .tel-number strong i {
  position: relative;
  top: 3px;
}

.ec-contactHeader .tel-number span {
  vertical-align: -0.1em;
}

.ec-contactHeader h2::before {
  content: "●";
  color: var(--color-red);
  display: inline-block;
  padding-right: 5px;
}

.ec-para-normal {
  font-size: 16px;
  font-family: var(--font-gochic);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.ec-para-normal span {
  font-size: 14px;
}

.ec-blockBtn--action {
  background: var(--color-red);
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: 0.3s;
  padding: 10px 0;
  line-height: 1;
  display: block;
  box-sizing: border-box;
  height: auto;
  font-family: var(--font-mincho);
}

.p-contact__form {
  font-family: var(--font-gochic);
}

.ec-borderedDefs dt .ec-label {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.ec-off1Grid .ec-off1Grid__cell {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-contact__form .ec-select {
  margin-bottom: 0;
}

.ec-input input,
.ec-halfInput input,
.ec-numberInput input,
.ec-zipInput input,
.ec-telInput input,
.ec-select input,
.ec-birth input {
  width: 100%;
  padding: 10px;
  outline: none;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0.2px solid var(--color-bk);
  background: #fff;
  font-size: 14px;
  min-height: auto;
}

.ec-input select,
.ec-halfInput select,
.ec-numberInput select,
.ec-zipInput select,
.ec-telInput select,
.ec-select select{
  width: 100%;
  padding: 10px;
  outline: none;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0.2px solid var(--color-bk);
  background: #fff;
  font-size: 14px;
  min-height: auto;
}

.ec-birth select{
  padding: 5px 10px;
  outline: none;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0.2px solid var(--color-bk);
  background: #fff;
  font-size: 14px;
  min-height: auto;
}

.ec-borderedDefs dl + dl {
  margin-top: 40px;
}

.ec-required {
  font-size: 12px;
  color: var(--color-red);
  vertical-align: middle;
  margin-left: 0;
}

.ec-required::before {
  content: "（";
  display: inline-block;
}

.ec-required::after {
  content: "）";
  display: inline-block;
}

.p-contact__form dd p {
  font-size: 12px;
  letter-spacing: 0.03em;
  margin-top: 10px;
}

.ec-halfInput input[type="text"] {
  width: 48%;
  margin-left: 2.5%;
}

.ec-telInput input {
  min-width: 270px;
  width: 48%;
  font-family: var(--font-gochic);
}

.ec-input input {
  min-width: 270px;
  width: 48%;
  font-family: var(--font-gochic);
}

.ec-select select {
  min-width: 270px;
  width: 48%;
  min-height: 40px;
  font-family: var(--font-gochic);
  line-height: 1;
}

.select-arr:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 8px;
  right: 10px;
  bottom: auto;
  transform: rotate(135deg);
  border: 1px solid var(--color-bk);
  border-left: 0;
  border-bottom: 0;
}

.ec-halfInput input[type="text"] {
  font-family: var(--font-gochic);
}

.ec-productRole__actions .ec-input textarea {
  min-height: 60px;
}

.ec-input textarea {
  min-height: 200px;
}

.ec-RegisterRole__actions {
  margin-top: 80px;
}

.confirm .ec-borderedDefs dd {
  line-height: 1.6;
  font-size: 14px;
}

.tooltip-btn {
  top: 2px;
}

@media screen and (min-width: 481px) {
  .ec-borderedDefs dl {
    align-items: flex-start;
    -webkit-align-items: flex-start;
  }

  .ec-borderedDefs dd {
    line-height: 1;
  }

  .ec-borderedDefs dt {
    padding-top: 13px;
  }

  .p-faq__wrap.confirm .ec-borderedDefs dt {
    padding-top: 0;
    line-height: 1.3;
  }

  .p-faq__wrap.confirm .ec-borderedDefs dd {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.06em;
  }
}

@media screen and (max-width: 480px) {
  .ec-halfInput input[type="text"] {
    width: 100%;
    margin-left: 0;
  }

  .ec-halfInput input + input {
    margin-top: 10px;
  }

  .ec-telInput input {
    width: 100%;
    min-width: 100%;
  }

  .ec-input input {
    width: 100%;
    min-width: 100%;
  }

  .ec-select select {
    width: 100%;
    min-width: 100%;
  }
}
