@charset "UTF-8";
/* カラー */
/* テーマカラー */
/* テキストカラー */
/* ボーダーカラー */
/* フォント */
/* スペーサー */
/* コンテンツ・ページ幅 */
/* ブレークポイント */
/*========================================
  ## レスポンシブ対応（PC値とスマホ値を明示指定）

  [ 引数一覧 ]
  $property: CSSプロパティ名（例: font-size, margin-bottom）
  $pc-value: PC時の値（px単位）
  $sp-value: スマホ時の値（px単位、必須）

  [ 使い方 ]
  @include r(font-size, 25px, 18px);
  @include r(margin-bottom, 50px, 32px);

  PC～スマホ間は自動的にvw変換されます。
========================================*/
.c-page-content {
  width: 100%;
  padding: 160px 0 120px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .c-page-content {
    padding: 120px 0 80px;
  }
}

.p-breadcrumb-paths {
  display: none;
}
.p-breadcrumb-paths:last-of-type {
  display: block;
}

.p-product-detail {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-product-detail {
    margin-top: 20px;
  }
}

.p-product-detail__inner {
  max-width: 1280px;
  padding-inline: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-product-detail__inner {
    max-width: none;
    padding-inline: 20px;
    flex-flow: column;
    gap: 40px;
  }
}

.p-product-detail__gallery {
  width: 46.6666666667%;
}
@media (max-width: 768px) {
  .p-product-detail__gallery {
    width: 100%;
  }
}

.p-product-detail__main-swiper {
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .p-product-detail__main-swiper {
    margin-inline: -20px;
    padding-inline: 20px;
  }
}

.p-product-detail__main-image-wrap {
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1;
  background: #ededed;
}

.p-product-detail__main-image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-product-detail__thumb-slide {
  height: auto;
}

.p-product-detail__thumb-button {
  width: 100%;
  border: 1px solid transparent;
  background: #f4f4f4;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.p-product-detail__thumb-image {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-product-detail__thumb-slide.swiper-slide-thumb-active .p-product-detail__thumb-button {
  border-color: #767f9e;
}

.p-product-detail__arrow {
  display: none;
}
@media (max-width: 768px) {
  .p-product-detail__arrow {
    display: block;
    top: 50%;
  }
}

@media (max-width: 768px) {
  .p-product-detail__arrow--prev {
    left: 10px;
  }
}

@media (max-width: 768px) {
  .p-product-detail__arrow--next {
    right: 10px;
  }
}

.p-product-detail__pagination {
  display: none;
}
@media (max-width: 768px) {
  .p-product-detail__pagination {
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 10px;
    border-radius: 100px;
    background: #e5e5e5;
    position: relative;
  }
}

.p-product-detail__pagination .swiper-pagination-progressbar-fill {
  background: #989898;
  height: 3px;
  border-radius: 100px;
}

.p-product-detail__info {
  width: 48.3333333333%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  .p-product-detail__info {
    width: 100%;
  }
}

.p-product-detail__title {
  margin: 0;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}

.p-product-detail__price {
  margin: 0;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
}
@media (max-width: 768px) {
  .p-product-detail__price {
    font-size: 18px;
  }
}

.p-product-detail__review {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.p-product-detail__stars,
.p-product-detail__review-link {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.p-product-detail__review-link {
  line-height: 1.5;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}
.p-product-detail__review-link:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .p-product-detail__review-link {
    font-size: 14px;
  }
}

.p-product-detail__field {
  margin-top: 0;
}
@media (max-width: 768px) {
  .p-product-detail__field {
    width: 100%;
  }
}

.p-product-detail__label {
  margin: 0;
  display: block;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 768px) {
  .p-product-detail__label {
    font-size: 14px;
  }
}

.p-product-detail__quantity {
  margin-top: 8px;
  width: 200px;
  height: 50px;
  border: 1px solid #000000;
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-product-detail__quantity {
    width: 221px;
    height: 50px;
    grid-template-columns: 40px 1fr 40px;
  }
}

.p-product-detail__qty-button {
  width: 100%;
  height: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.p-product-detail__qty-button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  background: #000000;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .p-product-detail__qty-button::before {
    width: 20px;
  }
}

.p-product-detail__qty-button--plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 10px;
  background: #000000;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .p-product-detail__qty-button--plus::after {
    height: 20px;
  }
}

input.p-product-detail__qty-value {
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  height: 48px;
  width: 100%;
  padding: 0;
  border-radius: 0;
  border: none;
  /* Chrome / Safari / Edge: スピナー非表示 */
  /* Firefox: スピナー非表示 */
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
input.p-product-detail__qty-value::-webkit-outer-spin-button, input.p-product-detail__qty-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media (max-width: 768px) {
  input.p-product-detail__qty-value {
    font-size: 20px;
    height: 46px;
  }
}
input.p-product-detail__qty-value:focus {
  outline: none;
}

.p-product-detail__select-wrap {
  margin-top: 8px;
  width: 100%;
  max-width: 380px;
  position: relative;
}

.makeshop-option-label {
  margin: 0;
  display: block;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 768px) {
  .makeshop-option-label {
    font-size: 14px;
  }
}

.makeshop-option-select {
  position: relative;
  width: 100%;
  min-height: 50px;
  border: 1px solid #000000;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ffffff;
  padding: 0 40px 0 18px;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 768px) {
  .makeshop-option-select {
    min-height: 50px;
    height: 50px;
    padding: 0 34px 0 19px;
    font-size: 14px;
  }
}
.makeshop-option-select::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
@media (max-width: 768px) {
  .makeshop-option-select::after {
    right: 16px;
    width: 8px;
    height: 8px;
  }
}

.p-product-detail__add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  width: 100%;
  min-height: 80px;
  border: 1px solid #001558;
  border-bottom: 1px solid #767f9e;
  background: #001558;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-product-detail__add-cart:hover {
  background-color: #ffffff;
  color: #001558;
}
@media (max-width: 768px) {
  .p-product-detail__add-cart {
    min-height: 60px;
  }
}

.p-product-detail__meta {
  width: 100%;
  padding: 0 0 30px;
  border-bottom: 1px solid #d0d0d0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .p-product-detail__meta {
    gap: 18px;
    padding: 0 0 20px;
    border-bottom-color: #dcdcdc;
  }
}
.p-product-detail__meta div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .p-product-detail__meta div {
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.p-product-detail__meta h3 {
  margin: 0;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 768px) {
  .p-product-detail__meta h3 {
    font-size: 14px;
  }
}
.p-product-detail__meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-product-detail__meta ul {
    gap: 10px;
  }
}
.p-product-detail__meta ul li {
  margin: 0;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #767f9e;
}
@media (max-width: 768px) {
  .p-product-detail__meta ul li {
    font-size: 14px;
  }
}

.p-product-detail__note {
  color: #000000;
}
@media (max-width: 768px) {
  .p-product-detail__note {
    font-size: 13px;
  }
}

.p-product-detail__notice {
  width: 100%;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 0 0;
}
@media (max-width: 768px) {
  .p-product-detail__notice {
    padding: 20px 0 0;
  }
}

.p-product-detail__notice p {
  margin: 0;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 768px) {
  .p-product-detail__notice p {
    font-size: 13px;
  }
}

.p-product-detail__contact-link {
  margin-top: 0;
  width: 100%;
  border-top: 1px solid #d0d0d0;
  padding-top: 30px;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}
.p-product-detail__contact-link:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .p-product-detail__contact-link {
    font-size: 14px;
    padding-top: 20px;
  }
}

.p-product-detail__share {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.p-product-detail__share-btn {
  min-height: 24px;
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  padding: 4px 10px;
  cursor: pointer;
}

.p-product-detail__share-btn--line {
  background: #14b45a;
  border-color: #14b45a;
}

.p-product-detail__share-btn--facebook {
  background: #2774d8;
  border-color: #2774d8;
}

#productexplain {
  margin-top: 120px;
}
@media (max-width: 768px) {
  #productexplain {
    margin-top: 80px;
  }
}

.p-product-explain__panel,
.p-product-related-items {
  scroll-margin-top: 120px;
}
@media (max-width: 768px) {
  .p-product-explain__panel,
.p-product-related-items {
    scroll-margin-top: 100px;
  }
}

.p-product-explain__tabs {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .p-product-explain__tabs {
    width: 100%;
    justify-content: flex-start;
    gap: 9px;
    padding: 0 20px 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .p-product-explain__tabs::-webkit-scrollbar {
    display: none;
  }
}

.p-product-explain__tab {
  min-width: 230px;
  min-height: 50px;
  box-sizing: border-box;
  padding: 10px 8px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #767f9e;
  background: #ffffff;
  text-decoration: none;
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media (max-width: 768px) {
  .p-product-explain__tab {
    min-width: auto;
    min-height: 40px;
    padding: 15px 8px;
    font-size: 13px;
    line-height: 1.5;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.p-product-explain__tab:hover {
  background: #001558;
  color: #ffffff;
  opacity: 1;
}

.p-product-explain__panel {
  max-width: 840px;
  padding-inline: 20px;
  margin: 120px auto;
}
@media (max-width: 768px) {
  .p-product-explain__panel {
    margin: 100px auto;
  }
}

.p-product-explain__panel-text {
  margin: 0;
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}

.c-productexplain_heading {
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 60px;
  color: #000000;
}
@media (max-width: 768px) {
  .c-productexplain_heading {
    font-size: 30px;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  #product-detail {
    margin-top: 40px;
  }
}
#product-detail article + article {
  margin-top: 100px;
}
@media (max-width: 768px) {
  #product-detail article + article {
    margin-top: 60px;
  }
}
#product-detail figure {
  margin: 0;
}
#product-detail img {
  width: 100%;
  height: auto;
  display: block;
}
#product-detail h3 {
  margin: 40px 0 0;
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 768px) {
  #product-detail h3 {
    margin-top: 30px;
    font-size: 22px;
  }
}
#product-detail article p {
  margin: 30px 0 0;
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 768px) {
  #product-detail article p {
    margin-top: 20px;
  }
}
#product-detail > div {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  #product-detail > div {
    margin-top: 60px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px;
  }
}

#product-usage img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
#product-usage h4 {
  margin: 40px 0 0;
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 768px) {
  #product-usage h4 {
    margin-top: 30px;
    font-size: 22px;
  }
}
#product-usage article > p {
  margin: 30px 0 0;
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 768px) {
  #product-usage article > p {
    margin-top: 20px;
  }
}
#product-usage > div {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 100px;
  gap: 30px;
  background: url(../img/pdetail_bg-gray.png) repeat top left/contain;
}
@media (max-width: 768px) {
  #product-usage > div {
    margin-top: 60px;
    padding: 40px 20px;
    gap: 30px;
  }
}
#product-usage > div > p {
  margin: 0;
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #000000;
}
#product-usage > div ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
#product-usage > div li {
  min-height: 40px;
  padding: 14px 18px;
  border-radius: 40px;
  background: #ffffff;
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#product-variation ul {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  #product-variation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 10px;
  }
}
#product-variation li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#product-variation figure {
  margin: 0;
}
#product-variation img {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
#product-variation p {
  margin: 25px 0 0;
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}

@media (max-width: 768px) {
  #product-spec {
    padding-top: 20px;
  }
}
#product-spec table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
#product-spec tbody tr {
  border-bottom: 1px solid #989898;
}
#product-spec th,
#product-spec td {
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  vertical-align: top;
  padding: 30px 20px;
}
@media (max-width: 768px) {
  #product-spec th,
#product-spec td {
    padding: 20px 16px;
  }
}
#product-spec th {
  width: 168px;
  background: #d4d7dc;
  text-align: left;
}
@media (max-width: 768px) {
  #product-spec th {
    width: 100px;
  }
}
#product-spec td {
  width: auto;
  background: #ffffff;
}
#product-spec td ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#product-spec td ul li {
  padding: 20px 0;
  border-bottom: 1px solid #989898;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
@media (max-width: 768px) {
  #product-spec td ul li {
    padding: 15px 0;
    gap: 8px;
  }
}
#product-spec td ul li span {
  min-width: 100px;
}
#product-spec td ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#product-spec td ul li span:last-child {
  width: auto;
  text-align: left;
  flex-shrink: 0;
}

.p-product-spec__link {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .p-product-spec__link {
    margin-top: 40px;
  }
}

.p-product-spec__link-text {
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  text-decoration: none;
  padding-bottom: 14px;
  border-bottom: 1px solid #000000;
  transition: opacity 0.3s ease;
}
.p-product-spec__link-text:hover {
  opacity: 0.7;
}

.p-product-related-items {
  padding: 120px 40px;
  background: url(../img/store-bg.png) repeat top left/contain;
}
@media (max-width: 768px) {
  .p-product-related-items {
    padding: 100px 20px;
  }
}

.p-product-related-items__heading {
  color: #ffffff;
}

.p-product-related-items__list {
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 210px);
  justify-content: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .p-product-related-items__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 15px;
  }
}

.p-product-related-items .c-product-card__name,
.p-product-related-items .c-product-card__price {
  width: 100%;
  color: #ffffff;
}

/*==================================
  とうしょう窯について - Section
==================================*/
.p-about-toshogama {
  width: 100%;
  background-image: url(../img/bg_txt.png);
  background-size: 100% auto;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 150px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .p-about-toshogama {
    padding: 100px 0;
    background-size: 120% auto;
    background-attachment: scroll;
  }
}

.p-about-toshogama__inner {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .p-about-toshogama__inner {
    max-width: none;
    position: relative;
  }
}

.p-about-toshogama__hero {
  display: grid;
  grid-template-columns: 182px minmax(0, 554px);
  justify-content: center;
  align-items: start;
  -moz-column-gap: 152px;
       column-gap: 152px;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .p-about-toshogama__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 273px);
    -moz-column-gap: 0;
         column-gap: 0;
    align-items: center;
    z-index: 1;
    padding-top: 200px;
  }
}

.p-about-toshogama__logo-catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 96px;
}
@media (max-width: 768px) {
  .p-about-toshogama__logo-catch {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    justify-self: flex-end;
    margin-right: -10px;
  }
}

.p-about-toshogama__logo-wrap {
  width: 182px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-about-toshogama__logo-wrap {
    width: 160px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding-top: 0;
  }
}

.p-about-toshogama__logo {
  width: 100%;
  aspect-ratio: 182/168;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-toshogama__catch {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-feature-settings: "vert" on;
}
@media (max-width: 768px) {
  .p-about-toshogama__catch {
    margin: 0;
    font-size: 20px;
    display: block;
    z-index: 1;
  }
}

.p-about-toshogama__hero-image-wrap {
  width: 554px;
  aspect-ratio: 554/638;
  overflow: hidden;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .p-about-toshogama__hero-image-wrap {
    width: 273px;
    aspect-ratio: 273/315;
    margin-top: 0;
    justify-self: end;
  }
}

.p-about-toshogama__hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-toshogama__lead {
  margin-top: 76px;
  margin-left: 100px;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .p-about-toshogama__lead {
    margin: 40px auto 0;
    padding: 0 20px;
    z-index: 1;
  }
}

.p-about-toshogama__lead-text {
  margin: 0;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-about-toshogama__lead-text {
    font-size: 16px;
  }
}

.p-about-toshogama__detail {
  margin-top: 68px;
  display: flex;
  gap: 100px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-about-toshogama__detail {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
  }
}

.p-about-toshogama__gallery-wrap {
  width: 33.2142857143%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: 200px;
}
@media (max-width: 768px) {
  .p-about-toshogama__gallery-wrap {
    width: min(205px, 100% - 170px);
    margin-top: 0;
    margin-left: auto;
    margin-right: 20px;
    order: 2;
  }
}

.p-about-toshogama__gallery-image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-toshogama__content-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-about-toshogama__content-wrap {
    width: 100%;
    order: 1;
  }
}

.p-about-toshogama__process-image {
  width: 71.5935334873%;
  max-width: 100%;
  aspect-ratio: 620/356;
  margin: 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
}
@media (max-width: 768px) {
  .p-about-toshogama__process-image {
    width: min(240px, 100% - 135px);
    aspect-ratio: 240/138;
    margin-right: 0;
  }
}

.p-about-toshogama__detail-text {
  max-width: 556px;
  margin: 133px 0 0;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-about-toshogama__detail-text {
    max-width: none;
    margin: 60px 0 0;
    padding: 0 20px;
  }
}

.p-about-toshogama__cta {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-about-toshogama__cta {
    margin-top: 32px;
    margin-left: auto;
    margin-right: 20px;
  }
}

.p-about-toshogama__bottom-image {
  width: 427px;
  max-width: 100%;
  aspect-ratio: 427/285;
  margin: 158px 0 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .p-about-toshogama__bottom-image {
    width: min(224px, 100% - 150px);
    aspect-ratio: 205/278;
    margin-top: 80px;
    margin-right: auto;
    margin-left: 20px;
  }
}

.p-product-about {
  margin-top: 120px;
  padding: 0 0 110px;
  background: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-product-about {
    margin-top: 100px;
    padding: 0 0 80px;
  }
}

.p-product-about__inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .p-product-about__inner {
    max-width: 375px;
  }
}

.p-product-about__overlay {
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 95px;
  font-family: "Aboreto", sans-serif;
  font-size: 128px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #f3f3f3;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-product-about__overlay {
    top: 172px;
    font-size: 54px;
    line-height: 1;
  }
}

.p-product-about__detail {
  margin-top: 60px;
  display: flex;
  gap: 140px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-product-about__detail {
    margin-top: 40px;
    position: relative;
    flex-direction: column-reverse;
    gap: 30px;
    padding-inline: 20px;
  }
}

.p-product-about__detail figure {
  margin-top: 100px;
  width: 25%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-product-about__detail figure {
    margin-top: 0;
    margin-left: -20px;
    width: 74.6268656716%;
  }
}

.p-product-about__detail figure img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-product-about__detail > div {
  width: 48.6111111111%;
}
@media (max-width: 768px) {
  .p-product-about__detail > div {
    width: 100%;
  }
}
.p-product-about__detail > div p {
  margin: 0;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}

.p-product-about__detail > div p + p {
  margin-top: 19px;
}
@media (max-width: 768px) {
  .p-product-about__detail > div p + p {
    margin-top: 30px;
  }
}

.p-product-about__cta {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .p-product-about__cta {
    text-align: right;
  }
}

.p-product-review {
  padding: 120px 40px;
  background: url(../img/pdetail_bg-gray.png) repeat top left/300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .p-product-review {
    padding: 80px 20px;
    gap: 40px;
  }
}

.p-product-review__inner {
  width: min(900px, 100%);
}

.p-product-review__heading {
  margin: 0;
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: #000000;
}

.p-product-review__item {
  margin-top: 60px;
}

.p-product-review__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-product-review__meta {
    flex-wrap: wrap;
  }
}

.p-product-review__rating,
.p-product-review__name,
.p-product-review__date,
.p-product-review__text,
.p-product-review__write {
  margin: 0;
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}

.p-product-review__rating {
  line-height: 1;
}

.p-product-review__name,
.p-product-review__date,
.p-product-review__text,
.p-product-review__write {
  line-height: 1.5;
}

.p-product-review__date {
  margin-left: auto;
}
@media (max-width: 768px) {
  .p-product-review__date {
    width: 100%;
    margin: 0;
  }
}

.p-product-review__text {
  margin-top: 20px;
}

.p-product-review__write {
  margin: 40px auto 0;
  width: 180px;
  min-height: 40px;
  box-sizing: border-box;
  padding: 10px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #767f9e;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-product-review__write:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .p-product-review__write {
    margin-top: 50px;
  }
}

.l-body--member {
  /* 大口注文（Figma: btn / #BB7070） */
}
.l-body--member .p-product-detail__add-cart {
  background-color: #6B0000;
}
.l-body--member .p-product-detail__add-cart:hover {
  color: #fff;
}
.l-body--member .p-product-detail__bulk-order {
  width: 100%;
  max-width: 380px;
}
.l-body--member .p-product-detail__bulk-order-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  isolation: isolate;
  box-sizing: border-box;
  width: 100%;
  min-height: 53px;
  padding: 0 30px;
  background: #bb7070;
  color: #ffffff;
  text-decoration: none;
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  transition: opacity 0.3s ease;
}
@supports (leading-trim: both) {
  .l-body--member .p-product-detail__bulk-order-btn {
    leading-trim: both;
    text-edge: cap;
  }
}
.l-body--member .p-product-detail__bulk-order-btn:hover {
  opacity: 0.92;
}
.l-body--member .p-product-detail__bulk-order-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .l-body--member .p-product-detail__bulk-order-btn {
    min-height: 48px;
    padding: 0 20px;
    font-size: 16px;
    gap: 12px;
  }
}
.l-body--member .p-product-detail__bulk-order-text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 270px;
  text-align: center;
}
.l-body--member .p-product-detail__bulk-order-line {
  flex: none;
  width: 36px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.l-body--member .p-product-explain__tab {
  border-color: #6B0000;
}
.l-body--member .p-product-explain__tab:hover {
  background-color: #6B0000;
  color: #fff;
}
.l-body--member #product-spec th {
  background: #D7B7B7;
}
.l-body--member .p-product-related-items {
  background-image: url("../img/store-bg-member.png");
}
.l-body--member .p-product-review__write {
  border-bottom-color: #6B0000;
}
/*# sourceMappingURL=product.css.map */