/* ----------------------------------------------------------
General Settings
---------------------------------------------------------- */
.stocklist li a .stcc h3 { color:var(--color-1st); }
.stocklist li a .stcc h4 { color:var(--color-black); }
.stocklist li a .stcc .specbox dl dt { color:var(--color-black); }
.stocklist li a .stcc .specbox dl dd { color:var(--color-black); }
.stocklist li a .stcc p.stprice { color:var(--color-black); }
.stocklist li a .stcc p.stprice strong { color:var(--color-black); }
.stocklist p.stprice { color:var(--color-black); }


/* ----------------------------------------------------------
Style for Smartphone
---------------------------------------------------------- */
@media screen and (max-width: 768px) {

  /* Stock list */
  .stocklist {
    width:100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .stocklist li {
    width:100%;
    height: auto;
    display: block;
    margin: 0 0 0 0;
    border-bottom: 1px dotted var(--color-ccc);
  }
  .stocklist li a {
    width:100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    text-decoration: none;
    padding:30px 0 30px 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .stocklist li a:hover {
    background-color: var(--color-white);
  }
  .stocklist .stimg {
    width:30%;
    height: auto;
    display: block;
  }
  .stocklist .stimg img {
    overflow: hidden;
    border-radius: 10px;
  }
  .stocklist .stcc {
    width:65%;
    height: auto;
    display: block;
  }
  .stocklist .stcc h3 {
    font-size:12px;
    font-weight: 400;
    line-height: 1.25em;
    margin-bottom: 3px;
  }
  .stocklist .stcc h4 {
    font-size:18px;
    font-weight: 700;
    line-height: 1.25em;
    margin-bottom: 10px;
  }
  .stocklist .stcc .specbox {
    width:100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
    margin-bottom: 5px;
  }
  .stocklist .stcc .specbox dl {
    width:48%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin:0 auto;
  }
  .stocklist li a .stcc .specbox dl dt {
    width:100%;
    height: auto;
    display: block;
    text-align: left;
    font-size:10px;
    line-height: 1.4em;
    font-weight: 400;
    color:var(--color-1st);
    letter-spacing: -0.5px;
    padding:0 0 3px 0;
  }
  .stocklist li a .stcc .specbox dl dd {
    width:100%;
    height: auto;
    display: block;
    text-align: left;
    font-size:12px;
    line-height: 1.4em;
    font-weight: 400;
    color:var(--color-black);
    padding:0 0 8px 0;
    letter-spacing: -0.5px;
    border-bottom: 1px dotted var(--color-ccc);
  }
  .stocklist p.stprice {
    font-size:14px;
    font-weight: 700;
    text-align: right;
    margin-bottom: 0px;
    margin-left:auto;
  }
  .stocklist p.stprice strong {
    font-size:18px;
  }
  .listbn {
    display: none;
  }
  a:hover .listbn {
    display: none;
  }

}

/* ----------------------------------------------------------
Style for iPad Pro
---------------------------------------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {

/* Stock list */
  .stocklist {
    width:100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .stocklist li {
    width:47%;
    height: auto;
    display: block;
    margin: 1.5%;
    overflow: hidden;
    border-radius: 25px;
    background-color: var(--color-white);
box-shadow:0px 1px 5px rgba(0,0,0,0.2);
  }
  .stocklist li a {
    width:100%;
    height: auto;
    display: block;
    text-decoration: none;
    padding-bottom: 25px;
    transition: .4s all;
  }
  .stocklist li a:hover {
    background-color:rgba(255,255,255,0.5);
  }
  .stocklist li a .stimg {
    width:100%;
    height: auto;
    display: block;
    transition: .4s all;
    overflow: hidden;
    background-color: var(--color-1st);
  }
  .stocklist li a:hover .stimg {
    opacity: 0.5;
  }
  .stocklist li a .stimg img {
    transition: .4s all;
  }
  .stocklist li a:hover .stimg img {
    opacity: 0.7;
  }
  .stocklist .stcc {
    width:100%;
    height: auto;
    display: block;
    padding:25px 25px 0px;
  }
  .stocklist .stcc h3 {
    font-size: clamp(12px, 1vw, 20px);
    font-weight: 400;
    line-height: 1.25em;
    margin-bottom: 0.5em;
  }
  .stocklist .stcc h4 {
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 15px;
  }
  .stocklist .stcc .specbox {
    width:100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
    margin-bottom: 15px;
  }
  .stocklist .stcc .specbox dl {
    width:48%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin:0 auto;
  }
  .stocklist li a .stcc .specbox dl dt {
    width:100%;
    height: auto;
    display: block;
    text-align: left;
    font-size: clamp(10px, 1vw, 14px);
    line-height: 1em;
    color:var(--color-1st);
    font-weight: 400;
    padding:0;
    margin:0 0 3px 0;
  }
  .stocklist .stcc .specbox dl dd {
    width:100%;
    height: auto;
    display: block;
    text-align: left;
    font-size: clamp(10px, 1vw, 14px);
    line-height: 1.4em;
    font-weight: 400;
    padding:0 0 5px 0;
    border-bottom: 1px dotted var(--color-ccc);
    margin:0 0 5px 0;
  }
  .stocklist p.stprice {
    font-size: clamp(12px, 1vw, 26px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
  }
  .stocklist p.stprice strong {
    font-size:18px;
  }
  .listbn {
    width:fit-content;
    height: auto;
    display: block;
    margin:0 auto!important;
    padding:0 10px;
    font-size: 12px!important;
    line-height:22px!important;
    color:var(--color-1st);
    border:1px solid var(--color-1st);
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

}

/* ----------------------------------------------------------
Style for PCs
---------------------------------------------------------- */
@media screen and (min-width: 1025px) {

  /* Stock list */
  .stocklist {
    width:100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .stocklist li {
    width:30.3333333333%;
    height: auto;
    display: block;
    margin: 1.5%;
    overflow: hidden;
    border-radius: 20px;
    background-color: var(--color-white);
box-shadow:0px 1px 5px rgba(0,0,0,0.2);
  }
  .stocklist li a {
    width:100%;
    height: auto;
    display: block;
    text-decoration: none;
    padding-bottom: 25px;
    transition: .4s all;
  }
  .stocklist li a:hover {
    background-color:rgba(255,255,255,0.5);
  }
  .stocklist li a .stimg {
    width:100%;
    height: auto;
    display: block;
    transition: .4s all;
    overflow: hidden;
    background-color: var(--color-1st);
  }
  .stocklist li a:hover .stimg {
    opacity: 0.5;
  }
  .stocklist li a .stimg img {
    transition: .4s all;
  }
  .stocklist li a:hover .stimg img {
    opacity: 0.7;
  }
  .stocklist .stcc {
    width:100%;
    height: auto;
    display: block;
    padding:25px 25px 0px;
  }
  .stocklist .stcc h3 {
    font-size: clamp(12px, 1vw, 20px);
    font-weight: 400;
    line-height: 1.25em;
    margin-bottom: 0.5em;
  }
  .stocklist .stcc h4 {
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 15px;
  }
  .stocklist .stcc .specbox {
    width:100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
    margin-bottom: 15px;
  }
  .stocklist .stcc .specbox dl {
    width:48%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin:0 auto;
  }
  .stocklist li a .stcc .specbox dl dt {
    width:100%;
    height: auto;
    display: block;
    text-align: left;
    font-size: clamp(10px, 1vw, 14px);
    line-height: 1em;
    color:var(--color-1st);
    font-weight: 400;
    padding:0;
    margin:0 0 3px 0;
  }
  .stocklist .stcc .specbox dl dd {
    width:100%;
    height: auto;
    display: block;
    text-align: left;
    font-size: clamp(10px, 1vw, 14px);
    line-height: 1.4em;
    font-weight: 400;
    padding:0 0 5px 0;
    border-bottom: 1px dotted var(--color-ccc);
    margin:0 0 5px 0;
  }
  .stocklist p.stprice {
    font-size: clamp(16x, 1.5vw, 26px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
  }
  .stocklist p.stprice strong {
    font-size:24px;
  }
  .listbn {
    width:fit-content;
    height: auto;
    display: block;
    margin:0 auto!important;
    padding:0 10px;
    font-size: 12px!important;
    line-height:22px!important;
    color:var(--color-1st);
    border:1px solid var(--color-1st);
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

}
