@media (min-width: 450px) {
.pc-none-01{
		display: none
}
}

@media (max-width: 450px) {
.sp-none-01{
		display: none
}
}
/* タブ全体を囲むコンテナの設定 */
@media (min-width: 450px) {
.tab-switch-01 {
    display: flex; /* タブを横並びに */
    flex-wrap: wrap; /* 幅に応じて折り返し */
    margin: auto 0px;/* コンテナの中央寄せ */
    justify-content: center;/* タブの中央寄せ */
    gap: 5px;/* タブ間の余白 */
width: 1040px;
}
/* 各タブボタンの設定 */
.tab-switch-01 > label {
    /*flex: 1 1 auto; /* タブが均等に幅をとるが、幅を超えると折り返す */
    order: -1; /* 上部に表示する */
    position: relative; /* 絶対位置指定用の基準 */
    padding: 0.7em 5.3em; /* 上下左右の内側余白 */
    background-color: #f2f3f4; /* 背景色 */
    color: #999; /* 文字色 */
    text-align: center; /* 文字を中央揃え */
    cursor: pointer; /* ポインターを指アイコンに変更 */
    transition:.3s all;
  border-radius:5px 5px 0px 0px;
  margin-bottom: -4px;
  left: -250px;
}
/* タブボタンのホバーおよび選択状態のスタイル */
.tab-switch-01 > label:hover,
.tab-switch-01 label:has(:checked) {
    background-color: #757F96; /* ホバー/選択時の背景色 */
    color: #fff; /* ホバー/選択時の文字色 */
}
/* ラジオボタン自体は非表示 */
.tab-switch-01 input {
    display: none; /* 見た目に表示されないようにする */
}
/* タブコンテンツのスタイル */
.tab-switch-01 > div {
    display: none; /* 初期状態では非表示 */
    width: 100%; /* コンテンツ幅を全体に */
    padding: 1.5em 1em; /* 内側余白 */
}
/* 選択されたタブのコンテンツを表示 */
.tab-switch-01 label:has(:checked) + div {
    display: block; /* 選択されたタブに対応するコンテンツを表示 */
border: 1px solid;
height: 370px;

}
}
@media (max-width: 450px) {
.tab-switch-02 {
    display: flex; /* タブを横並びに */
    flex-wrap: wrap; /* 幅に応じて折り返し */
    margin: auto 0px;/* コンテナの中央寄せ */
    justify-content: center;/* タブの中央寄せ */
    gap: 5px;/* タブ間の余白 */
  width: 100%;
}
/* 各タブボタンの設定 */
.tab-switch-02 > label {
    /*flex: 1 1 auto; /* タブが均等に幅をとるが、幅を超えると折り返す */
    order: -1; /* 上部に表示する */
    position: relative; /* 絶対位置指定用の基準 */
    padding: 0.7em 2.9em; /* 上下左右の内側余白 */
    background-color: #f2f3f4; /* 背景色 */
    color: #999; /* 文字色 */
    text-align: center; /* 文字を中央揃え */
    cursor: pointer; /* ポインターを指アイコンに変更 */
    transition:.3s all;
  border-radius:5px 5px 0px 0px;
  margin-bottom: -4px;
  /*left: -250px;*/
}
/* タブボタンのホバーおよび選択状態のスタイル */
.tab-switch-02 > label:hover,
.tab-switch-02 label:has(:checked) {
    background-color: #757F96; /* ホバー/選択時の背景色 */
    color: #fff; /* ホバー/選択時の文字色 */
}
/* ラジオボタン自体は非表示 */
.tab-switch-02 input {
    display: none; /* 見た目に表示されないようにする */
}
/* タブコンテンツのスタイル */
.tab-switch-02 > div {
    display: none; /* 初期状態では非表示 */
    width: 100%; /* コンテンツ幅を全体に */
    padding: 1.5em 1em; /* 内側余白 */
}
/* 選択されたタブのコンテンツを表示 */
.tab-switch-02 label:has(:checked) + div {
    display: block; /* 選択されたタブに対応するコンテンツを表示 */
border: 1px solid;
height: 540px;

}
}

@media (min-width: 450px) {
.img-right-01 {
	float: right;
}
.txt-right-01 {
	float: right;
}

.img-left-01 {
	float: left;
}
.txt-left-01 {
	float: left;
}
.u-container {
  width: 1430px;
  }
}

.p-category__ttl {
  margin: 10px 0 40px 0;
  line-height: 1.4;
  font-size: 30px;
  font-weight: normal;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
  color: #99896f;
}
@media screen and (max-width: 767px) {
  .p-category__ttl {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.p-category-free {
  margin-top: 30px;
  margin-bottom: 60px;
  margin-left: 180px;
  margin-right: 180px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-category-free {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-category-search {
  margin-bottom: 30px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
}
/***** カテゴリ一覧 *****/
.p-category-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: -25px;
  margin-right: -25px;
}
@media screen and (max-width: 767px) {
  .p-category-list {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-category-list {
    display: block;
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
  }
}
.p-category-list__item {
  box-sizing: border-box;
  margin-bottom: 50px;
  padding-left: 25px;
  padding-right: 25px;
  width: 33.3333%;
}
@media screen and (max-width: 1030px) {
  .p-category-list__item {
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-category-list__item {
    margin-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}
.p-category-list__link {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .p-category-list__link {
    padding: 10px;
    text-align: left;
    min-height: 70px;
  }
}
.p-category-list__link:hover {
  background: rgba(240, 237, 232, 0.8);
  text-decoration: none;
}
.p-category-list__img {
  display: block;
  margin-right: 20px;
  width: 100px;
}
@media screen and (max-width: 1030px) {
  .p-category-list__img {
    width: 50px;
  }
}
.p-category-list__name {
  display: block;
  flex: 1;
  font-size: 18px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
}
@media screen and (max-width: 767px) {
  .p-category-list__name {
    font-size: 16px;
  }
}
/***** 商品件数・ソート *****/
@media screen and (min-width: 450px) {
.p-item-list-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  width: 1200px;
  margin: 30px auto;
}
}
@media screen and (max-width: 450px) {
.p-item-list-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  margin: 30px auto;
}
}
.p-item-list-num {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-item-list-num {
    font-size: 14px;
  }
}
.p-item-sort-list {
  display: flex;
  flex-wrap: wrap;
}
.p-item-sort-list__item {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-item-sort-list__item {
    margin-left: 25px;
  }
}
.p-item-sort-list__item:first-child {
  margin-left: 0;
}
.p-item-sort-list__item span {
  text-decoration: underline;
}
