@charset "UTF-8";
/* **********************************************
    ツキネコオンラインショップ 個別エリア
    
    デスクトップ（ベース）
    タブレット（max-width: 1030px）
    スマホ（max-width: 767px）
    ★デスクトップ限定も追加
    
 ********************************************** */
/* ===== desktop ===== */
@media screen and (min-width: 1031px) {
}
/* ===== PC wide ===== */
@media screen and (min-width: 1280px) {
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
}
/* ===== mobile ===== */
@media screen and (max-width: 767px) {
}
/* ---------------------------------------------------------
------------------------------------------------------------

    商品一覧ページ レイアウト

------------------------------------------------------------
---------------------------------------------------------- */
/* ===== desktop ===== */
@media screen and (min-width: 1031px) {
    .l-contents-main {
        width: calc( 100% - 270px );
    }
    .p-category__ttl {
        margin: 10px 0 20px 0;
        font-size: 40px;
        font-weight: 400;
    }
}
.p-item-list-head {
    padding: 10px;
    border-top: 1px solid rgba(108,124,132,0.15);   /* #6C7C84 */
    border-bottom: 1px solid rgba(108,124,132,0.15);   /* #6C7C84 */
    margin: 20px auto;
}
.p-category__lead {
    display: block;
    margin: 0px 0 20px 0;
    font-size: 15px;
    color: #666;
}
.p-category__lead small {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    color: #999;
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .p-item-list-head {
        padding: 10px;
        border-top: 1px solid rgba(108,124,132,0.15);   /* #6C7C84 */
        border-bottom: 1px solid rgba(108,124,132,0.15);   /* #6C7C84 */
        margin: 20px auto;
    }
    .p-category__ttl {
        margin: 0px 0 20px 0;
        font-size: 30px;
        font-weight: 500;
    }
    .p-category__lead {
      display: block;
      margin: 0px 0 20px 0;
      font-size: 15px;
      color: #333;
    }
    .p-category__lead small {
      margin-top: 7px;
      font-size: 10px;
    }
}
/* ===== mobile ===== */
@media screen and (max-width: 767px) {
}
/* ---------------------------------------------------------
    一覧ページ 上にくるグループリスト
 --------------------------------------------------------- */
/* ===== desktop ===== */
@media screen and (min-width: 1031px) {
    .p-category-free {
        margin-bottom: 0px;
    }
    .p-category-free:has(.infotxt, .infotxt2) {
        margin-bottom: 20px;
    }
    .infotxt {
        font-size: 11px;
        line-height: 1.4;
        color: #666;
        display: block;
    }
    .infotxt br {
        display: none;
    }
    .p-category-list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: 60px;
        margin-left: 0px;
        margin-right: 0px;
        gap: 10px;
    }
    .p-category-list__item {
        width: calc(100% / 6.35);
        margin-bottom: 0px;
        padding: 10px 10px;
        box-sizing: border-box;
        font-size: 14px;
        line-height: 1.4;
        text-align: left;
        background: #fff;
        border-radius: 7px;
        border: 1px solid #eee;
        transition: background .2s ease;
    }
    .p-category-list__item:hover {
        text-decoration: none;
        background: rgba(108, 124, 132, 0.18);
    }
    .p-category-list__link {
        width: 100%;
        height: 100%;
        display: block;
        text-decoration: none;
        color: inherit;
        position: relative;
    }
    .p-category-list__link:hover .p-category-list__name {
        text-decoration: none;
    }
    .p-category-list__img {
        margin: 5px 0px;
    }
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .p-category-free {
        margin-bottom: 0px;
    }
    .p-category-free:has(.infotxt, .infotxt2) {
        margin-bottom: 20px;
    }
    .infotxt {
        font-size: 13px;
        line-height: 1.4;
        color: #666;
    }
    .p-category-list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: 60px;
        margin-left: 0px;
        margin-right: 0px;
        gap: 7px;
    }
    .p-category-list__item {
        width: calc(100% / 3.13);
        margin-bottom: 0px;
        padding: 5px 7px 5px 7px;
        box-sizing: border-box;
        font-size: 13px;
        line-height: 1.3;
        text-align: left;
        text-decoration: none;
        background: #fff;
        border-radius: 7px;
        border: 1px solid #eee;
        transition: background .2s ease;
    }
    .p-category-list__link:before {
        content: none;
    }
    .p-category-list__item:hover {
        text-decoration: none;
        background: rgba(108, 124, 132, 0.18);
    }
    .p-category-list__link:hover {
        text-decoration: none;
    }
    .p-category-list__img {
        width: 100%;
        display: block;
        margin: 5px 0px;
    }
    .p-category-list__img img {
        width: 100%;
        display: block;
        margin: 0px auto;
    }
    .p-category-list__link:hover .p-category-list__name {
        text-decoration: none;
    }
}

/* 色玉 */
.color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0px 0 0px;
  padding: 0;
  list-style: none;
}
.color-list li {
  list-style: none;
}
.color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: transform .2s ease, box-shadow .2s ease;
}
/* ホバー */
.color:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.color.red { background: #d32f2f; }
.color.pink { background: #e91e63; }
.color.orange { background: #f57c00; }
.color.yellow { background: #fbc02d; }
.color.green { background: #388e3c; }
.color.blue { background: #1976d2; }
.color.purple { background: #7b1fa2; }
.color.brown { background: #6d4c41; }
.color.gray { background: #9e9e9e; }
.color.black { background: #000; }
.color.white {
  background: #fff;
  border: 1px solid #bbb; /* 白だけ枠強める */
}
.color.gold {
  background: linear-gradient(45deg, #d4af37, #f7e27f);
}

.color.silver {
  background: linear-gradient(45deg, #aaa, #eee);
}

.color.metallic {
  background: linear-gradient(45deg, #999, #ccc);
}
.color.vivid {
  background: linear-gradient(45deg, #ff1744, #ffea00, #00e676, #2979ff);
}

.color.dark {
  background: #444;
}

.color.neon {
  background: #39ff14;
  box-shadow: 0 0 6px rgba(57,255,20,0.8);
}

.color.pastel {
  background: #ffd1dc;
}

.color.pearl {
  background: radial-gradient(circle, #ffffff, #ddd);
}

.color.matte {
  background: #777;
}
/* 透明（チェッカー） */
.color.clear {
  background: repeating-conic-gradient(#ccc 0% 25%, #fff 0% 50%);
  background-size: 8px 8px;
}

/* 半透明 */
.color.translucent {
  background: rgba(100, 100, 100, 0.4);
}

/* 不透明 */
.color.opaque {
  background: #555;
}
.color.is-active {
  outline: 2px solid #333;
  outline-offset: 2px;
}
/* ===== PC wide ===== */
@media screen and (min-width: 1280px) {
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    /* 色玉 */
    .l-contents-side .color-list {
        gap: 10px;
        margin: 0px 0 0px;
        padding: 0;
    }
    /* サイドバーの色玉 */
    .l-contents-side .color-list {
        padding: 0 15px;
    }
    .color {
        width: 35px;
        height: 35px;
    }
}
/* ===== mobile ===== */
@media screen and (max-width: 767px) {
}
/* ---------------------------------------------------------
    一覧ページ 商品カード
 --------------------------------------------------------- */
/* どこでもカラーミー カートボタン */
.cartjs_box {
    padding: 0px!important;
}
.cartjs_cart_in input {
    width: 100% !important;
    height: 32px !important;
    margin: 5px auto 20px !important;
    font-size: 14px !important;
    background-color: #5c9cb9 !important;
    color: #fff !important;
    border-radius: 999px !important;
    font-weight: 500 !important;
    transition: opacity .2s ease !important;
    border: none !important;
    cursor: pointer !important;
}
.cartjs_cart_in input:hover {
    opacity: .85;
}
.cartjs_product_table {
    display: none!important;
}
.c-item-list__item {
  display: flex;
  flex-direction: column;
}
.c-item-list__txt {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-item-list__ttl,
.p-product-recommend-list__ttl {
  min-height: 3.2em;
}
.item-name {
  line-height: 1.6;
  margin: 0;
}
/* ===== desktop ===== */
@media screen and (min-width: 1031px) {
    .c-item-list {
        margin-left: -15px;
        margin-right: -15px;
    }
    .c-item-list__item {
        margin-bottom: auto;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 30px;
        width: 20%;
    }
    .p-new-item .c-item-list,
    .p-recommend .c-item-list {  /* トップおすすめ新着のみ */
        margin: 40px 0px 0px;
    }
    .p-new-item .c-item-list__item,
    .p-recommend .c-item-list__item {  /* トップおすすめ新着のみ */
        width: calc(100% / 6);
    }
    .c-item-list__img {
        margin-bottom: 10px;
    }
    .c-item-list__ttl .item-name {
        margin: 0px;
    }
    .c-item-list__ttl a {
        color: #333;
    }
    .c-item-list__price {
        color: #333;
        margin-top: 2px;
        font-weight: 500;
        font-size: 1.3em;
        text-align: center;
    }
    .c-item-list__ttl a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .c-item-list {
        margin-left: -15px;
        margin-right: -15px;
    }
    .c-item-list__item {
        margin-bottom: 0px;
        padding-bottom: 20px;
    }
    .c-item-list__img {
        margin-bottom: 5px;
    }
    .c-item-list__ttl .item-name {
        margin: 0px;
    }
    .c-item-list__ttl a {
        color: #333;
    }
    .c-item-list__price {
        color: #333;
        margin-top: 2px;
        font-weight: 600;
        font-size: 1.3em;
        text-align: center;
    }
    .c-item-list__ttl a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    /* トップおすすめ新着のみ */
    .p-recommend .c-item-list,
    .p-new-item .c-item-list {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        margin: 0px 0 0;
        padding: 7px 0 30px;
        overflow-x: scroll;
        overflow-y: visible;
    }
    .p-recommend .c-item-list__item,
    .p-new-item .c-item-list__item {
        box-sizing: border-box;
        padding: 0;
        margin-right: 0px;
        flex: 0 0 auto;
        width: 120px;
        word-break: break-all;
    }
}
/* ===== mobile ===== */
@media screen and (max-width: 767px) {
}
/* ---------------------------------------------------------
    一覧ページ NEWアイコンカスタマイズ
 --------------------------------------------------------- */
.product-card,
.p-product-recommend-list__item {
  position: relative;
}
.badge {
  padding: 2px 4px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  opacity: 0.85;
  mix-blend-mode: multiply;
  z-index: 2;
  white-space: nowrap;
  backdrop-filter: blur(1px);

  position: absolute;
  top: -10px;
  left: 9px;
}
.c-item-list .badge {
  position: absolute;
  top: -5px;
  left: 5px;
}
.p-product-recommend-list__ttl .badge {
  position: absolute;
  top: -10px;
  left: 0px;
}
.p-product-info__ttl .badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  position: relative;
}
.badge-wrap.has-badge::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 16px;
    background: #f5f4f0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    top: -5px;
    left: -24px;
    rotate: -45deg;
    z-index:3;
}
.badge-wrap.has-badge::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 1px;
    background: #5c9cb9;
    top: 3px;
    left: -15px;
    rotate: -45deg;
    z-index:4;
}
.p-product-info__ttl .badge {
  position: static;
  mix-blend-mode: normal;
  opacity: 1;
  backdrop-filter: none;
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .p-product-info__ttl .badge-wrap {
        margin-bottom: 3px;
    }
    .badge {
        position: absolute;
        top: -7px;
        left: 5px;
        font-size: 10px;
    }
    .p-product-recommend-list__ttl .badge,
    .c-favorite-list__txt .badge {
        position: absolute;
        top: -10px;
        left: 0px;
        font-size: 10px;
    }
    .p-recommend .c-item-list .badge,
    .p-new-item .c-item-list .badge {   /* トップおすすめ新着のみ */
        position: absolute;
        top: -7px;
        left: 0px;
    }
}

.badge-new {
  background: rgba(239,129,169,0.88); /* #ef81a9 */
}
.badge-sale {
  background: rgba(200,69,69,0.85); /* #c84545 */
}
.badge-member {
  background: rgba(237,129,55,0.85); /* #ed8137 */
}
.badge-restock {
  background: rgba(160,181,157, 0.9); /* #A0B59D */
}
.badge-lowstock {
  background: rgba(197,169,165, 0.9); /* #C5A9A5 */
}
.badge-soldout {
  background: rgba(217,217,217,0.85); /* #d9d9d9 */
  color: #333;
}
.badge-featured {
  background: rgba(80,173,222, 0.8); /* #50adde */
}
.badge-freeshipping {
  background: rgba(167,155,183, 0.9); /* #a79bb7 */
}
/* セール価格の時赤文字 */
.c-item-list__price.is-sale,
.c-item-list__price.is-sale .price-tax,
.c-item-list__price.is-discount-on,
.c-item-list__price.is-discount-on .price-tax {
  color: #d63b3b;
  font-weight: 500;
}
/* セール価格の時赤文字（会員限定セールの場合） */
.c-item-list__price.is-discount-off {
  color: #d78585;
  text-decoration-line: line-through;
  text-decoration-style: double;
  font-weight: 500;
}
/* セール価格の時赤文字（会員限定セールの場合、税込の部分） */
.c-item-list__price.is-discount-off .price-tax {
  color: #d78585;
  font-weight: 500;
}
/* ---------------------------------------------------------
    一覧ページ スマホでのページャー表示
 --------------------------------------------------------- */
/* 丸いかたち */
.c-pager-list__item {
  border-radius: 50%;
}
.c-pager-list__link {
    border-radius: 50%;
}
/* デフォルト（PC） */
.c-pager-sp {
  display: none;
}
/* スマホ */
@media (max-width: 768px) {
    .c-pager {
        margin-top: 30px;
        margin-bottom: 60px;
        text-align: center;
    }
    .c-pager-list {
        display: none;
    }
    .c-pager-sp {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        font-weight: 400;
    }
    .c-pager-sp a {
        text-decoration: none;
        font-size: 22px;
        font-weight: 600;
    }
    .c-pager-sp .is-disabled {
        opacity: 0.4;
    }
    .c-pager-list__link {
        min-width: 35px;
        height: 36px;
    }
}
/* ===== desktop ===== */
@media screen and (min-width: 1031px) {
  .c-pager {
      margin-top: 60px;
      margin-bottom: 60px;
  }
}
/* ---------------------------------------------------------
------------------------------------------------------------

    商品詳細ページ レイアウト

------------------------------------------------------------
---------------------------------------------------------- */
/* ---------------------------------------------------------
    商品詳細ページ 商品タグ（グループ）表示
 --------------------------------------------------------- */
.product_belong_box {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto 60px;
}
.product_belong_lists {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin: 0px auto 20px;
}
.product_belong_lists .product_belong_list a {
    display: block;
    padding: 5px 7px 3px;
    font-size: 13px;
    line-height: 1.4;
    color: #84a4b2;
    border-radius: 3px;
    border: 1px solid #84a4b2;
    background: #ececec;
}
.product_belong_lists .product_belong_list a:hover {
    text-decoration: none;
    background: #fff;
}
/* ---------------------------------------------------------
    商品詳細ページ 大枠・商品画像
 --------------------------------------------------------- */
form {
    margin: 0 0 0px;
}
.p-product {
    margin-bottom: 0px;
}
.p-product-main,
.p-product-detail {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}
.p-product-detail {
    margin-top: 0;
}
.p-product-img {
    width: 46%;
    height: auto;
    display: block;
}
.u-overflow-slide {
    padding-bottom: 10px;
}
.p-product-info {
    width: 48%;
    height: auto;
    display: block;
}
.p-product-img__main .slick-prev {
    left: -15px;
}
.p-product-img__main .slick-next {
    right: -15px;
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .p-product-main,
    .p-product-detail {
        gap: 0px;
    }
    .p-product-img {
        width: 100%;
        margin: 0px auto 15px;
    }
    .p-product-info {
        width: 100%;
        margin: 0px auto;
    }
    .p-product-img__main,
    .p-product-img__thumb {
        width: 100%;
        max-width: 700px;
    }
    .p-product-thumb-list {
        gap: 2px;
    }
    .p-product-img__main .slick-prev {
        left: -20px;
    }
    .p-product-img__main .slick-next {
        right: -20px;
    }
}
/* ---------------------------------------------------------
    商品詳細ページ 組み合わせ購入商品表示エリア
 --------------------------------------------------------- */
.p-product-other {
    width: 100%;
    order: -1;
}
.p-product__ttl {
    margin: 0 0 20px;
    padding: 5px 0 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.025em;
    color: #5c9cb9;
}
.p-recommend .p-product__ttl,
.p-new-item .p-product__ttl {   /* トップおすすめ新着のみ */
    text-align: center;
}
.p-product__ttl-en {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}
.p-product__ttl-en::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: #5c9cb9;
    right: -6px;
    top: 10%;
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: right center;
}
.p-product__ttl__ja {
    margin: 0px;
    font-size: 14px;
    font-weight: normal;
    color: #707070;
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .p-product__ttl {
        margin-top: 0;
        margin-bottom: 10px;
        padding-top: 5px;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.4;
        letter-spacing: 0.025em;
        color: #5c9cb9;
    }
    .p-product__ttl-en::after {
        content: '';
        position: absolute;
        width: 40px;
        height: 1px;
        background: #5c9cb9;
        right: -4px;
        top: 15%;
        transform: translateY(-50%) rotate(-45deg);
        transform-origin: right center;
    }
    .p-product__ttl__ja {
        display: block;
        margin: 1px 0px 15px;
        font-size: 14px;
        font-weight: normal;
        color: #707070;
        white-space: nowrap;
    }
}
.p-product-recommend-list {
    display: flex;
    flex-wrap: nowrap;
    margin: 0px 0px 50px;
    padding: 14px 0 10px;
    overflow-x: scroll;
    overflow-y: visible;
    gap: 20px;
}
.p-product-recommend-list__item {
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
        flex: 0 0 auto;
        width: 150px;
    word-break: break-all;
}
.p-product-recommend {
    position: relative;
}
.p-product-recommend::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to left, #f5f4f0, transparent);
    pointer-events: none;
    box-shadow: inset -10px 0 10px -10px rgba(245,244,240,0.1);
}
.p-product-recommend-list__img {
    margin-bottom: 10px;
}
.p-product-recommend-list__price {
    margin-top: 0px;
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .p-product-recommend-list {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        margin: -7px 0 20px;
        padding: 14px 0 0;
        padding-bottom: 10px;
        overflow-x: auto;
        overflow-y: visible;
    }
    .p-product-recommend-list__item {
        flex: 0 0 auto;
        width: 90px;
    }
}
/* セール価格の時赤文字 */
.p-product-recommend-list__price.is-sale,
.p-product-recommend-list__price.is-discount-on {
  color: #d63b3b;
  font-weight: 500;
}
/* セール価格の時赤文字（会員限定セールの場合） */
.p-product-recommend-list__price.is-discount-off {
  color: #d78585;
  text-decoration-line: line-through;
  text-decoration-style: double;
  font-weight: 500;
}
/* ---------------------------------------------------------
    商品詳細ページ 商品情報エリア
 --------------------------------------------------------- */
/* ---------------------------------------------------------
    商品詳細ページ 商品名・型番・価格表示
 --------------------------------------------------------- */
.p-product-info__ttl {
    margin: 0px auto 0px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #231815;
}
.p-product-info__ttl p {
    margin: 0px 0px 10px;
    line-height: 1.4;
}
.p-product-info__id {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #666;
}
.p-product-price {
    margin-top: 10px;
    margin-bottom: 30px;
}
.p-product-price__sell {
    font-size: 2em;
    font-weight: 600;
    color: #333;
}
.price-tax {
    font-size: 0.6em;
    font-weight: 500;
    color: #333;
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .p-product-info__ttl {
        position: relative;
        margin: 0px auto;
        font-size: 25px;
        font-weight: 500;
        line-height: 1.4;
        letter-spacing: 0.01em;
        color: #231815;
    }
    .p-product-info__ttl p {
        line-height: 1.4;
    }
    .p-product-price {
        margin-top: 10px;
        margin-bottom: 20px;
    }
}
/* SALE商品のセール価格 */
.p-product-price.is-sale .p-product-price__sell,
.p-product-price.is-sale .p-product-price__sell .price-tax {
  color: #d63b3b;
  font-weight: 500;
}
/* SALE商品の通常価格 */
.p-product-price.is-sale .p-product-price__list-price {
/*
  color: #888;
  font-size: 0.95em;
  text-decoration-line: line-through;
  text-decoration-style: double;
  text-decoration-thickness: 1px;
*/
}
/* SALE商品の価格：見出し */
.p-product-price.is-sale .stock-mds {
  color: #d63b3b;
}
/* ---------------------------------------------------------
    商品詳細ページ 個数入力
 --------------------------------------------------------- */
.p-product-form-stock {
    margin-top: 0px;
    margin-bottom: 20px;
}
.stock-mds {
    display: block;
    font-size: 13px;
    font-weight: 400;
    padding-right: 15px;
}
.p-product input[type=text].qty-input {
    width: 60px;
    height: 40px;
    padding: 5px;
    box-sizing: border-box;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    border: 1px solid #bfbfbf;
}
.quantity-box {
    display: flex;
    align-items: center;
    gap: 5px;
}
.qty-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    background: #e2e2e2;
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .qty-btn {
        width: 40px;
        height: 40px;
        cursor: pointer;
        border: none;
        background: #e2e2e2;
    }
}

.p-product-form-stock__unit {
    margin: 13px 10px 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}
/* ---------------------------------------------------------
    商品詳細ページ カートに入れる＆お気に入り
 --------------------------------------------------------- */
/* ===== desktop ===== */
@media screen and (min-width: 1031px) {
    /* カートに入れる＆お気に入り横並び */
    .p-product-form-btn__cart {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
}
/* カートに入れるボタン */
.c-btn-cart {
    flex-basis:55%;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0px 17px;
    border-radius: 50px;
    background: #5c9cb9;
    color: #fff;
    transition: all .25s ease;
}
.c-btn-cart:hover {
    background: #4b88a3;
    color: #fff;
    text-decoration: none;
    transform: translateY(1px);
}
.c-icon-cart {
    margin-right: 7px;
    width: 24px;
    height: 24px;
    background-size: 100% auto;
    vertical-align: -3px;
}
/* お気に入りボタン */
.favorite-button {
    flex-basis:43%;
    width: 100%;
    display: inline-block;
    padding: 17px 0px 17px;
    box-sizing: border-box;
    font-size: 1.25em;
    font-weight: 500;
    color: #5c9cb9;
    text-align: center;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #5c9cb9;
    cursor: pointer;
    transition: all .25s ease;
}
.favorite-button:hover {
    background: #eef6fa;
    color: #4b88a3;
    border-color: #4b88a3;
    text-decoration: none;
    transform: translateY(1px);
}
/* お気に入りアイコン */
.fav-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: -3px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('https://tsukineko.co.jp/ols/_img/icon-heart.svg');
}
.favorite-button.fav-items .fav-icon {
  background-image: url('https://tsukineko.co.jp/ols/_img/icon-heart-fill.svg');
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .c-btn-cart {
        max-width: initial;
        font-size: 20px;
    }
    .c-icon-cart {
        margin-right: 15px;
        width: 24px;
        height: 24px;
        background-size: 100% auto;
        vertical-align: -3px;
    }
    .favorite-button {
        max-width: initial;
        font-size: 20px;
        margin-top: 10px;
    }
}
/* ---------------------------------------------------------
    商品詳細ページ シェアボタン・固定リンク
 --------------------------------------------------------- */
.p-product-sns-list {
    margin-top: 20px;
}
.p-product-sns-list__item {
    margin-right: 7px;
}
/* ===== desktop ===== */
@media screen and (min-width: 1031px) {
    .p-product-link-list {
        margin-top: 25px;
        display: flex;
        gap: 28px;
    }
    .p-product-link-list__item {
        margin-bottom: 0px;
        position: relative;
    }
    .p-product-link-list__item::after {
        content: "｜";
        position: absolute;
        right: -20px;
    }
    .p-product-link-list__item.last::after {
        content: none;
    }
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .p-product-link-list {
        margin-top: 25px;
        display: block;
    }
    .p-product-link-list__item {
        margin-bottom: 17px;
    }
}
/* シェアするボタンなどの装飾 */
.p-product-sns-list__item button.js-share-button,
.p-product-sns-list__item button.c-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 18px;
    padding: 5px 5px 4px;
    border: none;
    border-radius: 5px;
    background: #666e88;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: background-color .2s, border-color .2s, transform .2s;
}
.p-product-sns-list__item a:hover,
.p-product-sns-list__item button:hover {
    background: #4466b6;
    transform: translateY(-1px);
}
.p-product-sns-list__item a:active,
.p-product-sns-list__item button:active {
    transform: translateY(0);
}
/* ---------------------------------------------------------
    商品詳細ページ 商品説明テキストエリア
 --------------------------------------------------------- */
.p-product-explain {
    width: 100%;
    margin: 50px auto 20px;
}
.p-product-explain__body .catch {
    width: 100%;
    margin: 0px auto 10px;
    padding: 0px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4em;
    color: #231815;
}
.p-product-explain__body .read {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.6em;
}
/* ===== desktop ===== */
@media screen and (min-width: 1031px) {
    .spec, .pourse, .series {
        margin: 0px auto 30px;
    }
    .features {
        margin: 20px auto 30px;
    }
    .p-product-explain__body h3,
    .p-product-other #spec h3 {
        position: relative;
        margin: 0px 0 20px;
        padding-bottom: 10px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.06em;
        color: #444;
    }
    .p-product-explain__body h3::after,
    .p-product-other #spec h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 36px;
        height: 1px;
        background: #9ccfcf;
    }
    .spec-table {
        width: 100%;
        text-align: center;
        border-collapse: collapse;
        border-spacing: 0;
    }
    .spec-table th {
        padding: 10px;
        background: rgb(224 232 235);;
        border: solid 1px #c2cdd8;
        font-size: 14px;
        font-weight: 400;
        color: #333;
        white-space: nowrap;
    }
    .spec-table td {
        padding: 10px;
        text-align: left;
        border: solid 1px #c2cdd8;
        font-size: 14px;
        font-weight: 400;
        color: #333;
    }
    .attention {
        margin: 20px auto;
    }
    .attention summary {
        font-size: 14px;
        font-weight: 500;
        color: #b44a4a;
        cursor: pointer;
    }
    .attention ul {
        list-style: none;
        margin-top: 10px;
        padding: 15px 15px 5px 12px;
        border: 1px solid #e5e5e5;
        border-left: 2px solid #177097;
        background-color: #fcfcfc;
    }
    .attention ul li {
        padding: 0px 0px 10px 15px;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.4em;
        position: relative;
    }
    .attention ul li::before {
        content: "\25D5";
        font-size: 13px;
        font-weight: 400;
        line-height: 1.4em;
        color: #177097;
        padding: 0px;
        position: absolute;
        top: 0;
        left: 0;
    }
    .attention ul li::after {
        content: "";
        display: block;
        width: 100%;
        margin: auto;
        padding: 0px;
        border-bottom: 1px dotted #ccc;
        position: absolute;
        bottom: 5px;
        left: 0;
    }
    p.note {
        margin: 3px auto;
        text-align: left;
        font-size: 12px;
        font-weight: 400;
    }
    .spec-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 50px;
    }
    .spec-container .flex-box {
        width: 100%;
        display: block;
    }
    .features {
        position: relative;
        margin: 2em 0;
        padding: 0.5em 0.75em;
        border: solid 1px #c2a96d;
        border-radius: 0px 15px 15px 15px;
    }
    .features .mds {
        position: absolute;
        display: inline-block;
        top: -28px;
        left: -1px;
        padding: 4px 12px 0px 10px;
        height: 24px;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.4em;
        background: #c2a96d;
        color: #fff;
        border-radius: 5px 5px 0 0;
    }
    .features ul {
        list-style: none;
        margin: 0; 
        padding: 3px 2px 0px;
    }
    .features ul li {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4em;
        padding: 5px 0px 5px 18px;
        position: relative;
    }
    .features ul li::after {
        content: "\2713";
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4em;
        color: #c2a96d;
        padding: 0px;
        position: absolute;
        left: 0;
        top: 5px;
    }
    .series a {
        width: 100%;
        max-width: 350px;
        display: block;
        margin: 15px 0px 0px;
        text-align: left;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.4em;
        color: #333;
    }
    .series a img {
        width: 100%;
        height: auto;
        margin-bottom: 3px;
        border: 1px solid #fff;
        transition: all .25s ease;
    }
    .series a:hover img {
        opacity: 0.5;
    }
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .spec, .pourse, .series {
        margin: 0px auto 30px;
    }
    .features {
        margin: 20px auto 30px;
    }
    .p-product-explain__body h3,
    .p-product-other #spec h3 {
        position: relative;
        margin: 0px 0 20px;
        padding-bottom: 10px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.06em;
        color: #444;
    }
    .p-product-explain__body h3::after,
    .p-product-other #spec h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 36px;
        height: 1px;
        background: #9ccfcf;
    }
    .spec-table {
        width: 100%;
        text-align: center;
        border-collapse: collapse;
        border-spacing: 0;
    }
    .spec-table th {
        padding: 10px;
        background: rgb(224 232 235);;
        border: solid 1px #c2cdd8;
        font-size: 14px;
        font-weight: 400;
        color: #333;
        white-space: nowrap;
    }
    .spec-table td {
        padding: 10px;
        text-align: left;
        border: solid 1px #c2cdd8;
        font-size: 14px;
        font-weight: 400;
        color: #333;
    }
    .attention {
        margin: 20px auto;
    }
    .attention summary {
        font-size: 14px;
        font-weight: 500;
        color: #cf3e3e;
        cursor: pointer;
    }
    .attention ul {
        list-style: none;
        margin-top: 10px;
        padding: 15px 15px 5px 12px;
        border-left: 2px solid #177097;
        background-color: #fcfcfc;
    }
    .attention ul li {
        padding: 0px 0px 10px 15px;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.4em;
        position: relative;
    }
    .attention ul li::before {
        content: "\25D5";
        font-size: 13px;
        font-weight: 400;
        line-height: 1.4em;
        color: #177097;
        padding: 0px;
        position: absolute;
        top: 0;
        left: 0;
    }
    .attention ul li::after {
        content: "";
        display: block;
        width: 100%;
        margin: auto;
        padding: 0px;
        border-bottom: 1px dotted #ccc;
        position: absolute;
        bottom: 5px;
        left: 0;
    }
    p.note {
        margin: 3px auto;
        text-align: left;
        font-size: 12px;
        font-weight: 400;
    }
    .spec-container {
        display: block;
    }
    .spec-container .flex-box {
        width: 100%;
        display: block;
    }
    .features {
        position: relative;
        margin: 50px 0 30px;
        padding: 0.5em 0.75em;
        border: solid 1px #c2a96d;
        border-radius: 0px 15px 15px 15px;
    }
    .features .mds {
        position: absolute;
        display: inline-block;
        top: -28px;
        left: -1px;
        padding: 4px 12px 0px 10px;
        height: 24px;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.4em;
        background: #c2a96d;
        color: #fff;
        border-radius: 5px 5px 0 0;
    }
    .features ul {
        list-style: none;
        margin: 0; 
        padding: 3px 2px 0px;
    }
    .features ul li {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4em;
        padding: 5px 0px 5px 18px;
        position: relative;
    }
    .features ul li::after {
        content: "\2713";
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4em;
        color: #c2a96d;
        padding: 0px;
        position: absolute;
        left: 0;
        top: 5px;
    }
    .series a {
        width: 100%;
        max-width: 350px;
        display: block;
        margin: 15px 0px 0px;
        text-align: left;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.4em;
        color: #333;
        text-decoration: underline;
    }
    .series a img {
        width: 100%;
        height: auto;
        margin-bottom: 3px;
        border: 1px solid #fff;
        transition: all .25s ease;
    }
    .series a:hover img {
        opacity: 0.5;
    }
}



/* ---------------------------------------------------------
    商品詳細ページ 商品説明【現行用】暫定措置
 --------------------------------------------------------- */
.p-product-explain__body table.detail,
.p-product-explain__body table.detail th,
.p-product-explain__body table.detail td,
.p-product-explain__body table.detail tr {
    border: 1px solid #aaa !important;
    text-align: center;
    box-sizing: border-box;
}
.p-product-explain__body table.feature,
.p-product-explain__body table.feature th,
.p-product-explain__body table.feature td,
.p-product-explain__body table.feature tr {
    border: 1px solid #aaa !important;
    text-align: left;
    box-sizing: border-box;
}
.p-product-explain__body table,
.p-product-explain__body table th,
.p-product-explain__body table td,
.p-product-explain__body table tr {
    max-width: 560px;
    margin: 10px 0px;
    padding: 10px;
    background: #fff;
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
    .p-product-explain__body table,
    .p-product-explain__body table th,
    .p-product-explain__body table td,
    .p-product-explain__body table tr {
        width: auto!important;
        max-width: initial!important;
    }
    .p-product-explain__body table {
        width: 100%!important;
        max-width: 100%!important;
    }
}

/* ===== desktop ===== */
@media screen and (min-width: 1031px) {
}
/* ===== PC wide ===== */
@media screen and (min-width: 1280px) {
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
}
/* ===== mobile ===== */
@media screen and (max-width: 767px) {
}
