@charset "UTF-8";
.product .sec_rotate_r {
  margin-top: 0;
  padding-top: 0;
}
@media all and (max-width: 769px) {
  .product .content_local .content_inner {
    padding-top: 50px;
  }
}
.product .product_title_wrap {
  margin-bottom: 80px;
  text-align: center;
}
@media all and (max-width: 769px) {
  .product .product_title_wrap {
    margin-bottom: 50px;
  }
}
.product .product_title_wrap .title {
  text-align: center;
}
.product .product_title_wrap .title.title.set_caption {
  margin-bottom: 0;
}
.product .product_title_wrap .title_border_caption {
  margin-bottom: 0;
}
.product .product_title_wrap .shuffle w {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.product .product_title_wrap .shuffle span {
  color: #85c023;
}

.product_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 430px) {
  .product_nav {
    margin-bottom: 0;
  }
}
.product_nav li {
  width: 20%;
  margin-right: 5px;
}
@media all and (max-width: 1024px) {
  .product_nav li {
    width: 33.333%;
  }
}
@media all and (max-width: 430px) {
  .product_nav li {
    font-size: 13px;
  }
}
.product_nav li:last-child {
  margin-right: 0;
}
.product_nav li a,
.product_nav li span {
  display: block;
  padding: 15px 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-align: center;
  color: #fff;
  border-radius: 10px 10px 0 0;
}
@media all and (max-width: 430px) {
  .product_nav li a,
  .product_nav li span {
    padding: 10px 0;
    border-radius: 5px 5px 0 0;
  }
}
.product_nav li a {
  background-color: rgba(30, 44, 71, 0.3);
}
.product_nav li a:hover {
  background-color: #85c023;
}
.product_nav li span {
  background-color: #85c023;
}
.product_nav li.contact a,
.product_nav li.contact span {
  background-color: #142c47;
}
.product_nav li.contact a:hover {
  background-color: #0a1624;
}

.product_panel {
  width: 100%;
  padding-top: 50px;
  -webkit-animation: panel-show 0.9s ease-in-out forwards;
          animation: panel-show 0.9s ease-in-out forwards;
}
@media all and (max-width: 769px) {
  .product_panel {
    padding-top: 30px;
  }
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.product_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product_list .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(24% - 40px);
  margin: 0.5%;
  padding: 20px;
  background-color: white;
  -webkit-box-shadow: 30px 30px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 30px 30px 50px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 1024px) {
  .product_list .block {
    width: calc(32.333% - 40px);
  }
}
@media all and (max-width: 769px) {
  .product_list .block {
    width: calc(50% - 5px - 20px);
    padding: 10px;
  }
  .product_list .block:nth-child(odd) {
    margin: 0 5px 10px 0;
  }
  .product_list .block:nth-child(even) {
    margin: 0 0 10px 5px;
  }
}
.product_list img {
  display: block;
  width: 100%;
  max-width: 338px;
  margin: 0 auto;
}
.product_list ul {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.product_list li {
  line-height: 1.4;
}
.product_list .name {
  font-weight: bold;
  margin-bottom: 0.3em;
}
.product_list .no,
.product_list .jan,
.product_list .price {
  line-height: 1.2;
}
@media all and (max-width: 769px) {
  .product_list .no,
  .product_list .jan,
  .product_list .price {
    font-size: 12px;
  }
}
.product_list .no dl,
.product_list .jan dl,
.product_list .price dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.product_list .no dt,
.product_list .jan dt,
.product_list .price dt {
  padding-top: 3px;
  font-size: 11px;
  width: 4em;
  text-align: right;
}
@media all and (max-width: 769px) {
  .product_list .no dt,
  .product_list .jan dt,
  .product_list .price dt {
    font-size: 10px;
  }
}
.product_list .no dd span,
.product_list .jan dd span {
  padding-right: 0.3em;
}
.product_list .price span {
  font-size: 11px;
  content: "（税込）";
}
@media all and (max-width: 769px) {
  .product_list .price span {
    font-size: 10px;
  }
}
.product_list .product_button {
  display: block;
  margin-top: 1em;
  padding: 0.2em 0.5em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  color: white;
  border: solid 1px #142c47;
  background-color: #142c47;
}
.product_list .product_button:hover {
  color: #142c47;
  border-color: #142c47;
  background-color: white;
}

.product_panel_inner {
  padding-top: 80px;
}
@media all and (max-width: 769px) {
  .product_panel_inner {
    padding-top: 30px;
  }
}
.product_panel_inner h3 {
  max-width: 250px;
  margin: 0 auto 50px auto;
}
@media all and (max-width: 769px) {
  .product_panel_inner h3 {
    max-width: 150px;
    margin-bottom: 30px;
  }
}
.product_panel_inner.panel_estilo {
  padding-top: 0;
}
.product_panel_inner.panel_pauz .product_list, .product_panel_inner.panel_livinfra .product_list, .product_panel_inner.panel_cellreturn .product_list, .product_panel_inner.panel_jway .product_list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 769px) {
  .product_panel_inner.panel_pauz .product_list, .product_panel_inner.panel_livinfra .product_list, .product_panel_inner.panel_cellreturn .product_list, .product_panel_inner.panel_corewa .product_list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.panel_contact {
  text-align: center;
}
@media all and (max-width: 820px) {
  .panel_contact .product_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.panel_contact .block {
  width: calc(32.333% - 40px);
  padding: 40px 20px 60px;
}
@media all and (max-width: 820px) {
  .panel_contact .block {
    width: calc(100% - 40px);
    margin: 0 0 20px 0;
    padding: 20px;
  }
}
.panel_contact .contact_header {
  margin-bottom: 3em;
}
@media all and (max-width: 430px) {
  .panel_contact .contact_header {
    margin-bottom: 2em;
  }
}
.panel_contact .contact_header p {
  font-size: 21px;
  font-weight: bold;
}
.panel_contact .contact_header span {
  display: block;
}
.panel_contact h3 {
  font-size: 18px;
  position: relative;
  padding-top: 40px;
}
.panel_contact h3::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 30px;
  content: "";
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/test/product/img/ico_call.svg) center center no-repeat;
  background-size: contain;
}
.panel_contact .contact_title {
  margin-bottom: 2em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.panel_contact .label {
  width: 8em;
  margin: 0.5em auto 0;
  color: white;
  background-color: #85c023;
}
.panel_contact .contact_inner {
  line-height: 1.2;
  -ms-flex-item-align: center;
      align-self: center;
}
.panel_contact .contact_inner p + .tel {
  margin-top: 0.2em;
}
.panel_contact .contact_inner .tel {
  font-family: hind;
  font-size: 32px;
  letter-spacing: 0.05em;
}
@media all and (max-width: 1024px) {
  .panel_contact .contact_inner .tel {
    font-size: 27px;
    letter-spacing: 0;
  }
}
.panel_contact .contact_inner .tel a {
  display: inline-block;
}
@media (min-width: 751px) {
  .panel_contact .contact_inner .tel a[href*="tel:"] {
    cursor: default;
    text-decoration: none;
    pointer-events: none;
  }
}
.panel_contact .block:first-of-type .contact_inner, .panel_contact .block:last-of-type .contact_inner {
  padding-bottom: 1em;
}
.panel_contact .block:last-of-type h3::before {
  background-image: url(/test/product/img/ico_mail.svg);
}
.panel_contact .block:last-of-type .tel a {
  position: relative;
}
.panel_contact .block:last-of-type .tel a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  background-color: #85c023;
}
.panel_contact .block:last-of-type .tel a:hover::after {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}