@charset "UTF-8";
/* Layout
 * 接頭辞：l-
 * 各ページを構成する大枠のエリアに対するレイアウトを定義
======================================*/
/****** ヘッダー ******/
/****** フッター ******/
/****** コンテンツエリア ******/
/****** セクション ******/
/*--------------------------------
 *  セクションタイトル
--------------------------------*/
/* Object > Component
 * 接頭辞：c-
 * 再利用できるパターンとして最小単位のモジュールを定義
======================================*/
/****** 見出し ******/
/*--------------------------------
 *  
--------------------------------*/
/****** ラベル ******/
/****** ボタン ******/
/*--------------------------------
 *  
--------------------------------*/
/****** 画像 ******/
/* Object > Project
 * 接頭辞：p-
 * 再利用できるパターンとしてComponentの集合体を定義
 * もしくはComponentとするには大きすぎるObject（4階層構造以上を目安）を定義
======================================*/
/****** カード ******/
/****** メディアとテキスト ******/
/****** 表組 ******/
/* Utility
 * 接頭辞：u-
 * スポットで状態変化させたいmarginなどの補助クラスを定義
======================================*/
/****** その他 ******/
/*--------------------------------
 *  アドミンバー対応
--------------------------------*/
header {
  top: var(--wp-admin--admin-bar--height, 0px);
}

#wpadminbar {
  position: fixed !important;
}

.secondary-menu {
  top: calc(72px + var(--wp-admin--admin-bar--height, 0px));
  height: calc(100% - 72px - var(--wp-admin--admin-bar--height, 0px));
}

@media only screen and (max-width: 767px) {
  .secondary-menu {
    top: calc(70px + var(--wp-admin--admin-bar--height, 0px));
    height: calc(100% - 70px - var(--wp-admin--admin-bar--height, 0px));
  }
}
/*--------------------------------
 *  コンテンツ周り
--------------------------------*/
.content-area {
  width: 100%;
  padding: 40px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*--------------------------------
 *  ユーティリティ
--------------------------------*/
.c-pagination {
  position: relative;
  margin-top: 1em;
}

.c-pagination__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
}

.c-pagination__item {
  width: 30px;
  height: 30px;
  margin: 0 3.5px;
  border: solid 1px #aaa;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-pagination__item svg {
  width: 20px;
  vertical-align: bottom;
  fill: currentColor;
}

.c-pagination__item a {
  font-family: "HanSan_Bold";
  font-weight: bold;
  font-size: 14px;
  color: #007a3e;
}

.c-socialIcon__unit {
  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;
  padding: 5px;
  margin: 0;
  margin-top: 10px;
}

.c-socialIcon a {
  display: block;
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 767px) {
  .c-socialIcon__unit.--footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-socialIcon__unit.--header {
  margin: 0;
  margin-right: 40px;
  margin-left: auto;
}

/*--------------------------------
 *  商品ラインナップ
 *  products.css
--------------------------------*/
.products-wrap:not(:last-of-type) {
  margin-bottom: 50px;
}

.p-postList-products__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-postList-products__unit * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.p-postList-products {
  padding: 10px;
}

.p-postList-products.--border {
  border-right: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
}

@media only screen and (min-width: 768px) {
  .p-postList-products.--border:nth-child(3n) {
    border-right-width: 0;
  }
  .p-postList-products.--border:nth-child(n+4) {
    border-bottom-width: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-postList-products.--border:nth-child(2n) {
    border-right-width: 0;
  }
  .p-postList-products.--border:nth-child(n+5) {
    border-bottom-width: 0;
  }
}
.p-postList-products__inner {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
  width: 100%;
  max-width: 245px;
}

.p-postList-products__title {
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  background: #349fcb;
}

.p-postList-products__img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(4px 5px 5px #bbb);
          filter: drop-shadow(4px 5px 5px #bbb);
}

.p-postList-products__catchphrase {
  margin-top: 0.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #777777;
  text-align: center;
}

/* 商品タブフィルタリング（最低限のスタイル） */
.product-category li.active {
  background-color: #007a3e !important;
}

.product-category a[data-filter-products] {
  cursor: pointer;
}

.products-wrap[data-products-type] {
  display: none;
}

.products-wrap[data-products-type=dog] {
  display: block;
}

@media only screen and (max-width: 767px) {
  .p-postList-products__unit {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .p-postList-products {
    padding: 4%;
  }
  .p-postList-products__inner {
    padding: 0;
  }
  .p-postList-products__title {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 3vw;
  }
  .p-postList-products__catchphrase {
    font-size: 3vw;
  }
}
/*--------------------------------
 *  ホーム
 *  index.css
--------------------------------*/
/* キービジュアル */
.p-slider-keyVisual__img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/860;
}

.p-slider-keyVisual__img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .p-slider-keyVisual__img {
    aspect-ratio: 1/1;
  }
}
/* 商品ラインナップ */
.p-slider-products {
  padding: 20px 0;
}

.p-slider-products__item {
  width: 250px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-slider-products__item img {
  display: block;
  margin: 0 auto;
  width: 100%;
  -webkit-filter: drop-shadow(4px 5px 5px #bbb);
          filter: drop-shadow(4px 5px 5px #bbb);
}

.p-slider-products__item.swiper-slide-active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-slider-products .swiper-button-prev,
.p-slider-products .swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  margin: 0;
  width: 18px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.p-slider-products .swiper-button-prev::after,
.p-slider-products .swiper-button-next::after {
  content: none;
}

.p-slider-products .swiper-button-prev {
  left: 0;
  background-image: url("../img/icon/arrow-left.svg");
}

.p-slider-products .swiper-button-next {
  right: 0;
  background-image: url("../img/icon/arrow-right.svg");
}

@media only screen and (max-width: 767px) {
  .p-slider-products__item {
    width: 200px;
  }
  .p-slider-products .swiper-button-prev,
  .p-slider-products .swiper-button-next {
    display: none;
  }
}
/* バナースライダー */
.p-slider-banner {
  overflow: visible;
}

.p-slider-banner__item {
  position: relative;
}

.p-slider-banner__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.p-slider-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.p-slider-banner__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-slider-banner .swiper-pagination {
  top: 100%;
  bottom: auto;
  padding: 5px 0;
}

.p-slider-banner .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.5;
}

.p-slider-banner .swiper-pagination .swiper-pagination-bullet-active {
  background: #007a3e;
  opacity: 1;
}

/*--------------------------------
 *  お知らせ
 *  news.css
--------------------------------*/
.p-postList-news__wrapper {
  width: 100%;
  padding: 40px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
}

.p-postList-news__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  padding: 0;
  max-width: 800px;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.p-postList-news {
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.p-postList-news:not(:last-of-type) {
  margin-bottom: 15px;
}

.p-postList-news:first-of-type {
  border-top-width: 0;
}

.p-postList-news .__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.p-postList-news .__horiz:not(:last-of-type) {
  margin-bottom: 10px;
}

.p-postList-news .__col {
  min-width: 0;
}

.p-postList-news .__col.--left {
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-postList-news .__col.--right {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.p-postList-news .__horiz.--upper .__col.--left {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.15;
}

.p-postList-news__img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.p-postList-news__img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-postList-news__title {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-postList-news__title a {
  color: #007a3e;
  text-decoration: none;
}

.p-postList-news__date {
  color: #555555;
}

.p-postList-news__news {
  margin-left: 0.5em;
  font-family: "Noto Sans JP", sans-serif;
  color: red;
}

.p-postList-news__excerpt {
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .p-postList-news__wrapper {
    padding: 15px;
  }
  .p-postList-news .__horiz {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .p-postList-news .__horiz:not(:last-of-type) {
    margin-bottom: 5px;
  }
  .p-postList-news .__horiz.--upper {
    display: block;
  }
  .p-postList-news .__horiz.--upper .__col.--left {
    margin-bottom: 5px;
  }
  .p-postList-news .__col.--left {
    -ms-flex-preferred-size: 80px;
        flex-basis: 80px;
  }
  .p-postList-news__title {
    font-size: 14px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.25;
  }
  .p-postList-news__excerpt {
    font-size: 12px;
  }
}
/*--------------------------------
 *  ブログ
 *  blog.css
--------------------------------*/
/* 拡散検索 */
.p-tab-blogCategory {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 32px;
  padding: 0 !important;
}

.p-tab-blogCategory__item {
  font-family: "HanSan_Bold";
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  color: #007a3e;
  border: 1px solid currentColor;
  width: 100%;
  padding: 5px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-tab-blogCategory__item.is-active {
  background-color: #007a3e;
  color: #fff;
}

/* 投稿リスト */
.p-postList-blog__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

.p-postList-blog {
  padding: 10px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #CCCCCC;
}

.p-postList-blog__title {
  font-size: 14px;
  line-height: 20px;
  height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.p-postList-blog__title a {
  color: #007a3e;
  text-decoration: none;
}

.p-postList-blog__data {
  display: block;
  font-size: 12px;
  text-align: center;
}

.p-postList-blog__term {
  display: block;
  font-size: 12px;
  text-align: center;
}

[data-list].p-postList-blog {
  display: none;
}

[data-list].p-postList-blog.is-show {
  display: block;
}

@media only screen and (max-width: 767px) {
  .p-tab-blogCategory {
    -ms-grid-columns: 1fr 5px 1fr 5px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 16px;
  }
  .p-postList-blog__unit {
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .p-postList-blog {
    padding: 8px;
  }
}
/*--------------------------------
 *  よくある質問
 *  faq.css
--------------------------------*/
.c-subHeading {
  margin-top: 3em;
  margin-bottom: 1.4em;
  padding: 10px;
  font-family: "HanSan_Bold", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #007a3e;
}

.p-postList-faq__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  row-gap: 8px;
}

.p-postList-faq {
  display: block;
}

.p-postList-faq__title {
  padding: 7px 20px;
  font-size: 14px;
  font-family: "tsukuAR", sans-serif;
  font-weight: bold;
  line-height: 1.3;
  color: #007a3e;
  width: 100%;
  border: 1px solid #92c7ad;
  outline: none;
  text-align: start;
  background-color: #d9ebe2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-postList-faq__answer {
  display: block;
  padding: 8px 18px 8px 40px;
  font-family: "tsukuAR", sans-serif;
  font-size: 14px;
  color: #007a3e;
  border: 1px solid #92c7ad;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-postList-faq__noResult {
  padding: 20px;
  font-family: "HanSan_Bold", sans-serif;
  color: #007a3e;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border: 1px solid #92c7ad;
}