
}
.tbl--speck, .tbl--pkg {
  width: 100%;
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: black;
  border-collapse: collapse;
}

.tbl--speck thead tr th:first-child, .tbl--pkg thead tr th:first-child {
  text-align: left;
  padding-left: 20px;
}

.tbl--speck tr + tr, .tbl--pkg tr + tr {
  border-top: 1px solid #5f5f5f;
}

.tbl--speck th, .tbl--pkg th {
  font-weight: 100;
  padding: 8px 0;
}

.tbl--speck tbody th, .tbl--pkg tbody th {
  text-align: left;
  padding-left: 20px;
}

.tbl--speck {
  border-top: 1px solid #a7a7a7;
  border-bottom: 1px solid #a7a7a7;
}

.tbl--speck thead {
  border-bottom: 1px solid #5f5f5f;
}

.tbl--speck th, .tbl--speck td {
  width: 50%;
}

/*2024/02/09 shimoda */
.tbl--speck th {
  text-align: left !important;
  padding-right: 30px;
}
/*
.tbl--speck th {
  float: right;
  text-align: right !important;
  padding-right: 30px;
}
*/

.ttl--caption--sm {
  font-size: 1.8rem;
  color: black;
  padding-bottom: 30px;
  line-height: 1.3;
  text-align: center;
}



.tbl--speck td {
  text-align: left;
  padding-left: 30px;
}

.tbl--pkg {
  border-top: 1px solid #a7a7a7;
  border-bottom: 1px solid #a7a7a7;
}

.tbl--pkg thead {
  border-bottom: 1px solid #a7a7a7;
}

.tbl--pkg tbody td {
  line-height: 1;
}

.tbl--pkg tbody td .ico--speck--color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid transparent;
  vertical-align: bottom;
}

.tbl--pkg tbody td .ico--speck--color.border {
  border: 1px solid #a7a7a7;
}

.tbl--pkg thead th {
  padding: 25px 0;
  text-align: left;
}

.tbl--pkg th, .tbl--pkg td {
  padding: 8px 0;
}

.tbl--pkg th.is-center-table, .tbl--pkg td.is-center-table {
  text-align: center;
}

.responsive-table {
  li {
    border-radius: 3px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .table-header {
    background-color: #95A5A6;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
  }
  .col-1 {
    flex-basis: 10%;
  }
  .col-2 {
    flex-basis: 40%;
  }
  .col-3 {
    flex-basis: 25%;
  }
  .col-4 {
    flex-basis: 25%;
  }
  
  @media all and (max-width: 767px) {
    .table-header {
      display: none;
    }
    .table-row{
      
    }
    li {
      display: block;
    }
    .col {
      
      flex-basis: 100%;
      
    }
    .col {
      display: flex;
      padding: 10px 0;
      &:before {
        color: #6C7A89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 50%;
        text-align: right;
      }
    }
  }
}
.box--op {
  padding-top: 30px;
  position: relative;
}

.box--op::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 230px;
  background: -webkit-gradient(linear, left top, right top, from(#000), to(transparent));
  background: -webkit-linear-gradient(left, #000, transparent);
  background: linear-gradient(to right, #000, transparent);
  left: -1px;
  top: 0;
  z-index: 200;
}

.box--op::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 230px;
  background: -webkit-gradient(linear, right top, left top, from(#000), to(transparent));
  background: -webkit-linear-gradient(right, #000, transparent);
  background: linear-gradient(to left, #000, transparent);
  right: -1px;
  top: 0;
  z-index: 200;
}

.box--op li {
  padding: 0 22px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  text-align: center;
  display: inline-block;
}

.box--op li a {
  cursor: pointer;
}

.box--op li a img {
  max-height: 140px;
  width: auto;
}

.box--op li .op--sm {
  min-width: 100px;
}

.box--op li .op--md {
  min-width: 150px;
}

.box--op li .op--lg {
  min-width: 200px;
}

.imgSet {
  position: relative;
}

.imgSet img {
  position: absolute;
  bottom: 0;
}

@media screen and (min-width: 0) and (max-width: 783px){
  body{
    font-size: 1.2rem;
  }
}

@media screen{
  [hidden~="screen"]{
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target){
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

@media screen and (min-width: 769px){

  /*----------------------------------
    スクロールで画像がふわっと出てくる
    ----------------------------------*/
  .animation--fadeup{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    opacity: 0;
    -webkit-transform: translateY(70px);
    -ms-transform: translateY(70px);
    transform: translateY(70px);
  }
  .animation--fadeup.active{
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .animation--fadedown{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  .animation--fadedown.active{
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  /*----------------------------------
    ズームする
    ----------------------------------*/
  .animation--zoom{
    overflow: hidden;
  }
  .animation--zoom img{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
}

@media screen and (min-width: 768px){

  /* =================================
    hover
  ================================= */
  a{
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  a:hover{
    opacity: .7;
  }

  /*----------------------------------
    header/footer
  ----------------------------------*/
  .header.fixed .contact:hover{
    background: #ea5514;
    color: #fff;
  }
  .header.fixed .contact:hover:before{
    width: 0;
  }
  .header.fixed .contact:hover:after{
    width: 0;
  }
  .gNav__menu__item > a:hover{
    opacity: 1;
  }
  .gNav__menu__item > a:hover:before{
    width: 50%;
  }
  .gNav__menu__item > a:hover:after{
    width: 50%;
  }
  .fNav__menu__item > a:hover{
    opacity: 1;
  }
  .fNav__menu__item > a:hover:before{
    width: 50%;
  }
  .fNav__menu__item > a:hover:after{
    width: 50%;
  }
  .fullMenu__wrap__inner .fullMenu__menu__item a{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .fullMenu__wrap__inner .fullMenu__menu__item a:hover{
    opacity: 1;
    background: #ea5514;
  }
  .fullMenu__wrap__inner .fullMenu__menu__item a:hover .fullMenu__menu__item__icon{
    margin-right: 36px;
  }
  .box--op li a .ttl--products--sm{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .box--op li a:hover{
    opacity: 1;
  }
  .box--op li a:hover .ttl--products--sm{
    color: #ea5514;
  }

  /*----------------------------------
    トップページ
  ----------------------------------*/
  .topTileLayout .TileLayoutItem:hover{
    opacity: 1;
  }
  .topTileLayout .TileLayoutItem:hover > .topThumb--off{
    opacity: 0;
  }
  .topTileLayout .TileLayoutItem:hover .opLinkHover{
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .topTileLayout .TileLayoutItem:hover::before{
    -webkit-animation: circle .6s;
    animation: circle .6s;
  }

  /*----------------------------------
    製品一覧
  ----------------------------------*/
  .sliderWrap .slick-dots{
    line-height: 1;
    position: static;
    margin-top: 32px;
  }
  .sliderWrap .slick-dots li:hover{
    border: 1px solid transparent;
  }
  .sliderWrap .slick-dots li:hover .slider--nav__dots{
    width: 17px;
    height: 17px;
  }
  .sliderWrap .productText a:hover{
    color: #ea5514;
    opacity: 1;
  }
  .sliderWrap:hover .btn--more{
    opacity: 1;
  }
  .sliderWrap:hover::before{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #ea5514;
    z-index: -1;
  }

  /*----------------------------------
    animation
  ----------------------------------*/
  .animation--zoom:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@media screen and (max-width: 768px){
  .wrap{
    padding-top: 75px;
  }

  /*----------------------------------
  parts
----------------------------------*/
  .ttl--border{
    font-size: 2.4rem;
    padding-bottom: 12px;
    margin-bottom: 28px;
  }
  .ttl--border:after{
    width: 52px;
    left: -webkit-calc((100% - 52px) / 2);
    left: calc((100% - 52px) / 2);
  }
  .ttl--category--md{
    font-size: 1.0rem;
    padding: 10px 0 10px 6px;
  }
  .ttl--caption--sm{
    padding-bottom: 15px;
  }
  .box--mv .ttl--caption--sm{
    text-align: left;
  }
  .ttl--products--sm{
    font-size: 1.2rem;
  }
  .txt--basic--md--gray{
    text-align: left;
  }
  .decolines{
    display: none;
  }
  .box--mv .box--mv--wrap{
    display: block;
    padding: 0 0 30px 0;
  }
  .box--mv .box--mv--content{
    padding: 0 2%;
  }
  .box--mv .box--mv--inner + .box--mv--inner{
    margin-top: 20px;
  }
  .box--mv h1 img{
    height: 50px;
  }
  .box--mv .ttl--type--md{
    font-size: 1.5rem;
  }
  .box--mv ul li img{
    height: 40px;
  }
  .box--mv ul li.ico--lg{
    display: block;
  }
  .box--mv ul li.ico--lg img{
    height: 90px;
  }
  .box--mv .box--mv--img .img--mv{
    max-height: 290px !important;
  }
  .box--op{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 0;
  }
  .box--op li{
    width: 33.33333%;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 2%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 0 20px;
  }
  .box--op li a{
    width: 100%;
  }
  .box--op li a img{
    width: 100%;
    max-height: auto !important;
    max-height: initial !important;
  }
  .box--op li .op--sm{
    min-width: auto !important;
    min-width: initial !important;
  }
  .box--op li .op--md{
    min-width: auto !important;
    min-width: initial !important;
  }
  .box--op li .op--lg{
    min-width: auto !important;
    min-width: initial !important;
  }
  .box--op::before{
    content: none;
  }
  .box--op::after{
    content: none;
  }
  .box--height{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  /*----------------------------------
    layout
  ----------------------------------*/
  .under{
    max-width: 100%;
  }
  .box--layout + .box--layout, .box--layout__inner + .box--layout__inner{
    padding-top: 50px;
  }
  .box--main--under{
    padding: 16px 0 0;
    margin: 0 3.5%;
  }
  .box--wrap{
    max-width: 100%;
    padding: 45px 3.5%;
  }
  .box--wrap--nopad{
    max-width: 100%;
    padding: 45px 2.5%;
  }

  /*----------------------------------
    parts
  ----------------------------------*/
  .under .box--wrap .ttl--caption--sm{
    padding-top: 30px;
  }
  .box--flex--under{
    display: block;
  }
  .box--flex--under p{
    width: 100%;
    text-align: left;
  }
  .box--flex--under div + div{
    margin-top: 35px;
  }
  .box--flex--under div img{
    width: 80%;
  }
  .box--col__item p{
    text-align: left;
  }
  .box--2col div:last-child{
    margin-left: 0;
  }
  .box--2col--sm{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
  }
  .box--2col--sm div img{
    width: 100%;
  }
  .box--2col--sm div + div{
    margin-left: 5%;
    margin-top: 0;
  }
  .box--2col--sm div .ttl--caption--sm{
    text-align: center;
  }
  .box--2col > *{
    width: 100%;
  }
  .box--3col > *{
    width: 100%;
  }
  .box--3col div + div{
    margin-left: 0;
  }
  .ttl--caption--sm + .box--color{
    padding-top: 20px;
  }
  .box--color li{
    padding: 0 3%;
    width: 33.33333%;
    margin-bottom: 10px;
  }
  .box--color .box--height{
    height: auto;
    min-height: 50px;
  }
  .box--color .box--height img{
    padding-bottom: 0;
  }
  .box--color + .box--color{
    padding-top: 30px;
  }
  .box--color .ttl--products--sm{
    font-size: 1.2rem;
    margin-top: 10px;
  }
  .box--tbl--speck{
    position: relative;
  }
  .box--tbl--speck::after{
    position: absolute;
    content: "";
    background: -webkit-gradient(linear, right top, left top, from(black), to(rgba(0, 0, 0, 0.1)));
    background: -webkit-linear-gradient(right, black, rgba(0, 0, 0, 0.1));
    background: linear-gradient(to left, black, rgba(0, 0, 0, 0.1));
    width: 50px;
    height: 100%;
    right: 0%;
    top: 0;
    z-index: 500;
  }
  .box--tbl--speck__inner{
    overflow-x: auto;
  }
  .box--tbl--speck__inner table{
    border-right: 75px solid #000;
  }
  .box--tbl--speck .tbl--speck td{
    padding-right: 30px;
    padding-left: 0;
    min-width: 300px;
  }
  .box--tbl--speck .tbl--speck th, .box--tbl--speck .tbl--speck td{
    text-align: left;
  }
  .box--tbl--speck .tbl--speck th{
    min-width: 230px;
    text-align: left !important;
  }
  .box--tbl--speck .tbl--speck .txt--basic--md--white{
    display: inline-block;
  }
  .box--tbl--speck .tbl--pkg{
    text-align: left;
  }
  .box--tbl--speck .tbl--pkg thead tr th{
    min-width: 230px;
  }
  .box--tbl--speck .tbl--pkg th, .box--tbl--speck .tbl--pkg td{
    text-align: left;
  }
}

@media screen and (max-width: 1270px){
  .box--main--under{
    margin: 0 2.5%;
  }
}

@media screen and (max-width: 1040px){
  .box--mv .box--mv--wrap{
    display: block;
    padding: 0 0 30px 0;
  }
  .box--mv .box--mv--content{
    padding: 0 2%;
  }
  .box--mv .box--mv--inner + .box--mv--inner{
    margin-top: 20px;
  }
  .box--mv h1 img{
    height: 50px;
  }
  .box--mv .ttl--type--md{
    font-size: 1.5rem;
  }
  .box--mv ul li img{
    height: 40px;
  }
  .box--mv ul li.ico--lg{
    display: block;
  }
  .box--mv ul li.ico--lg img{
    height: 90px;
  }
  .box--mv .box--mv--img{
    text-align: center;
    width: 100%;
    margin: 15px 0;
  }
  .box--mv .box--mv--img .img--mv{
    max-width: 100%;
    max-height: 445px;
    margin-top: 0;
    margin-left: 0;
    padding-bottom: 10px;
  }
  .box--mv .nologo .ttl--type--md{
    font-size: 5.0rem;
  }
}

/*# sourceMappingURL=maps/products.css.map */
