<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sub_category_area{
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub_category{
  -webkit-box-flex:0;
      -ms-flex:0 0 25%;
          flex:0 0 25%;
  max-width: 25%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .sub_category {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
}
@media (max-width: 480px) {
  .sub_category {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
}
.sub_category a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 20px 8px 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #FFF;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #231815;
    border-radius: 60px;
    line-height: 1.2;
    -webkit-transition: 0.25s;
    font-size: 12px;
    border: 2px solid #d2d2d2;
    font-weight: bold;
    width: 100%;
    position: relative;
}

.sub_category a:after {
    content: "";
    top: 50%;
    right: 10px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    position: absolute;
    width: 4px;
    height: 4px;
    border-top: 2px solid #231815;
    border-right: 2px solid #231815;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.freespace {
    line-height: 1.8;
    text-align: center;
}

.sub_category a span:first-child {
    max-width: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
}

.sub_category a span:last-child {
    max-width: calc(100% - 30px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 30px);
            flex: 0 0 calc(100% - 30px);
}

/* -----追加 ------ */
/* -----原石カテゴリー説明文 ------ */
.min-date-cate {
  section {
    text-align: left;
  }

  /* チェックボックスを視覚的に隠す */
  input {
    position: absolute;
    left: -9999px;
  }

  label {
    padding: 1em;
    background: #eee;
    display: block;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    text-align: left;
  }

  /* 三角矢印アイコン */
  .icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    width: 24px;
    margin-left: 6px; /* こちらは必要に応じて調整してください */
    flex-shrink: 0;
    transform-origin: center 43%;
    transition: transform 0.5s;
  }

  .icon::before,
  .icon::after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 3px;
    background-color: #000;
  }

  .icon::before {
    left: 0;
    transform: rotate(45deg);
  }

  .icon::after {
    right: 0;
    transform: rotate(-45deg);
  }

  .wrap {
    border: 1px solid #000;
    margin-bottom: 10px;
  }

  /* コンテンツ初めは非表示 */
  .content {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    overflow: hidden;
  }

  .content p {
    margin: 0;
    padding: 1em;
  }

  /* クリックするとコンテンツ表示 */
  input:checked ~ .content {
    max-height: 100%;
    opacity: 1;
    visibility: visible;
  }

  /* アコーディオン表示の際に三角回転 */
  input:checked ~ label .icon {
    transform: rotate(180deg);
  }
}

/* ------原石カテゴリーアクセサリー紹介 ------ */
div.genseki-akuse {
  margin: 0 auto;
  text-align: center; 
}

/* ------ループタイカテゴリー ------ */
div.loop-top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

div.products-rt {
  width: 130px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

div.products-rt img {
  margin-bottom: 5px;
  border: 3px solid #c9b7a9;
}

div.products-rt .name {
  text-align: center;
}

/* -----詰め合わせグループページバナー(下) ------ */
.asort-banner {
  font-size: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.asort-banner a {
  display: block;
  flex-shrink: 0;
  width: 33.333%;
  max-width: 100%;
  box-sizing: border-box;
}

.asort-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.other-product {
  padding: 0.5em 1em;
  margin: 1em 0;
  background: #f4f4f4;
  border-left: solid 6px #5bb7ae;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.33);
}

.other-product h2 {
  margin: 0;
  padding: 0;
  font-size: 12px;
}

@media (max-width: 768px) {
}

@media (max-width: 480px) {
}

/* -----グループページバナー ------ */
div.freespace img{margin-bottom:10px;}

/* -----ページャー ------ */
.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 5px;
    text-align: center;
    font-size: 14px;
}

.pager a {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background-color: #f9f9f9;
    white-space: nowrap;
}

.pager a:hover {
    background-color: #eee;
}

.pager span.product-info {
    color: #555;
}

@media (max-width: 768px) {
    .pager {
        flex-direction: column;
        gap: 1px;
    }

    .pager a {
        width: 100%;
        max-width: 200px;
    }

    .pager span.product-info {
        font-size: 12px;
    }
}</pre></body></html>