@charset "UTF-8";
/* ==========================================
  商品ページ
 ============================================ */
/** -------------------- 商品一覧ページ -------------------- **/
/* カテゴリヘッダー */
.dfk-productList-header {
  background: var(--c_bg_wht);
  padding: 50px 0;
}

.dfk-productList-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dfk-productList-header-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 370px;
          flex: 0 1 370px;
}
.dfk-productList-header-img img {
  border-radius: 20px;
}

.dfk-productList-header-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 694px;
          flex: 0 1 694px;
}

.dfk-productList-header-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.dfk-productList-header-catchcopy {
  font-weight: 700;
  line-height: 1.4;
  margin-top: 16px;
}

.dfk-productList-header-txt {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.5;
}

/* 商品一覧エリア */
.dfk-productList-main {
  padding: 70px 0;
}
.dfk-productList-main:last-child {
  padding-bottom: 0;
}

.dfk-productList {
  padding: 70px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 265px 0 265px 0 265px 0 265px;
  grid-template-columns: repeat(4, 265px);
  gap: 80px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.dfk-productList .dfk-productList-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.dfk-productList .dfk-productList-item-link:hover {
  opacity: 1;
}
.dfk-productList .dfk-productList-item-link:hover .dfk-productList-item-name {
  text-decoration-color: currentColor;
}
.dfk-productList .dfk-productList-item-img img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}
.dfk-productList .dfk-productList-item-name {
  font-size: 16px;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
.dfk-productList .dfk-productList-item-price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  line-height: 1;
  margin-bottom: 4px;
}
.dfk-productList .dfk-productList-item-price-item:last-child {
  margin-bottom: 0;
}
.dfk-productList .dfk-productList-item-price-item .label {
  font-size: 12px;
  padding: 3px 5px;
  background: var(--c_bg_gray);
  border: 1px solid var(--c_bg_gray);
  border-radius: 5px;
}
.dfk-productList .dfk-productList-item-price-item-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
  font-size: 14px;
  font-weight: 700;
}
.dfk-productList .dfk-productList-item-price-item .num {
  font-size: 22px;
}
.dfk-productList .dfk-productList-item-price-item .tax {
  font-size: 12px;
  font-weight: 500;
}
.dfk-productList .dfk-productList-item-price-item .discount {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 7px;
  border: 1.5px solid var(--c_orange);
  color: var(--c_orange);
  border-radius: 1000px;
  margin-left: 6px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.dfk-productList .dfk-productList-item-price-item .discount:empty {
  display: none;
}
.dfk-productList .dfk-productList-item-price-item .ico {
  margin-left: 6px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border-radius: 1000px;
  font-size: 14px;
  padding: 6px 8px;
}
.dfk-productList .dfk-productList-item-price-item--regular:last-child .label {
  display: none;
}
.dfk-productList .dfk-productList-item-price-item--regular:not(:last-child) .dfk-productList-item-price-item-num {
  position: relative;
  font-weight: 500;
}
.dfk-productList .dfk-productList-item-price-item--regular:not(:last-child) .dfk-productList-item-price-item-num:before {
  content: "";
  width: 100%;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.dfk-productList .dfk-productList-item-price-item--regular:not(:last-child) .num {
  font-size: 100%;
}
.dfk-productList .dfk-productList-item-price-item--regular:not(:last-child) .tax {
  font-size: 100%;
}
.dfk-productList .dfk-productList-item-price-item--regular:not(:last-child) .ico {
  display: none;
}
.dfk-productList .dfk-productList-item-price-item--teiki .label {
  color: var(--c_blue);
  border-color: var(--c_blue);
  background: transparent;
}
.dfk-productList .dfk-productList-item-price-item--member .label {
  color: var(--c_blue);
  border-color: var(--c_blue);
  background: transparent;
}
.dfk-productList .dfk-productList-item-price-item--sale .label {
  color: var(--c_orange);
  border-color: var(--c_orange);
  background: transparent;
}
.dfk-productList .dfk-productList-item-price-item--special .label {
  color: var(--c_orange);
  border-color: var(--c_orange);
  background: transparent;
}
.dfk-productList .dfk-productList-item-noStock {
  padding: 8px;
  text-align: center;
  background: var(--c_bg_gray);
  border-radius: 5px;
  font-size: 14px;
  line-height: normal;
}
.dfk-productList .dfk-productList-item-term {
  padding: 8px;
  text-align: center;
  background: var(--c_bg_gray);
  border-radius: 5px;
  font-size: 14px;
  line-height: normal;
}
.dfk-productList .dfk-productList-item-favo {
  margin-top: 10px;
  width: 24px;
}
.dfk-productList .dfk-productList-item-favo .is-on {
  -webkit-filter: var(--filter_blue);
          filter: var(--filter_blue);
}
.dfk-productList .dfk-productList-item-favo .is-off {
  -webkit-filter: var(--filter_text);
          filter: var(--filter_text);
}

/* 商品が1つもなかった場合 */
.dfk-productList--noProduct {
  text-align: center;
  display: block;
}

/** -------------------- 商品詳細ページ -------------------- **/
/* 商品情報メイン部　レイアウト */
.dfk-productDetail-main {
  padding: 80px 0 100px;
}

.dfk-productDetail-main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* 商品画像（左ブロック） */
.dfk-productDetail-main-gallery {
  width: 500px;
  max-width: 100%;
}

.dfk-productDetail-main-gallery-main img {
  border-radius: 30px;
}
.dfk-productDetail-main-gallery-main .js-expandImg {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.dfk-productDetail-main-gallery-sub {
  margin-top: 30px;
}
.dfk-productDetail-main-gallery-sub .swiper-slide {
  cursor: pointer;
}
.dfk-productDetail-main-gallery-sub .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(5, 1fr);
}
.dfk-productDetail-main-gallery-sub img {
  border-radius: 10px;
}

/* 商品画像拡大モーダル */
.dfk-productDetail-expand {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.dfk-productDetail-expand-inner {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dfk-productDetail-expand-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.dfk-productDetail-expand-box {
  width: auto;
  max-width: 1200px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 30px;
  padding: 40px;
  background: var(--c_wht);
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}
.dfk-productDetail-expand-box::-webkit-scrollbar {
  display: none;
}

.dfk-productDetail-expand-close {
  position: relative;
  margin-top: 15px;
  color: var(--c_wht);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
  font-weight: 700;
  cursor: pointer;
}
.dfk-productDetail-expand-close-ico {
  width: 40px;
  height: 40px;
  position: relative;
}
.dfk-productDetail-expand-close-ico:before, .dfk-productDetail-expand-close-ico:after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.dfk-productDetail-expand-close-ico:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* 商品情報（右ブロック） */
.dfk-productDetail-main-info {
  width: 530px;
  max-width: 100%;
}

/* キャンペーンアイコン */
.dfk-productDetail-main-ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

/* キャッチコピー */
.dfk-productDetail-main-catchcopy {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 14px;
}

/* 商品名 */
.dfk-productDetail-main-ttl {
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

/* レビュー評価 */
.dfk-productDetail-main-review {
  margin: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
}

.dfk-productDetail-main-review-link {
  font-size: 14px;
  line-height: 1;
}
.dfk-productDetail-main-review-link a {
  text-decoration: underline;
}

/* 商品番号 */
.dfk-productDetail-main-id {
  margin: 16px 0 24px;
  font-size: 8px;
  line-height: 1;
}

/* 商品付帯情報 */
.dfk-productDetail-main-option {
  margin: 24px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 18px minmax(0, 1fr);
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 18px;
}
.dfk-productDetail-main-option .req {
  color: var(--c_orange);
}
.dfk-productDetail-main-option-label {
  font-size: 16px;
  line-height: 1.5;
}
.dfk-productDetail-main-option select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: var(--font_ja);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/common/selectbox_arrow.png) no-repeat right 15px center/8px, var(--c_wht);
  color: var(--c_text);
  border: 1px solid var(--c_bg_gray);
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
  padding: 9px 40px 9px 15px;
}
.dfk-productDetail-main-option input[type=text] {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: var(--font_ja);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid var(--c_bg_gray);
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
  padding: 9px 15px;
}
.dfk-productDetail-main-option-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 20px;
}
.dfk-productDetail-main-option-error {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c_orange);
  margin-top: -8px;
}
.dfk-productDetail-main-option-error:empty {
  display: none;
}

/* 注文数量指定 */
.dfk-productDetail-main-amount {
  margin: 24px 0 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
}
.dfk-productDetail-main-amount-label {
  font-size: 16px;
}
.dfk-productDetail-main-amount input {
  width: 70px;
  height: 55px;
  text-align: center;
  border: 1px solid var(--c_text);
  border-radius: 0;
  font-size: 20px;
  margin: 0;
}

.dfk-productDetail-main-action {
  margin: 43px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 14px 10px;
}

/* 商品価格 */
.dfk-productDetail-main-price {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

.dfk-productDetail-main-price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  line-height: 1;
  margin-bottom: 8px;
}
.dfk-productDetail-main-price-item:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-main-price-item .label {
  font-size: 16px;
  padding: 6px 7px;
  background: var(--c_bg_gray);
  border: 1.5px solid var(--c_bg_gray);
  border-radius: 5px;
}
.dfk-productDetail-main-price-item-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
}
.dfk-productDetail-main-price-item .num {
  font-size: 28px;
  font-weight: 700;
}
.dfk-productDetail-main-price-item .tax {
  font-size: 12px;
}
.dfk-productDetail-main-price-item .discount {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 7px;
  border: 1.5px solid var(--c_orange);
  color: var(--c_orange);
  border-radius: 1000px;
  margin-left: 6px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.dfk-productDetail-main-price-item .discount:empty {
  display: none;
}
.dfk-productDetail-main-price-item .ico {
  margin-left: 6px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border-radius: 1000px;
  font-size: 14px;
  padding: 6px 8px;
}

.dfk-productDetail-main-price-item--regular:last-child .label {
  display: none;
}
.dfk-productDetail-main-price-item--regular:not(:last-child) .dfk-productDetail-main-price-item-num {
  position: relative;
}
.dfk-productDetail-main-price-item--regular:not(:last-child) .dfk-productDetail-main-price-item-num:before {
  content: "";
  width: 100%;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.dfk-productDetail-main-price-item--regular:not(:last-child) .num {
  font-size: 18px;
}
.dfk-productDetail-main-price-item--regular:not(:last-child) .ico {
  display: none;
}

.dfk-productDetail-main-price-item--teiki .label {
  color: var(--c_blue);
  border-color: var(--c_blue);
  background: transparent;
}

.dfk-productDetail-main-price-item--member .label {
  color: var(--c_blue);
  border-color: var(--c_blue);
  background: transparent;
}

.dfk-productDetail-main-price-item--sale .label {
  color: var(--c_orange);
  border-color: var(--c_orange);
  background: transparent;
}

.dfk-productDetail-main-price-item--special .label {
  color: var(--c_orange);
  border-color: var(--c_orange);
  background: transparent;
}

/* カートに入れる */
.dfk-productDetail-main-buy {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 449px;
          flex: 0 1 449px;
}

.dfk-productDetail-main-buy-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  background: var(--c_orange);
  color: var(--c_wht);
  border: 2px solid var(--c_orange);
}
.dfk-productDetail-main-buy-btn:hover {
  opacity: 1;
  color: var(--c_orange);
  background: transparent;
}

/* お気に入り */
.dfk-productDetail-main-favo {
  width: 42px;
  height: 42px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.dfk-productDetail-main-favo .is-on {
  -webkit-filter: var(--filter_blue);
          filter: var(--filter_blue);
}

#addFavoriteTip {
  top: 40% !important;
  right: 0 !important;
  left: 0 !important;
  background-color: #fff;
  border: solid 1px #aca7a7;
  margin: auto;
  opacity: 1;
  font-size: 16px;
}

/* 商品概要 */
.dfk-productDetail-main-outline {
  margin: 10px 0 60px;
  font-size: 14px;
  line-height: 1.5;
}
.dfk-productDetail-main-outline:empty {
  display: none;
}
.dfk-productDetail-main-outline .list > * {
  padding-left: 1em;
  text-indent: -1em;
}

/* 定期購入のメリットバナー */
.dfk-productDetail-main-advantages {
  margin: 30px 0;
}
.dfk-productDetail-main-advantages:last-child {
  margin-bottom: 0;
}

/* 商品詳細説明１ */
.dfk-productDetail-main-desc1 {
  margin: 30px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

/* 入り数違い */
.dfk-productDetail-main-related {
  margin-top: 30px;
  background: var(--c_bg_wht);
  border-radius: 20px;
  padding: 30px;
}
.dfk-productDetail-main-related:first-child {
  margin-top: 0;
}
.dfk-productDetail-main-related .title {
  margin: 30px 0 10px;
  font-size: 16px;
  line-height: 1;
}
.dfk-productDetail-main-related .title:first-child {
  margin-top: 0;
}
.dfk-productDetail-main-related ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.dfk-productDetail-main-related ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px 0;
  line-height: 1;
  width: 100%;
  height: 100%;
  min-height: 70px;
  background: var(--c_wht);
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.03);
  position: relative;
}
.dfk-productDetail-main-related ul a:hover {
  opacity: 1;
  border-color: var(--c_blue);
}
.dfk-productDetail-main-related ul a:hover .name {
  text-decoration-color: currentColor;
}
.dfk-productDetail-main-related ul .name {
  font-size: 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  -webkit-transition: var(--anim);
  transition: var(--anim);
  text-align: center;
}
.dfk-productDetail-main-related ul .price {
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.dfk-productDetail-main-related ul .price .num {
  font-size: 14px;
}
.dfk-productDetail-main-related ul .price .tax {
  font-size: 8px;
}
.dfk-productDetail-main-related ul .is-current a {
  border-color: var(--c_blue);
  pointer-events: none;
}
.dfk-productDetail-main-related ul .is-current a:before {
  content: "選択中";
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/product/ico_check.png) no-repeat left 7px center/10px, var(--c_blue);
  color: var(--c_wht);
  border-radius: 1000px;
  padding: 6px 7px 6px 20px;
  font-size: 12px;
  position: absolute;
  top: 5px;
  right: 5px;
}
.dfk-productDetail-main-related .bnr img {
  width: 100%;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.03));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.03));
}
.dfk-productDetail-main-related .other {
  margin-top: 40px;
}
.dfk-productDetail-main-related .other > * {
  text-align: right;
  font-size: 16px;
  line-height: 1;
}
.dfk-productDetail-main-related .other > * + * {
  margin-top: 12px;
}
.dfk-productDetail-main-related .other a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
}
.dfk-productDetail-main-related .other a:after {
  content: "";
  width: 8px;
  height: 8px;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/common/chevron.png) no-repeat center/contain;
  -webkit-filter: var(--filter_text);
          filter: var(--filter_text);
}
.dfk-productDetail-main-related .other a:hover {
  opacity: 1;
  text-decoration-color: currentColor;
}

/* 商品説明エリア */
.dfk-productDetail-description {
  padding: 100px 0 165px;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/common/bg.jpg) repeat-y top center/100%;
  position: relative;
}
.dfk-productDetail-description:before {
  content: "";
  width: 381px;
  height: 93px;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/product/deco01.png) no-repeat left center/contain;
  position: absolute;
  top: -36px;
  left: 56px;
}
.dfk-productDetail-description:after {
  content: "";
  width: 365px;
  height: 136px;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/product/deco02.png) no-repeat right center/contain;
  position: absolute;
  top: -72px;
  right: 20px;
}
.dfk-productDetail-description-box {
  background: var(--c_wht);
  padding: 60px;
  margin-bottom: 80px;
  border-radius: 50px;
  overflow: hidden;
}
.dfk-productDetail-description-box:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-description .h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}
.dfk-productDetail-description .h2:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-description .h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 80px 0 23px;
}
.dfk-productDetail-description .h3:first-child {
  margin-top: 0;
}
.dfk-productDetail-description .h3:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-description .h3 + .num-title {
  margin-top: 0;
}
.dfk-productDetail-description .num-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--c_bg_beige);
  border-radius: 10px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 700;
  line-height: 1;
  margin: 50px 0 16px;
}
.dfk-productDetail-description .num-title:first-child {
  margin-top: 0;
}
.dfk-productDetail-description .num-title:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-description .num-title > .num {
  width: 26px;
  height: 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--c_wht);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2px;
}
.dfk-productDetail-description .list > li {
  padding-left: 1em;
  text-indent: -1em;
}
.dfk-productDetail-description .scroll {
  margin: 0 -60px;
  padding: 0 60px;
  overflow-x: auto;
  overflow-y: hidden;
}
.dfk-productDetail-description .scroll::-webkit-scrollbar {
  display: none;
}
.dfk-productDetail-description .meat-table {
  margin: 24px 0 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 160px repeat(auto-fit, 250px);
  -ms-grid-rows: minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto) 0 minmax(0, auto);
  grid-template-rows: repeat(15, minmax(0, auto));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 4px;
}
.dfk-productDetail-description .meat-table-heading {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  grid-row: 2/-1;
}
.dfk-productDetail-description .meat-table-heading .th {
  background: var(--c_bg_gray);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  padding: 8px 0 7px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 4px solid var(--c_wht);
}
.dfk-productDetail-description .meat-table-heading .th:first-child {
  border-radius: 10px 0 0 0;
}
.dfk-productDetail-description .meat-table-heading .th:last-child {
  border-radius: 0 0 0 10px;
  border-bottom: 0;
}
.dfk-productDetail-description .meat-table-heading .th p {
  text-align: left;
}
.dfk-productDetail-description .meat-table-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  grid-row: 1/-1;
  width: 250px;
}
.dfk-productDetail-description .meat-table-item .th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: var(--c_bg_wht);
  color: var(--c_blue);
  padding: 4px 8px;
  border-radius: 10px 10px 0 0;
  border-bottom: 4px solid var(--c_wht);
}
.dfk-productDetail-description .meat-table-item .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-left: -52px;
}
.dfk-productDetail-description .meat-table-item .name .ico {
  width: 40px;
  border-radius: 50%;
}
.dfk-productDetail-description .meat-table-item .td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 8px;
  position: relative;
  border-bottom: 4px solid #F4F4F4;
}
.dfk-productDetail-description .meat-table-item .td-item {
  text-align: center;
  font-size: 14px;
  line-height: normal;
}
.dfk-productDetail-description .meat-table-item .td-item .mark {
  width: 20px;
  margin: 0 auto 6px;
}
.dfk-productDetail-description .meat-table-item .td-item strong {
  font-size: 14px;
}
.dfk-productDetail-description .meat-table-item .td-item .small {
  font-size: 12px;
}
.dfk-productDetail-description .meat-table-item:nth-of-type(2) {
  border: 4px solid var(--c_blue);
  border-radius: 10px 10px 0 0;
}
.dfk-productDetail-description .meat-table-item:nth-of-type(2) .th {
  background: var(--c_blue);
  color: var(--c_wht);
  border-radius: 0;
}
.dfk-productDetail-description .meat-table-item:nth-of-type(2) .name .ico {
  background: var(--c_wht);
}
.dfk-productDetail-description .meat-table-item:nth-of-type(2) .name .ico img {
  -webkit-filter: none;
          filter: none;
}
.dfk-productDetail-description .meat-table-item:nth-of-type(2) .td:last-of-type {
  border-bottom: 0;
}
.dfk-productDetail-description .meat-table-note {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  position: sticky;
  left: 0;
}
.dfk-productDetail-description .recommend {
  margin: 23px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 10px;
}
.dfk-productDetail-description .recommend:first-child {
  margin-top: 0;
}
.dfk-productDetail-description .recommend:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-description .recommend > * {
  font-size: 16px;
  line-height: 1;
  padding: 12px 30px;
  background: var(--c_bg_wht);
  border-radius: 1000px;
}
.dfk-productDetail-description .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
}
.dfk-productDetail-description .card:after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
}
.dfk-productDetail-description .card .card-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 227px;
          flex: 0 0 227px;
  background: var(--c_bg_wht);
  border-radius: 20px;
  padding: 24px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  font-size: 16px;
  line-height: 1.5;
}
.dfk-productDetail-description .card .name {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}
.dfk-productDetail-description .card .img img {
  border-radius: 10px;
}
.dfk-productDetail-description .card .text {
  margin: 6px 0 14px;
}
.dfk-productDetail-description .card .link {
  margin-top: auto;
  text-align: right;
}
.dfk-productDetail-description .card .link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  cursor: pointer;
}
.dfk-productDetail-description .card .link a:after {
  content: "";
  width: 8px;
  height: 8px;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/common/chevron.png) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: var(--filter_text);
          filter: var(--filter_text);
}
.dfk-productDetail-description .card .link a:hover {
  opacity: 1;
  text-decoration-color: currentColor;
}
.dfk-productDetail-description .food {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.dfk-productDetail-description .food .food-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
}
.dfk-productDetail-description .food .food-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  width: 100%;
  height: 100%;
  padding: 6px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.14);
  line-height: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
}
.dfk-productDetail-description .food .food-item a img {
  width: 90px;
  aspect-ratio: 90/73;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.dfk-productDetail-description .food .food-item a:hover {
  opacity: 1;
  text-decoration-color: currentColor;
}
.dfk-productDetail-description .gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0;
}
.dfk-productDetail-description .gallery:first-child {
  margin-top: 0;
}
.dfk-productDetail-description .gallery:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-description .gallery img {
  border-radius: 20px;
}
.dfk-productDetail-description .level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 16px;
  line-height: 1.4;
  margin: 30px 0;
}
.dfk-productDetail-description .level:first-child {
  margin-top: 0;
}
.dfk-productDetail-description .level:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-description .level > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 220px;
  position: relative;
  padding-top: 37px;
  text-align: center;
}
.dfk-productDetail-description .level > *:before {
  content: "";
  width: 100%;
  height: 4px;
  background: #D0ECEB;
  position: absolute;
  top: 10px;
  left: 0;
}
.dfk-productDetail-description .level > *:after {
  content: "";
  width: 17px;
  height: 17px;
  background: #D0ECEB;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
.dfk-productDetail-description .level > * > * {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.dfk-productDetail-description .level > *:last-child:before {
  display: none;
}
.dfk-productDetail-description .level > *:not(.is-check ~ li):not(.is-check):before {
  background: var(--c_blue);
}
.dfk-productDetail-description .level > *:not(.is-check ~ li):not(.is-check):after {
  width: 24px;
  height: 24px;
  background: var(--c_blue);
  top: 0;
}
.dfk-productDetail-description .level > *.is-check:after {
  width: 24px;
  height: 24px;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/product/ico_check.png) no-repeat center/12px, var(--c_blue);
  top: 0;
}
.dfk-productDetail-description .accordion-trigger {
  position: relative;
  cursor: pointer;
  cursor: pointer;
}
.dfk-productDetail-description .accordion-trigger:before {
  content: "";
  width: 36px;
  height: 36px;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/common/chevron.png) no-repeat center/10px, var(--c_bg_gray);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  margin: auto;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
.dfk-productDetail-description .accordion-trigger.is-open:before {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.dfk-productDetail-description .accordion-contents {
  padding-top: 30px;
  display: none;
}
.dfk-productDetail-description .nutrition-table {
  width: 100%;
  border-top: 1px solid var(--c_bg_gray);
}
.dfk-productDetail-description .nutrition-table th {
  width: 160px;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
  padding: 10px 0 9px;
  border-bottom: 1px solid var(--c_bg_gray);
}
.dfk-productDetail-description .nutrition-table td {
  text-align: left;
  vertical-align: middle;
  padding: 10px 20px 9px;
  border-bottom: 1px solid var(--c_bg_gray);
}
.dfk-productDetail-description .aafco {
  margin: 30px auto;
  max-width: 918px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  background: var(--c_bg_wht);
  border-radius: 20px;
}
.dfk-productDetail-description .aafco:first-child {
  margin-top: 0;
}
.dfk-productDetail-description .aafco:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-description .aafco .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 159px;
          flex: 0 0 159px;
}
.dfk-productDetail-description .aafco .title {
  font-weight: 700;
  line-height: normal;
  padding-left: 9px;
  margin-bottom: 6px;
}
.dfk-productDetail-description .aafco .text {
  font-size: 16px;
  line-height: 1.5;
}
.dfk-productDetail-description .tab {
  max-width: 1000px;
  margin: 0 auto 40px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
}
.dfk-productDetail-description .tab > * {
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  gap: 0;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
.dfk-productDetail-description .tab > * > * {
  background: var(--c_bg_gray);
  border-radius: 10px;
  color: rgba(43, 43, 43, 0.7);
  padding: 8px 20px;
  width: 100%;
  height: 100%;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dfk-productDetail-description .tab > * > *:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/product/ico_check_trans.png) no-repeat center/cover;
  border-radius: 50%;
  margin: 0 13px 0 -37px;
  opacity: 0;
}
.dfk-productDetail-description .tab > *.is-show > * {
  background: var(--c_orange);
  color: var(--c_wht);
  font-weight: 700;
}
.dfk-productDetail-description .tab > *.is-show > *:before {
  opacity: 1;
}
.dfk-productDetail-description .tab > *.is-show:after {
  content: "";
  width: 18px;
  height: 10px;
  background-color: var(--c_orange);
  clip-path: polygon(50% 10px, 0% 0%, 18px 0%);
  margin: -1px auto 0;
}
.dfk-productDetail-description .tab:has(> :nth-child(5)) > * > *:before {
  width: 17px;
  height: 17px;
  margin: 0 3px 0 -20px;
}
.dfk-productDetail-description .tab-contents {
  display: none;
}
.dfk-productDetail-description .tab-contents.is-show {
  display: block;
}

/* モーダル */
.dfk-productDetail-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.dfk-productDetail-modal-inner {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dfk-productDetail-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.dfk-productDetail-modal-box {
  width: 700px;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 30px;
  padding: 30px 40px;
  background: var(--c_bg_wht);
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

.dfk-productDetail-modal-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
}

.dfk-productDetail-modal-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
}
.dfk-productDetail-modal-img img {
  border-radius: 50%;
}

.dfk-productDetail-modal-ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.dfk-productDetail-modal-point {
  border: 2px solid var(--c_orange);
  background: var(--c_wht);
  border-radius: 20px;
  padding: 23px 30px;
  margin-top: 25px;
}

.dfk-productDetail-modal-point-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--c_orange);
  margin-bottom: 16px;
}
.dfk-productDetail-modal-point-ttl:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/product/ico_check.png) no-repeat center/10px, currentColor;
  border-radius: 50%;
}

.dfk-productDetail-modal-close {
  position: relative;
  margin-top: 15px;
  color: var(--c_wht);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
  font-weight: 700;
  cursor: pointer;
}
.dfk-productDetail-modal-close-ico {
  width: 40px;
  height: 40px;
  position: relative;
}
.dfk-productDetail-modal-close-ico:before, .dfk-productDetail-modal-close-ico:after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.dfk-productDetail-modal-close-ico:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* 給与量 */
.dfk-productDetail-feeding {
  max-width: 850px;
  margin: 24px auto 0;
}

.dfk-productDetail-feeding-input {
  background: var(--c_bg_wht);
  border-radius: 20px;
  padding: 25px 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 42px;
  z-index: 1;
}
.dfk-productDetail-feeding-input:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 47px 61px 0 61px;
  border-color: var(--c_bg_wht) transparent transparent transparent;
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.dfk-productDetail-feeding-input-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  line-height: 1;
}
.dfk-productDetail-feeding-input-radio {
  margin-right: 16px;
}
.dfk-productDetail-feeding-input-radio:last-child {
  margin-right: 0;
}
.dfk-productDetail-feeding-input input[type=number] {
  width: 170px;
  height: 72px;
  background: var(--c_wht);
  border: 1px solid var(--c_bg_gray);
  border-radius: 5px;
  font-family: var(--font_ja);
  font-size: 26px;
  font-weight: 500;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
}
.dfk-productDetail-feeding-input input[type=radio] {
  display: none;
}
.dfk-productDetail-feeding-input input[type=radio] + label {
  font-size: 22px;
  position: relative;
  padding-left: 37px;
  display: block;
  cursor: pointer;
}
.dfk-productDetail-feeding-input input[type=radio] + label:before {
  content: "";
  width: 28px;
  height: 28px;
  background: var(--c_wht);
  border: 1px solid var(--c_bg_gray);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.dfk-productDetail-feeding-input input[type=radio] + label:after {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--c_blue);
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: 6px;
  opacity: 0.3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.dfk-productDetail-feeding-input input[type=radio]:checked + label:after {
  opacity: 1;
}

.dfk-productDetail-feeding-result {
  background: var(--c_bg_beige);
  border: 2px solid var(--c_orange);
  border-radius: 20px;
  padding: 40px;
}
.dfk-productDetail-feeding-result-txt {
  text-align: center;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dfk-productDetail-feeding-result-label {
  font-size: 19px;
}
.dfk-productDetail-feeding-result-num {
  font-size: 48px;
  line-height: 34px;
  margin-left: 10px;
  padding-bottom: 2px;
}
.dfk-productDetail-feeding-result-unit {
  margin-left: 1px;
  margin-top: auto;
  font-size: 18px;
}

/* こだわりエリア */
.dfk-productDetail-feature {
  background: var(--c_bg_wht);
  border-radius: 50px 50px 0 0;
  position: relative;
  margin-top: -65px;
  padding: 100px 0;
  max-height: 1131px;
  overflow: hidden;
  -webkit-transition: 0.6s all ease-out;
  transition: 0.6s all ease-out;
}
.dfk-productDetail-feature.is-open .dfk-productDetail-feature-open {
  opacity: 0;
  visibility: hidden;
}
.dfk-productDetail-feature--noAccordion {
  max-height: none;
}
.dfk-productDetail-feature--noAccordion .dfk-productDetail-feature-open,
.dfk-productDetail-feature--noAccordion .dfk-productDetail-feature-close {
  display: none;
}
.dfk-productDetail-feature-trigger {
  padding: 19px 29px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--c_blue);
  color: var(--c_blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  margin: 0 auto;
}
.dfk-productDetail-feature-open {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 193px 0 100px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(56.14%, #FAF9F6), to(rgba(250, 249, 246, 0)));
  background: linear-gradient(0deg, #FAF9F6 56.14%, rgba(250, 249, 246, 0) 100%);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
.dfk-productDetail-feature-close {
  margin: 100px auto 0;
}
.dfk-productDetail-feature .h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin: 100px 0 40px;
}
.dfk-productDetail-feature .h2:first-child {
  margin-top: 0;
}
.dfk-productDetail-feature .h2:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-feature .h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 80px 0 23px;
}
.dfk-productDetail-feature .h3:first-child {
  margin-top: 0;
}
.dfk-productDetail-feature .h3:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-feature .h3 + .num-title {
  margin-top: 0;
}
.dfk-productDetail-feature .num-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--c_bg_beige);
  border-radius: 10px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 700;
  line-height: 1;
  margin: 50px 0 16px;
}
.dfk-productDetail-feature .num-title:first-child {
  margin-top: 0;
}
.dfk-productDetail-feature .num-title:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-feature .num-title > .num {
  width: 26px;
  height: 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--c_wht);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2px;
}
.dfk-productDetail-feature .list > li {
  padding-left: 1em;
  text-indent: -1em;
}
.dfk-productDetail-feature .scroll {
  margin: 0 -60px;
  padding: 0 60px;
  overflow-x: auto;
  overflow-y: hidden;
}
.dfk-productDetail-feature .scroll::-webkit-scrollbar {
  display: none;
}
.dfk-productDetail-feature .feature {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.dfk-productDetail-feature .feature .img {
  margin-bottom: 16px;
}
.dfk-productDetail-feature .feature .img img {
  border-radius: 20px;
}
.dfk-productDetail-feature .feature .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 16px 0;
}
.dfk-productDetail-feature .merit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.dfk-productDetail-feature .merit-item {
  background: var(--c_wht);
  -webkit-box-shadow: 0px 0px 14px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 14px 4px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 20px 16px 27px;
  font-size: 16px;
  line-height: 1.5;
}
.dfk-productDetail-feature .merit .title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--c_blue);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}
.dfk-productDetail-feature .merit .title:before {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/product/ico_check.png) no-repeat center/8px, currentColor;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
.dfk-productDetail-feature .merit .img {
  width: 120px;
  margin: 0 auto 14px;
}
.dfk-productDetail-feature .merit .img img {
  border-radius: 50%;
}
.dfk-productDetail-feature .faq-item {
  margin-bottom: 20px;
  background: var(--c_wht);
  border-radius: 30px;
  -webkit-box-shadow: 0px 0px 14px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 14px 4px rgba(0, 0, 0, 0.04);
  padding: 10px 0;
}
.dfk-productDetail-feature .faq-item:last-child {
  margin-bottom: 0;
}
.dfk-productDetail-feature .faq-q {
  padding: 20px 112px 20px 60px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
  line-height: normal;
}
.dfk-productDetail-feature .faq-q:after {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/common/chevron.png) no-repeat center/10px, var(--c_bg_gray);
  position: absolute;
  right: 60px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
.dfk-productDetail-feature .faq-q.is-open:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.dfk-productDetail-feature .faq-a {
  padding: 0 60px 20px;
  display: none;
}

/* お客様のレビュー */
.dfk-productDetail-review {
  margin: 100px 0 80px;
}

/* スマホ
  ------------------------ */
@media (max-width: 768px) {
  /** -------------------- 商品一覧ページ -------------------- **/
  /* カテゴリヘッダー */
  .dfk-productList-header {
    padding: 20px 0;
  }
  .dfk-productList-header-container {
    display: block;
  }
  .dfk-productList-header-img {
    margin-bottom: 20px;
  }
  .dfk-productList-header-ttl {
    font-size: 20px;
  }
  .dfk-productList-header-catchcopy {
    margin-top: 12px;
  }
  .dfk-productList-header-txt {
    font-size: 14px;
    margin-top: 20px;
  }
  /* 商品一覧エリア */
  .dfk-productList-main {
    padding: 50px 0;
  }
  .dfk-productList {
    padding: 50px 0;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
  .dfk-productList .dfk-productList-item-name {
    font-size: 14px;
  }
  .dfk-productList .dfk-productList-item-price-item {
    margin-bottom: 3px;
  }
  .dfk-productList .dfk-productList-item-price-item .label {
    font-size: 10px;
  }
  .dfk-productList .dfk-productList-item-price-item-num {
    font-size: 12px;
  }
  .dfk-productList .dfk-productList-item-price-item .num {
    font-size: 20px;
  }
  .dfk-productList .dfk-productList-item-price-item .tax {
    font-size: 10px;
  }
  .dfk-productList .dfk-productList-item-price-item--regular:not(:last-child) .dfk-productList-item-price-item-num {
    font-size: 14px;
  }
  .dfk-productList .dfk-productList-item-noStock {
    font-size: 12px;
  }
  .dfk-productList .dfk-productList-item-term {
    font-size: 12px;
  }
  /** -------------------- 商品詳細ページ -------------------- **/
  /* 商品情報メイン部　レイアウト */
  .dfk-productDetail-main {
    padding: 30px 0 50px;
  }
  .dfk-productDetail-main-container {
    row-gap: 47px;
  }
  /* 商品画像（左ブロック） */
  .dfk-productDetail-main-gallery {
    width: 100%;
  }
  .dfk-productDetail-main-gallery-sub {
    margin-top: 16px;
  }
  /* 商品画像拡大モーダル */
  .dfk-productDetail-expand-inner {
    padding: 55px 20px 20px;
  }
  .dfk-productDetail-expand-box {
    border-radius: 20px;
    padding: 20px;
    font-size: 14px;
  }
  .dfk-productDetail-expand-close {
    margin-top: 0;
  }
  .dfk-productDetail-expand-close-ico {
    width: 35px;
    height: 35px;
  }
  .dfk-productDetail-expand-close-ico:before, .dfk-productDetail-expand-close-ico:after {
    width: 18px;
  }
  /* 商品情報（右ブロック） */
  .dfk-productDetail-main-info {
    width: 100%;
  }
  /* キャッチコピー */
  .dfk-productDetail-main-catchcopy {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 7px;
  }
  /* 商品名 */
  .dfk-productDetail-main-ttl {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.4;
  }
  /* レビュー評価 */
  .dfk-productDetail-main-review {
    margin: 5px 0 13px;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }
  .dfk-productDetail-main-review-link {
    font-size: 12px;
  }
  /* 商品番号 */
  .dfk-productDetail-main-id {
    margin: 13px 0 30px;
  }
  /* 商品付帯情報 */
  .dfk-productDetail-main-option {
    gap: 10px;
  }
  .dfk-productDetail-main-option-label {
    font-size: 14px;
  }
  .dfk-productDetail-main-option select {
    font-size: 14px;
    padding: 7px 30px 7px 15px;
  }
  .dfk-productDetail-main-option input[type=text] {
    padding: 7px 15px;
  }
  .dfk-productDetail-main-option-check {
    gap: 4px 20px;
  }
  .dfk-productDetail-main-option-error {
    font-size: 12px;
  }
  /* 注文数量指定 */
  .dfk-productDetail-main-amount {
    margin: 30px 0;
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
  }
  .dfk-productDetail-main-amount-label {
    font-size: 14px;
  }
  .dfk-productDetail-main-amount input {
    width: 55px;
    height: 45px;
    font-size: 18px;
  }
  .dfk-productDetail-main-action {
    margin: 30px 0 0;
    gap: 13px 10px;
  }
  /* 商品価格 */
  .dfk-productDetail-main-price {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% - 10px - 30px);
            flex: 0 1 calc(100% - 10px - 30px);
  }
  .dfk-productDetail-main-price-item {
    gap: 5px 4px;
  }
  .dfk-productDetail-main-price-item .label {
    font-size: 14px;
    padding: 5px 7px;
  }
  .dfk-productDetail-main-price-item .num {
    font-size: 24px;
  }
  /* カートに入れる */
  .dfk-productDetail-main-buy {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .dfk-productDetail-main-buy-btn {
    height: 50px;
  }
  /* お気に入り */
  .dfk-productDetail-main-favo {
    width: 30px;
    height: 30px;
    margin-left: auto;
    margin-top: auto;
  }
  /* 商品概要 */
  .dfk-productDetail-main-outline {
    margin: 10px 0 30px;
  }
  .dfk-productDetail-main-outline + .dfk-productDetail-main-advantages {
    margin: 16px 0;
  }
  /* 商品詳細説明１ */
  .dfk-productDetail-main-desc1 {
    margin: 20px 0 0;
    font-size: 14px;
  }
  /* 入り数違い */
  .dfk-productDetail-main-related {
    margin-top: 20px;
    padding: 30px 20px;
  }
  .dfk-productDetail-main-related .title {
    margin-top: 20px;
  }
  .dfk-productDetail-main-related ul a {
    gap: 2px 0;
    min-height: 77px;
  }
  .dfk-productDetail-main-related ul .name {
    font-size: 18px;
    line-height: 1.2;
  }
  .dfk-productDetail-main-related ul .price .num {
    font-size: 12px;
  }
  .dfk-productDetail-main-related ul .price .tax {
    font-size: 8px;
  }
  .dfk-productDetail-main-related ul .is-current a:before {
    font-size: 10px;
    background-size: 8px;
    background-position: left 4px center;
    padding: 4px 4px 4px 15px;
  }
  .dfk-productDetail-main-related .other {
    margin-top: 30px;
  }
  /* 商品説明エリア */
  .dfk-productDetail-description {
    padding: 50px 0 115px;
  }
  .dfk-productDetail-description:before {
    width: 144px;
    height: 59px;
    background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/product/deco01_sp.png) no-repeat left center/contain;
    top: -29px;
    left: 10px;
  }
  .dfk-productDetail-description:after {
    width: 163px;
    height: 74px;
    background: url(../../Contents/ImagesPkg/dogfoodkoubou2026/product/deco02_sp.png) no-repeat left center/contain;
    top: -36px;
    right: 0;
  }
  .dfk-productDetail-description-box {
    padding: 40px 20px;
    margin-bottom: 30px;
    border-radius: 30px;
  }
  .dfk-productDetail-description .h2 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  .dfk-productDetail-description .h3 {
    margin: 40px 0 16px;
    font-size: 18px;
    line-height: 1.4;
  }
  .dfk-productDetail-description .num-title {
    padding: 8px 10px;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }
  .dfk-productDetail-description .num-title > .num {
    width: 20px;
    height: 20px;
  }
  .dfk-productDetail-description .scroll {
    margin: 0 -20px;
    padding: 0 20px;
  }
  .dfk-productDetail-description .meat-table {
    margin: 16px 0;
    grid-template-columns: 50px repeat(auto-fit, 78px);
    gap: 0 3px;
  }
  .dfk-productDetail-description .meat-table-heading .th {
    font-size: 11px;
    line-height: 1.1;
    padding: 27px 6px;
    border-width: 2px;
  }
  .dfk-productDetail-description .meat-table-item {
    width: 78px;
  }
  .dfk-productDetail-description .meat-table-item .th {
    padding: 6px 4px;
    border-width: 2px;
  }
  .dfk-productDetail-description .meat-table-item .name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin: 0;
    font-size: 12px;
  }
  .dfk-productDetail-description .meat-table-item .name .ico {
    width: 30px;
    background: var(--c_blue);
  }
  .dfk-productDetail-description .meat-table-item .name .ico img {
    -webkit-filter: var(--filter_wht);
            filter: var(--filter_wht);
  }
  .dfk-productDetail-description .meat-table-item .td {
    padding: 8px 4px;
    border-width: 2px;
  }
  .dfk-productDetail-description .meat-table-item .td-item {
    font-size: 11px;
    line-height: 1.1;
  }
  .dfk-productDetail-description .meat-table-item .td-item .mark {
    width: 14px;
  }
  .dfk-productDetail-description .meat-table-item .td-item strong {
    font-size: 11px;
  }
  .dfk-productDetail-description .meat-table-item .td-item .small {
    font-size: 10px;
  }
  .dfk-productDetail-description .meat-table-item:nth-of-type(2) {
    border-width: 2px;
  }
  .dfk-productDetail-description .meat-table-note {
    font-size: 14px;
  }
  .dfk-productDetail-description .recommend {
    margin: 16px 0;
    gap: 8px;
  }
  .dfk-productDetail-description .recommend > * {
    font-size: 14px;
    padding: 10px 20px;
  }
  .dfk-productDetail-description .card {
    gap: 0 16px;
  }
  .dfk-productDetail-description .card:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4px;
            flex: 0 0 4px;
  }
  .dfk-productDetail-description .card .card-item {
    font-size: 14px;
  }
  .dfk-productDetail-description .card .name {
    font-size: 16px;
  }
  .dfk-productDetail-description .card .text {
    margin: 4px 0 12px;
  }
  .dfk-productDetail-description .food {
    gap: 8px 11px;
  }
  .dfk-productDetail-description .food .food-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 142px;
            flex: 0 0 142px;
  }
  .dfk-productDetail-description .food .food-item a {
    -webkit-column-gap: 9px;
       -moz-column-gap: 9px;
            column-gap: 9px;
    padding: 7px;
    font-size: 14px;
  }
  .dfk-productDetail-description .food .food-item a img {
    width: 73px;
  }
  .dfk-productDetail-description .gallery {
    margin: 24px 0;
    gap: 8px;
  }
  .dfk-productDetail-description .level {
    margin: 16px 0;
    font-size: 12px;
  }
  .dfk-productDetail-description .level > * {
    padding-top: 30px;
    white-space: nowrap;
  }
  .dfk-productDetail-description .level > *:before {
    height: 3px;
    top: 8px;
  }
  .dfk-productDetail-description .level > *:after {
    width: 13px;
    height: 13px;
  }
  .dfk-productDetail-description .level > *:not(.is-check ~ li):not(.is-check):after {
    width: 20px;
    height: 20px;
  }
  .dfk-productDetail-description .level > *.is-check:after {
    width: 20px;
    height: 20px;
    background-size: 10px;
  }
  .dfk-productDetail-description .accordion-trigger:before {
    width: 25px;
    height: 25px;
    background-size: 8px;
  }
  .dfk-productDetail-description .nutrition-table th {
    padding: 9px 0 8px;
  }
  .dfk-productDetail-description .nutrition-table td {
    padding: 8px 0 8px 20px;
  }
  .dfk-productDetail-description .aafco {
    padding: 20px 22px;
    display: block;
  }
  .dfk-productDetail-description .aafco .logo {
    width: 124px;
    margin-bottom: 14px;
  }
  .dfk-productDetail-description .aafco .title {
    padding: 0;
    margin-bottom: 3px;
  }
  .dfk-productDetail-description .aafco .text {
    font-size: 14px;
  }
  .dfk-productDetail-description .tab {
    -ms-grid-columns: 1fr 6px 1fr 6px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6px;
    margin-bottom: 16px;
  }
  .dfk-productDetail-description .tab > * {
    overflow: hidden;
  }
  .dfk-productDetail-description .tab > * > * {
    padding: 10px 7px;
  }
  .dfk-productDetail-description .tab > * > *:before {
    width: 14px;
    height: 14px;
    margin: 0 6px 0 -20px;
  }
  .dfk-productDetail-description .tab:has(> :nth-child(5)) .tab-item > *:before {
    width: 14px;
    height: 14px;
    margin: 0 8px 0 -22px;
  }
  /* モーダル */
  .dfk-productDetail-modal-inner {
    padding: 55px 20px 20px;
  }
  .dfk-productDetail-modal-box {
    border-radius: 20px;
    padding: 20px;
    font-size: 14px;
  }
  .dfk-productDetail-modal-flex {
    display: block;
  }
  .dfk-productDetail-modal-img {
    width: 130px;
    margin: 0 auto 10px;
  }
  .dfk-productDetail-modal-ttl {
    font-size: 18px;
    text-align: center;
  }
  .dfk-productDetail-modal-point {
    padding: 20px;
    margin-top: 20px;
  }
  .dfk-productDetail-modal-point-ttl {
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .dfk-productDetail-modal-close {
    margin-top: 0;
  }
  .dfk-productDetail-modal-close-ico {
    width: 35px;
    height: 35px;
  }
  .dfk-productDetail-modal-close-ico:before, .dfk-productDetail-modal-close-ico:after {
    width: 18px;
  }
  /* 給与量 */
  .dfk-productDetail-feeding {
    margin-top: 10px;
  }
  .dfk-productDetail-feeding-input {
    display: block;
    padding: 20px;
    margin-bottom: 27px;
  }
  .dfk-productDetail-feeding-input:before {
    border-width: 31px 40px 0 40px;
    bottom: -19px;
  }
  .dfk-productDetail-feeding-input-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px 8px;
    margin-bottom: 30px;
  }
  .dfk-productDetail-feeding-input-item:last-child {
    margin-bottom: 0;
  }
  .dfk-productDetail-feeding-input-label {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    font-size: 14px;
  }
  .dfk-productDetail-feeding-input-unit {
    font-size: 18px;
  }
  .dfk-productDetail-feeding-input-radio {
    margin-right: 22px;
  }
  .dfk-productDetail-feeding-input input[type=number] {
    width: 160px;
    height: 64px;
    font-size: 20px;
    padding: 16px;
  }
  .dfk-productDetail-feeding-input input[type=radio] + label {
    font-size: 18px;
    line-height: 24px;
    padding-left: 29px;
  }
  .dfk-productDetail-feeding-input input[type=radio] + label:before {
    width: 24px;
    height: 24px;
  }
  .dfk-productDetail-feeding-input input[type=radio] + label:after {
    left: 4px;
    top: 4px;
  }
  .dfk-productDetail-feeding-result {
    padding: 27px;
  }
  .dfk-productDetail-feeding-result-label {
    font-size: 16px;
  }
  .dfk-productDetail-feeding-result-num {
    font-size: 36px;
    line-height: 25px;
  }
  .dfk-productDetail-feeding-result-unit {
    font-size: 14px;
  }
  /* こだわりエリア */
  .dfk-productDetail-feature {
    border-radius: 30px 30px 0 0;
    padding: 50px 0;
    max-height: 1374px;
  }
  .dfk-productDetail-feature-trigger {
    font-size: 16px;
    line-height: 1.2;
    padding: 12px 16px;
  }
  .dfk-productDetail-feature-open {
    padding: 244px 0 41px;
  }
  .dfk-productDetail-feature-close {
    margin-top: 50px;
  }
  .dfk-productDetail-feature .h2 {
    font-size: 22px;
    line-height: 1.4;
    margin: 50px 0 24px;
  }
  .dfk-productDetail-feature .h3 {
    margin: 40px 0 16px;
    font-size: 18px;
    line-height: 1.4;
  }
  .dfk-productDetail-feature .num-title {
    padding: 8px 10px;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }
  .dfk-productDetail-feature .num-title > .num {
    width: 20px;
    height: 20px;
  }
  .dfk-productDetail-feature .scroll {
    margin: 0 -20px;
    padding: 0 20px;
  }
  .dfk-productDetail-feature .feature {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 40px 0;
  }
  .dfk-productDetail-feature .feature .title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .dfk-productDetail-feature .merit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 16px;
  }
  .dfk-productDetail-feature .merit:after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4px;
            flex: 0 0 4px;
  }
  .dfk-productDetail-feature .merit-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 227px;
            flex: 0 0 227px;
    padding: 20px 16px;
    font-size: 14px;
  }
  .dfk-productDetail-feature .merit .title {
    font-size: 16px;
  }
  .dfk-productDetail-feature .merit .img {
    width: 100px;
    margin-bottom: 16px;
  }
  .dfk-productDetail-feature .faq-item {
    padding: 14px 0;
  }
  .dfk-productDetail-feature .faq-q {
    padding: 16px 57px 16px 20px;
  }
  .dfk-productDetail-feature .faq-q:after {
    width: 25px;
    height: 25px;
    background-size: 8px;
    right: 20px;
  }
  .dfk-productDetail-feature .faq-a {
    padding: 0 20px 16px;
  }
  /* お客様のレビュー */
  .dfk-productDetail-review {
    margin: 50px 0 80px;
  }
}