/* ----------------------------------------------------------
General Settings
---------------------------------------------------------- */
.stocklist li a .stcc h3 {
  color: var(--color-black);
}
.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);
}
/*画像トリミング*/
.img-wrap {
  padding-top: 66.66666%;
  position: relative;
}
.img-inner {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
.img-inner img {
  width: 100% !important;
}
/* ----------------------------------------------------------
Style for Smartphone
---------------------------------------------------------- */
@media screen and (max-width: 768px) {
  /* Stock menu */
  #togglermenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-bottom: 0px;
  }
  #togglermenu.tgm_active {
    max-height: auto; /* 内容に応じて適切な高さに設定 */
  }
  #searchmenu {
    width: 98%;
    height: auto;
    display: block;
    border-radius: 3px;
    margin: 0 auto 40px;
    overflow: hidden;
  }
  #searchmenu h3 {
    width: 100%;
    height: auto;
    display: 40px;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    color: var(--color-white);
    background-color: var(--color-1st);
    cursor: pointer;
    padding: 0px 0;
  }
  #searchmenu h3 span {
    width: fit-content;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0 40px 0 40px;
    background-image: url(../img/header/ic-stockmenu_open.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 40px auto;
  }
  #searchmenu h3.tgm_active {
    color: var(--color-white);
    background-color: var(--color-1st);
  }
  #searchmenu h3.tgm_active span {
    background-image: url(../img/header/ic-stockmenu_close.svg);
    background-position: right center;
  }
  .tmbase {
    width: 100%;
    height: auto;
    display: block;
    padding: 40px 5% 40px;
    background-color: var(--color-1st);
  }
  .tmbase h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-min);
    color: var(--color-white);
    margin-bottom: 10px;
  }
  /* Logolist */
  ul.nwlogolist_s {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  ul.nwlogolist_s li {
    width: 48%;
    height: auto;
    display: block;
    margin: 0 1% 5px;
  }
  .nwlogolist_s li a {
    width: 100%;
    height: auto;
    display: block;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    padding: 70px 0 0 0;
    border-radius: 3px;
    color: var(--color-black);
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: auto 60px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
    transition: .4s all;
  }
  .nwlogolist_s li a:hover {
    background-color: #d0ebf5;
  }
  ul.singlelist2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  ul.singlelist2 li {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 5px;
  }
  ul.singlelist2 li a {
    width: 100%;
    height: auto;
    display: block;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    padding: 0;
    border-radius: 3px;
    color: var(--color-black);
    background-color: #fff;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
    transition: .4s all;
  }
  ul.singlelist2 li a:hover {
    background-color: #d0ebf5;
  }
  /* Stock list */
  .stock-count {
    width: 98%;
    margin: 0 auto 20px;
  }
  .stock-count h3 {
    text-align: center;
    display: block;
  }
  .stock-count h3 span {
    font-size: 2em;
    vertical-align: -6%;
    margin: 0 5px;
  }
  .stock-pagination {
    width: 98%;
    margin: 0 auto 20px;
  }
  .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;
  }


.ind_txtbn {
    background: rgb(79, 124, 171);
    background: linear-gradient(90deg, rgba(79, 124, 171, 1) 0%, rgba(0, 52, 106, 1) 100%);
  }
}
/* ----------------------------------------------------------
Style for iPad Pro
---------------------------------------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Stock menu */
  #togglermenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-bottom: 0px;
  }
  #togglermenu.tgm_active {
    max-height: auto; /* 内容に応じて適切な高さに設定 */
  }
  #searchmenu {
    width: 98%;
    height: auto;
    display: block;
    border-radius: 3px;
    margin: 0 auto 40px;
    overflow: hidden;
  }
  #searchmenu h3 {
    width: 100%;
    height: auto;
    display: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    color: var(--color-white);
    background-color: var(--color-1st);
    cursor: pointer;
    padding: 0px 0;
  }
  #searchmenu h3 span {
    width: fit-content;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0 50px 0 50px;
    background-image: url(../img/header/ic-stockmenu_open.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 40px auto;
  }
  #searchmenu h3.tgm_active {
    color: var(--color-white);
    background-color: var(--color-1st);
  }
  #searchmenu h3.tgm_active span {
    background-image: url(../img/header/ic-stockmenu_close.svg);
    background-position: right center;
  }
  .tmbase {
    width: 100%;
    height: auto;
    display: block;
    padding: 40px 5% 40px;
    background-color: var(--color-1st);
  }
  .tmbase h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-min);
    color: var(--color-white);
    margin-bottom: 10px;
  }
  /* Logolist */
  ul.nwlogolist_s {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  ul.nwlogolist_s li {
    width: 31.333333333%;
    height: auto;
    display: block;
    margin: 0 1% 2%;
  }
  .nwlogolist_s li a {
    width: 100%;
    height: auto;
    display: block;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    padding: 70px 0 0 0;
    border-radius: 3px;
    color: var(--color-black);
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: auto 60px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
    transition: .4s all;
  }
  .nwlogolist_s li a:hover {
    background-color: #d0ebf5;
  }
  ul.singlelist2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  ul.singlelist2 li {
    width: 48%;
    height: auto;
    display: block;
    margin: 0 1% 2%;
  }
  ul.singlelist2 li a {
    width: 100%;
    height: auto;
    display: block;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    padding: 0;
    border-radius: 3px;
    color: var(--color-black);
    background-color: #fff;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
    transition: .4s all;
  }
  ul.singlelist2 li a:hover {
    background-color: #d0ebf5;
  }
  /* Stock list */
  .stock-count {
    width: 98%;
    margin: 0 auto 20px;
  }
  .stock-count h3 {
    text-align: center;
    display: block;
  }
  .stock-count h3 span {
    font-size: 2em;
    vertical-align: -6%;
    margin: 0 5px;
  }
  .stock-pagination {
    width: 98%;
    margin: 0 auto 20px;
  }
  .stocklist {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .stocklist li {
    width: 46%;
    height: auto;
    display: block;
    margin: 2%;
    border-radius: 20px;
    overflow: hidden;
    background: rgb(229, 229, 229);
    background: linear-gradient(0deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 49%);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  }
  .stocklist li a {
    width: 100%;
    height: auto;
    display: block;
    text-decoration: none;
    padding-bottom: 30px;
    -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 .stcc {
    width: 100%;
    height: auto;
    display: block;
    padding: 25px 20px 5px;
  }
  .stocklist .stcc h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25em;
    margin-bottom: 0px;
  }
  .stocklist .stcc h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 5px;
  }
  .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: 10px;
    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: 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: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
  }
  .stocklist p.stprice strong {
    font-size: 18px;
  }
  .listbn {
    width: fit-content;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0 10px;
    font-size: 12px;
    line-height: 23px;
    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;
  }
  a:hover .listbn {
    background-color: var(--color-1st);
    color: var(--color-white);
  }


    
.ind_txtbn {
    background: rgb(79, 124, 171);
    background: linear-gradient(90deg, rgba(79, 124, 171, 1) 0%, rgba(0, 52, 106, 1) 100%);
  }

}
/* ----------------------------------------------------------
Style for PCs
---------------------------------------------------------- */
@media screen and (min-width: 1025px) {
  /* Stock menu */
  #togglermenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-bottom: 0px;
  }
  #togglermenu.tgm_active {
    max-height: auto; /* 内容に応じて適切な高さに設定 */
  }
  #searchmenu {
    width: 98%;
    height: auto;
    display: block;
    border-radius: 3px;
    margin: 0 auto 40px;
    overflow: hidden;
  }
  #searchmenu h3 {
    width: 100%;
    height: auto;
    display: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    color: var(--color-white);
    background-color: var(--color-1st);
    cursor: pointer;
    padding: 0px 0;
  }
  #searchmenu h3 span {
    width: fit-content;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0 50px 0 50px;
    background-image: url(../img/header/ic-stockmenu_open.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 40px auto;
  }
  #searchmenu h3.tgm_active {
    color: var(--color-white);
    background-color: var(--color-1st);
  }
  #searchmenu h3.tgm_active span {
    background-image: url(../img/header/ic-stockmenu_close.svg);
    background-position: right center;
  }
  .tmbase {
    width: 100%;
    height: auto;
    display: block;
    padding: 40px 5% 40px;
    background-color: var(--color-1st);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .tmbase h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-min);
    color: var(--color-white);
    margin-bottom: 10px;
  }
  /* Logolist */
  ul.nwlogolist_s {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  ul.nwlogolist_s li {
    width: 31.333333333%;
    height: auto;
    display: block;
    margin: 0 1% 2%;
  }
  .nwlogolist_s li a {
    width: 100%;
    height: auto;
    display: block;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    padding: 70px 0 0 0;
    border-radius: 3px;
    color: var(--color-black);
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: auto 60px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
    transition: .4s all;
  }
  .nwlogolist_s li a:hover {
    background-color: #d0ebf5;
  }
  ul.singlelist2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  ul.singlelist2 li {
    width: 48%;
    height: auto;
    display: block;
    margin: 0 1% 2%;
  }
  ul.singlelist2 li a {
    width: 100%;
    height: auto;
    display: block;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    padding: 0;
    border-radius: 3px;
    color: var(--color-black);
    background-color: #fff;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
    transition: .4s all;
  }
  ul.singlelist2 li a:hover {
    background-color: #d0ebf5;
  }
  /* Stock list */
  .stock-count {
    width: 98%;
    margin: 0 auto 20px;
  }
  .stock-count h3 {
    text-align: center;
    display: block;
  }
  .stock-count h3 span {
    font-size: 2em;
    vertical-align: -6%;
    margin: 0 5px;
  }
  .stock-pagination {
    width: 98%;
    margin: 0 auto 20px;
  }
  .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: rgb(229, 229, 229);
    background: linear-gradient(0deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 49%);
    box-shadow: 0px 5px 15px 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 {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .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: 14px;
    font-weight: 400;
    line-height: 1.25em;
    margin-bottom: 0px;
  }
  .stocklist .stcc h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 5px;
  }
  .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: 10px;
    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: 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: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
  }
  .stocklist p.stprice strong {
    font-size: 24px;
  }
  .listbn {
    width: fit-content;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0 10px;
    font-size: 12px;
    line-height: 23px;
    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;
  }
  a:hover .listbn {
    background-color: var(--color-1st);
    color: var(--color-white);
  }




 .ind_txtbn {
    background: rgb(79, 124, 171);
    background: linear-gradient(90deg, rgba(79, 124, 171, 1) 0%, rgba(0, 52, 106, 1) 100%);
  }

}