/******************************/
/* タブ切り替え */
/******************************/
/* タブ全体を囲むコンテナの設定 */
.tab-switch {
    display: flex; /* タブを横並びに */
    flex-wrap: wrap; /* 幅に応じて折り返し */
    max-width: 1200px; /* コンテナの最大幅を指定 */
    margin:50px auto;/* コンテナの中央寄せ */
    justify-content: center;/* タブの中央寄せ */
    gap: 0 5px;/* タブ間の余白 */
}

/* 各タブボタンの設定 */
.tab-switch > label {
    flex: 1 1 auto; /* タブが均等に幅をとるが、幅を超えると折り返す */
    min-width: 70px; /* 各タブの最小幅を指定 */
    order: -1; /* 上部に表示する */
    position: relative; /* 絶対位置指定用の基準 */
    padding: .7em 1em; /* 上下左右の内側余白 */
    background-color: #f2f3f4; /* 背景色 */
    color: #999; /* 文字色 */
    text-align: center; /* 文字を中央揃え */
    cursor: pointer; /* ポインターを指アイコンに変更 */
}

/* タブボタンのホバーおよび選択状態のスタイル */
.tab-switch > label:hover,
.tab-switch label:has(:checked) {
    background-color: #404040; /* ホバー/選択時の背景色 */
    color: #fff; /* ホバー/選択時の文字色 */
}

/* ラジオボタン自体は非表示 */
.tab-switch input {
    display: none; /* 見た目に表示されないようにする */
}

/* タブコンテンツのスタイル */
.tab-switch > div {
    display: none; /* 初期状態では非表示 */
    width: 100%; /* コンテンツ幅を全体に */
    padding: 1.5em 0 1.5em 0; /* 内側余白 */
}

/* 選択されたタブのコンテンツを表示 */
.tab-switch label:has(:checked) + div {
    display: block; /* 選択されたタブに対応するコンテンツを表示 */
}

/******************************/
/* headカード */
/******************************/

/* 4カラム */
*, *:before, *:after {
	box-sizing: border-box;
}
.col_4{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_4 > div{
	width: 25%;
	padding-left: 10px;
}

@media screen and (max-width: 768px) {
	.col_4 > div{
	 width: 48%;
     padding-left:2%;
     padding-bottom:20px;
	}
}
.card{
  width: 100%;
  height: auto;
}
.card__imgframe{
  width: 100%;
  height: auto;
  background-size: cover;
  box-sizing: border-box;
}
.card__textbox{
  width: 100%;
  height: auto;
  padding: 20px 18px;
  background: #ffffff;
  box-sizing: border-box;
}
.card__textbox > * + *{
  margin-top: 10px;
}
.card__titletext{
  font-size: 14px;
  font-weight: bold;
  line-height: 125%;
}
.card__overviewtext{
  font-size: 12px;
  line-height: 150%;
}
.card-skin{
border: 1px solid #eee;
}
/******************************/
/* growカード */
/******************************/
.growcontainer__wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

.growcard {
  box-shadow: 1px 1px 1px rgba(106, 131, 152, 0.2);
  display: flex;
  flex-direction: column;
  width: calc(100% / 2 - 20px * 1 / 2);
  background-color: white;
  padding-bottom:20px;
}
@media (max-width: 768px) {
  .growcard {
    width: calc(50% - 10px / 1);
  }
}
@media (max-width: 414px) {
  .growcard {
    width: 100%;
  }
}
.growcard__item {
  padding: 10px 10px 0 10px;
}
.growcard a{
  text-decoration: none;
}


.growflexible {
  flex-grow: 1;
}

/******************************/
/* 2column */
/******************************/
.cont-2cl {
  margin-top:20px;
  display: flex;
  flex-wrap: wrap;
}
.column-l {
  width: 60%;
  margin:0 auto;
}
.column-r {
  width: 40%;
}

@media (max-width: 767px) {
  .column-l {
    width: 100%;
  }
  .column-r {
    width: 100%;
  }
}

/* top-ul */
.top1{
 margin-left:18px;
 }
@media (max-width: 767px) {
 .top1{
   margin-left:0px;
   margin-top:30px;
 }
}
.top1-a{
 margin-bottom:18px;
 }

/******************************/
/* SLIDER */
/******************************/

#slider div {
  width: 100%;
  max-width: 100%;
  height: auto;
}
#slider > div {
  display: none;
        margin:0 auto;
}
.bx-viewport #slider > div {
  display: block;
}
.bx-wrapper {
  z-index: 0;
}
.bx-wrapper img {
  width: 100%;
  height: auto;
}
.bx-wrapper .bx-viewport {
  box-shadow: none !important;
  border: 0 !important;
  left: 0 !important;
}
.bx-wrapper .bx-pager {
  bottom: -27px !important;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  margin: 0 3px !important;
  padding-top: 15px;
  width: 25px !important;
  height: 1px !important;
  background: transparent !important;
  border-bottom: 1px solid #cccccc;
  border-radius: 0 !important;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: transparent !important;
  border-bottom: 1px solid #000000;
}
/******************************/
/* NEWS */
/******************************/
.p-line-informaiton {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
  width: 760px;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton {
    display: block;
    width: auto;
  }
}
.p-line-informaiton ul {
  flex: 1;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton ul {
    font-size: 12px;
  }
}
.p-line-informaiton li {
  margin-bottom: 15px;
}
.p-line-informaiton__ttl {
  position: relative;
  margin: 0 40px 0 0;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton__ttl {
    margin: 0;
  }
}
.p-line-informaiton__ttl:before {
  content: "";
  position: absolute;
  top: 7px;
  right: -20px;
  width: 1px;
  height: 10px;
  background: #d2d2d2;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton__ttl:before {
    content: none;
  }
}
/***** お知らせ *****/
.p-top-news {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    display: block;
    margin-bottom: 45px;
  }
}
.p-top-news__ttl {
  box-sizing: border-box;
  margin-right: 25px;
  padding: 10px;
  width: 110px;
  border: 1px solid #b2b2b2;
  font-size: 18px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-news__ttl {
    margin-right: 0;
    margin-bottom: 10px;
    padding: 5px;
    width: 70px;
    border: 1px solid #b2b2b2;
    font-size: 12px;
  }
}
.p-top-news__body {
  flex: 1;
  margin-bottom: 0;
}
/******************************/
/* TOP RECOMMEND */
/******************************/
.p-recommend.u-container {
  padding-bottom: 0;
}
/******************************/
/* NEW　ARRIVAL */
/******************************/
.p-new-item.u-container {
  margin-top:30px;
  padding-bottom: 0;
}
/******************************/
/* TOP RANKING */
/******************************/
.p-ranking-list .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.p-ranking-list .slick-prev, .p-ranking-list .slick-next {
  top: 80px;
  width: 30px;
  height: 30px;
  transition: all 0.4s ease;
  z-index: 1;
  background: rgba(255,255,255,0.4);
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev, .p-ranking-list .slick-next {
    top: 110px;
    width: 45px;
    height: 45px;
  }
}
.p-ranking-list .slick-prev:before, .p-ranking-list .slick-next:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 15px;
  height: 15px;
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
  transition: all 0.4s ease;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev:before, .p-ranking-list .slick-next:before {
    top: 15px;
  }
}
.p-ranking-list .slick-prev {
  left: 20px;
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev {
    left: 0px;
  }
}
.p-ranking-list .slick-prev:before {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev:before {
    left: 17px;
  }
}
.p-ranking-list .slick-next {
  right: 20px;
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-next {
    right: 0px;
  }
}
.p-ranking-list .slick-next:before {
  left: 4px;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-next:before {
    left: 13px;
  }
}
.p-ranking-list__item {
  position: relative;
  box-sizing: border-box;
  margin-right: 20px;
  margin-left: 20px;
  padding-bottom: 25px;
  word-break: break-all;
}
@media screen and (max-width: 1030px) {
  .p-ranking-list__item {
    margin-right: 5px;
    margin-left: 5px;
  }
}
.p-ranking-list__img {
  position: relative;
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ranking-list__img {
    text-align: center;
  }
}
.p-ranking-list__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-ranking-list__img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-ranking-list__img img {
  display: inline-block !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  text-align: center;
}
.p-ranking-list__num {
  position: absolute;
  top: 0;
  left: 1px;
  width: 24px;
  line-height: 24px;
  font-size: 12px;
  font-weight: bold;
  background: #000000;
  color: #ffffff;
  text-align: center;
}
.p-ranking-list__ttl img {
  vertical-align: middle;
}
.p-ranking-list__price {
  color: #909090;
  margin-top: 20px;
}
.p-ranking-list__btn {
  display: block;
  position: absolute;
  right: 0px;
  bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-ranking-list__btn.is-added {
  color: #000000;
}
.p-ranking-list__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/******************************/
/* TOP INFORMATION */
/******************************/
.p-information {
  padding-bottom: 0;
}
@media screen and (max-width: 1030px) {
  .p-information {
    padding-bottom: 45px;
  }
}
.p-information__body {
  margin-left: 60px;
  margin-right: 60px;
  line-height: 2;
}
@media screen and (max-width: 1030px) {
  .p-information__body {
    margin-left: 0;
    margin-right: 0;
  }
}
/******************************/
/* TOP FREE */
/******************************/
.p-free__body {
  margin-left: 60px;
  margin-right: 60px;
  line-height: 2;
}
@media screen and (max-width: 1030px) {
  .p-free__body {
    margin-left: 0;
    margin-right: 0;
  }
}
/******************************/
/* TOP BANNER */
/******************************/
.p-bnr {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1030px) {
  .p-bnr {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-bnr-list {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-bnr-list {
    display: block;
  }
}
.p-bnr-list__item {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  width: 33.3333%;
}
@media screen and (max-width: 1030px) {
  .p-bnr-list__item {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-bnr-list__item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 10px;
    width: auto;
    text-align: center;
  }
}

/******************************/
/* TOP 新着欄 */
/******************************/
.c-item-list1 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -35px;
  margin-right: -35px;
}
@media screen and (max-width: 1030px) {
  .c-item-list1 {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 767px) {
  .c-item-list1 {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.c-item-list1__item {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 25px;
  width: 20%;
  transition: opacity 0.2s;
  word-break: break-all;
}
@media screen and (max-width: 1030px) {
  .c-item-list1__item {
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
   width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .c-item-list1__item {
    padding-left: 10px;
    padding-right: 10px;
    width: 33.3%;
  }
}
.c-item-list1__item.is-hidden {
  display: none;
}
.c-item-list1__img {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-item-list1__img {
    text-align: center;
  }
}
.c-item-list1__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.c-item-list1__img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-item-list1__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  text-align: center;
}
.c-item-list1__ttl img {
  vertical-align: middle;
}
.c-item-list1__price {
  color: #3f3f3f;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 15px;
}
.c-item-list1__price.is-strikethrough {
  margin-top: 0;
  text-decoration: line-through;
}
.c-item-list1__expl {
  margin-top: 15px;
}
.c-item-list1__btn {
  display: block;
  position: absolute;
  right: 30px;
  bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 1030px) {
  .c-item-list1__btn {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-item-list1__btn {
    right: 10px;
  }
}
.c-item-list1__btn.is-added {
  color: #000000;
}
.c-item-list1__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
svg:not(:root) {
  overflow: hidden;
}
.morebtn {
	font-size: 16px;
	border: 1px solid #666;
	text-align: center;
	max-width: 200px;
	margin: 0px auto;
    padding:10px 20px;
}
.btn12 {
	border: none;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
}

/******************************/
/* TOP カテゴリリスト */
/******************************/
.cateback{
  margin-top:80px;
  padding:30px 20px 20px;
  background-color:#f7f7f7;
}

.category-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #ddd;
  padding: 8px;
  background-color: #fff;
  text-decoration: none; /* リンクの下線を消す */
  color: inherit; /* テキストの色を継承 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.category-title {
  font-size: 0.9rem;
  color: #333;
}

/* スマホ表示用スタイル */
@media (max-width: 960px) {
  .category-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-item {
    flex-direction: column;
    text-align: center;
  }

  .category-image {
    width: 70px;
    height: auto;
  }
}
/* スマホ表示用スタイル */
@media (max-width: 580px) {
  .cateback{
  margin-top:80px;
  padding:30px 10px 20px;
  background-color:#f7f7f7;
}
  
  .category-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 8px;
  }

  .category-item {
    flex-direction: column;
    text-align: center;
  }

  .category-image {
    width: 50px;
    height: auto;
  }
}

/******************************/
/* ランキング */
/******************************/
/* pc 768px以上 */
.wrap-rank{
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
   display:flex;
}
.left-rank{
  float: left;
  width: 44%;
}
.right-rank{
  float: right;
  width: 55%;

}

/* スマホ 767px以下 */
@media only screen and (max-width: 767px) {
  .wrap-rank{
    width: 100%;
    display:block;
  }
  .left-rank{
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .right-rank{
    /* floatを解除 */
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* カードデザイン */
.rank-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.rank-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    border: 1px solid #dcdcdc;
    position: relative;/*相対配置*/
}

.rank-card-image {
    width: 100%;
    object-fit: contain;
}

.rank-card-box {
    padding: 1rem;
}

.rank-card-title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.rank-card-description {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
}
.rank1 {
  position: absolute;/*絶対配置*/
  background:#DAB300;
  color:#fff;
  font-size:1rem;
  font-weight:bold;
  padding:10px 17px;
  }

/* カードデザイン2-4 */
.rank2-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.rank2-card {
    display: flex;
    flex-direction: column;
    width: 30%;
    margin: 0 10px 10px 0;
  	border: 1px solid #dcdcdc;
}
@media only screen and (max-width: 767px) {
.rank2-card {
    display: flex;
    flex-direction: column;
    width: 48%;
    margin: 1%;
  	border: 1px solid #dcdcdc;
 }
}
.rank2-card-image {
    width: 100%;
    object-fit: contain;
}

.rank2-card-box {
    padding: 1rem;
}

.rank2-card-title {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.rank2-card-description {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.rank2 {
  position: absolute;/*絶対配置*/
  background:#C9C9C4;
  color:#fff;
  font-size:0.8rem;
  font-weight:bold;
  padding:8px 17px;
  }
.rank3 {
  position: absolute;/*絶対配置*/
  background:#C08D5E;
  color:#fff;
  font-size:0.8rem;
  font-weight:bold;
  padding:8px 17px;
  }
.rank4 {
  position: absolute;/*絶対配置*/
  background:#454545;
  color:#fff;
  font-size:0.8rem;
  font-weight:bold;
  padding:8px 17px;
  }

/* ディスカウント系 */
.dscred{
 color:#ed293e;
}
.dscred2{
 color:#fff;
 background-color:#ed293e;
 font-size:0.8em;
 padding:2px 8px;
}
.dscfont{
 font-weight: normal;
 font-size:0.9em;
}

/* 文字数制限 */

.txt-limit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
}