@charset "utf-8";

/* =========================
Tab Content
========================= */
.product-tab_dog-content,
.product-tab_cat-content {
  display: none;
}

.product-tab_dog-content.is-active,
.product-tab_cat-content.is-active {
  display: block;
}

/* =========================
Tab Navigation
========================= */
.product-tab_dog-nav,
.product-tab-nav_dog,
.product-tab_cat-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 100px 50px 0;
}

.product-tab_dog-nav,
.product-tab-nav_dog {
  background: rgba(63, 128, 130, 0.05);
}

.product-tab_cat-nav {
  background: rgba(118, 93, 145, 0.05);
}

/* =========================
Tab Button Common
========================= */
.product-tab_dog,
.product-tab_cat {
  min-width: 260px;
  padding: 0 48px 0 20px;
  border: 1px solid #bdbdbd;
  color: #333;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  text-align: left;
  position: relative;
  cursor: pointer;
}

/* dog */
.product-tab_dog {
  height: 56px;
  background: rgba(63, 128, 130, 0.05);
}

.product-tab_dog.is-active {
  background: #fff;
  border: 1px solid #4f8c8a;
  color: #4f8c8a;
  font-weight: 700;
}

/* cat */
.product-tab_cat {
  background: rgba(118, 93, 145, 0.05);
}

/* cat 高さ分け */
.product-tab_cat.is-height-56 {
  height: 56px;
}

.product-tab_cat.is-height-80 {
  height: 80px;
}

.product-tab_cat.is-active {
  background: #fff;
  border: 1px solid #765d91;
  color: #765d91;
  font-weight: 700;
}

/* =========================
SVG Arrow
========================= */
.product-tab_dog::after,
.product-tab_cat::after {
  content: "";
  position: absolute;
  top: 56%;
  right: 18px;
  width: 13px;
  height: 13px;
  background-image: url("/public/images/default/canagan/product/arrow_black.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  transform: translateY(-50%);
}

.product-tab_dog.is-active::after{
  background-image: url("/public/images/default/canagan/product/arrow_green.svg");
}
.product-tab_cat.is-active::after {
  background-image: url("/public/images/default/canagan/product/arrow_purple.svg");
}

/* =========================
Common
========================= */
.product-body-ingredients-list {
  margin-bottom: 60px;
}

.product-info-txt-box p,
.product-body-section .u-mb10 {
  font-size: 14px;
  line-height: 2;
}

.product-info-txt-box p {
  word-break: break-word;
  margin: 0 0 20px;
}

/* =========================
Tablet
========================= */
@media screen and (max-width: 767px) {
  .tab_pc {
    display: none;
  }

  .product-tab_dog-nav,
  .product-tab-nav_dog,
  .product-tab_cat-nav {
    flex-direction: column;
    gap: 10px;
    padding: 60px 30px 0;
  }

  .product-tab_dog,
  .product-tab_cat {
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .product-tab_dog.is-active,
  .product-tab_cat.is-active {
    margin-bottom: 10px;
  }
}

/* =========================
Smartphone
========================= */
@media screen and (max-width: 568px) {
  .product-tab_dog,
  .product-tab_cat {
    text-align: center;
  }

  .product-body-ingredients-list {
    margin-bottom: 30px;
  }

  body(.canagan.grandtop) {
    margin-top: 30px;
  }
}

/* =========================
PC / Tablet Only
========================= */
@media screen and (min-width: 569px) {
  .tab_sp {
    display: none;
  }
}