@charset "UTF-8";
.mainColor {
  color: #0091DB;
}

.blue {
  color: #0091DB;
}

.subColor {
  color: #FFA200;
}

.white {
  color: #ffffff;
}

.black {
  color: #333333;
}

.red {
  color: #FF0000;
}

.orange {
  color: #FFA200;
}

.gray {
  color: #EAEAEA;
}

.grayDark {
  color: #505050;
}

.grayLight {
  color: #BEBEBE;
}

li {
  list-style-type: none;
}

/*- 文字サイズ自動変更--------------------*/
/*- 文字サイズ記述見本----------*/
/*
p {
  @include module.fs(36,36,24,20,18,18);
}
p {
  @include fs2(20,10);
    @include module.fs2(36, 20);
}
*/
/*- 表示非表示-------------------*/
/* visible-xx-ijo */
@media (max-width: 575px) {
  .visible-sm-ijo {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .visible-md-ijo {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .visible-lg-ijo {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .visible-xl-ijo {
    display: none !important;
  }
}
/* visible-xx-ika */
@media (min-width: 576px) {
  .visible-xs-ika {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .visible-sm-ika {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .visible-md-ika {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-ika {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .visible-xl-ika {
    display: none !important;
  }
}
/* hidden-xx-ijo */
@media (min-width: 576px) {
  .hidden-sm-ijo {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-md-ijo {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg-ijo {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xl-ijo {
    display: none !important;
  }
}
/* hidden-xx-ika */
@media (max-width: 575px) {
  .hidden-xs-ika {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-sm-ika {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hidden-md-ika {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .hidden-lg-ika {
    display: none !important;
  }
}
@media (max-width: 1399px) {
  .hidden-xl-ika {
    display: none !important;
  }
}
/*- 基本パーツ-------------------*/
.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center-pc {
  text-align: center;
}

@media (max-width: 767px) {
  .align-center-pc {
    text-align: left;
  }
}
.flex-center {
  display: flex;
  justify-content: center;
}

.bold {
  font-weight: bold;
}

small {
  font-size: smaller !important;
}

.lh-2 {
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .lh-2 {
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .lh-2 {
    line-height: 1.6;
  }
}

.img-responsive {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

.cf::before, .cf::after {
  display: table;
  clear: both;
  content: "";
}

.alpha {
  transition: opacity 250ms;
}
.alpha:hover {
  opacity: 0.75;
}

.indent1 li,
p.indent1 {
  padding-left: 1em;
  text-indent: -1em;
}

.indent2 li,
p.indent2 {
  padding-left: 2em;
  text-indent: -2em;
}

.indent3 li,
p.indent3 {
  padding-left: 3em;
  text-indent: -3em;
}

/*-hover------------------*/
.hover a {
  -webkit-transition: 350ms;
  transition: 350ms;
}

.hover a:hover {
  opacity: 0.7;
}

a.hover {
  -webkit-transition: 350ms;
  transition: 350ms;
}

a.hover:hover {
  opacity: 0.7;
}

button.hover {
  -webkit-transition: 350ms;
  transition: 350ms;
}

button.hover:hover {
  opacity: 0.7;
}

input.hover {
  -webkit-transition: 350ms;
  transition: 350ms;
}

input.hover:hover {
  opacity: 0.7;
}

a.underline {
  text-decoration: underline;
}

a.underline:hover {
  text-decoration: none;
}

.box-shadow {
  transition: all 0.4s ease-in-out;
}

.box-shadow:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.mojikan {
  font-feature-settings: "palt";
  letter-spacing: 3px;
}

/*- カラム落ちメモ3----grid利用--------------------*/
/*- parts-width-----------------*/
.pc-w95 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w95 {
    width: 95%;
  }
}

.pc-w90 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w90 {
    width: 90%;
  }
}

.pc-w85 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w85 {
    width: 85%;
  }
}

.pc-w80 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w80 {
    width: 80%;
  }
}

.pc-w70 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w70 {
    width: 70%;
  }
}

.pc-w60 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w60 {
    width: 60%;
  }
}

/*- parts-grid-----------------*/
.grid-pcsp2 {
  width: 100%;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .grid-pcsp2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
  }
}

/*bghover-------------------------------------------*/
.bghover-link {
  display: block;
}

.bghover-warp {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.bghover {
  width: 100%;
  padding-top: 55%;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

a.bghover-link:hover .bghover-warp .bghover,
.bghover-warp:focus .bghover {
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

a.bghover-link:hover .bghover-warp .bghover:before,
.bghover-warp:focus .bghover:before {
  display: block;
}

.bghover:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: 0.35s ease;
  transition: 0.5s ease;
}

a.bghover-link:hover .bghover-warp .bghover:before {
  opacity: 0.3;
}

html body#products footer {
  margin-top: 0;
}
html body#products section.mv {
  background-color: #CBEEFF;
  height: 400px;
}
@media screen and (max-width: 991px) {
  html body#products section.mv {
    height: auto;
  }
}
html body#products section.mv .wrapper {
  height: 100%;
  padding: 0;
}
html body#products section.mv .mv__inner {
  display: flex;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 991px) {
  html body#products section.mv .mv__inner {
    display: block;
  }
}
html body#products section.mv .mv__inner .mv__copy {
  max-width: 415px;
  width: 100%;
  height: 100%;
  background-color: #0091DB;
  padding: 10rem 7rem 12rem 5rem;
}
@media screen and (max-width: 991px) {
  html body#products section.mv .mv__inner .mv__copy {
    max-width: 100%;
    padding: 4rem 8rem 9rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  html body#products section.mv .mv__inner .mv__copy {
    padding: 4rem 8rem 5rem 2rem;
  }
}
html body#products section.mv .mv__inner .mv__copy h1 {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.625;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-left: 2px solid;
  padding: 2rem 0rem 2rem 1.5rem;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  html body#products section.mv .mv__inner .mv__copy h1 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.mv .mv__inner .mv__copy h1 {
    font-size: calc(2.28rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.mv .mv__inner .mv__copy h1 {
    font-size: calc(2.16rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.mv .mv__inner .mv__copy h1 {
    font-size: calc(2.04rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.mv .mv__inner .mv__copy h1 {
    font-size: calc(1.92rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.mv .mv__inner .mv__copy h1 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (1.2)));
  }
}
@media screen and (max-width: 1199px) {
  html body#products section.mv .mv__inner .mv__copy h1 {
    padding: 2rem;
  }
}
@media screen and (max-width: 575px) {
  html body#products section.mv .mv__inner .mv__copy h1 {
    padding: 1rem;
  }
}
html body#products section.mv .mv__inner .mv__copy h1::after {
  content: "";
  width: 60px;
  height: 2px;
  display: block;
  background-color: #ffffff;
  transform: rotate(40deg);
  position: absolute;
  right: -53px;
  bottom: -21px;
}
@media screen and (max-width: 767px) {
  html body#products section.mv .mv__inner .mv__copy h1::after {
    width: 45px;
    height: 1.5px;
    right: -39px;
    bottom: -16px;
  }
}
@media only screen and (min-width: 1200px) {
  html body#products section.mv .mv__inner .mv__copy h1 span {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.68rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.66rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.64rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.62rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body#products section.mv .mv__inner .mv__bg {
  background-image: url(../../images/products/products-mv.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  max-width: 415px;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  html body#products section.mv .mv__inner .mv__bg {
    height: 300px;
    max-width: 100%;
  }
}
html body#products section.banner .wrapper {
  padding: 0;
  margin-top: 40px;
}
@media screen and (max-width: 1199px) {
  html body#products section.banner .wrapper {
    padding: 0 1.5rem;
  }
}
html body#products section.page-links .page-links__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6rem;
  margin-bottom: 2rem;
}
html body#products section.page-links .page-links__list .page-links__item {
  flex-basis: 24.5%;
}
@media screen and (max-width: 767px) {
  html body#products section.page-links .page-links__list .page-links__item {
    flex-basis: 32.6666666667%;
    margin-bottom: 1rem;
  }
  html body#products section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
  html body#products section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  html body#products section.page-links .page-links__list .page-links__item {
    flex-basis: 100%;
  }
}
html body#products section.page-links .page-links__list .page-links__item:not(:last-child) .page-links__link {
  margin-right: 1rem;
}
@media screen and (max-width: 575px) {
  html body#products section.page-links .page-links__list .page-links__item:not(:last-child) .page-links__link {
    margin-right: 0;
  }
}
html body#products section.page-links .page-links__list .page-links__item .page-links__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #0091DB;
  border-radius: 10px;
  border: 2px solid;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.467;
  position: relative;
  padding: 1rem 0.5rem 3rem;
  transition: 250ms;
}
@media only screen and (min-width: 1200px) {
  html body#products section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0)));
  }
}
html body#products section.page-links .page-links__list .page-links__item .page-links__link:hover {
  background-color: #0091DB;
  color: #ffffff;
}
@media screen and (max-width: 575px) {
  html body#products section.page-links .page-links__list .page-links__item .page-links__link {
    padding: 1rem 0.5rem;
    justify-content: left;
  }
}
html body#products section.page-links .page-links__list .page-links__item .page-links__link::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: 12px solid;
}
@media screen and (max-width: 575px) {
  html body#products section.page-links .page-links__list .page-links__item .page-links__link::after {
    left: auto;
    right: 6px;
    transform: translateY(-50%);
    bottom: auto;
    top: 60%;
  }
}
@media screen and (max-width: 575px) {
  html body#products section.page-links .page-links__list .page-links__item .page-links__link br {
    display: none;
  }
}
html body#products section.list {
  margin-bottom: 6rem;
}
html body#products section.list .list__subtitle {
  text-align: center;
  font-weight: 500;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 1200px) {
  html body#products section.list .list__subtitle {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.list .list__subtitle {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.list .list__subtitle {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.list .list__subtitle {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.list .list__subtitle {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.list .list__subtitle {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body#products section.list .list__items {
  display: grid; /* gridレイアウトにする */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  column-gap: 0;
  row-gap: 2rem;
  justify-content: space-between;
}
html body#products section.list .list__items .list__item {
  padding: 0 1rem;
}
html body#products section.list .list__items .list__item .list__image {
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 575px) {
  html body#products section.list .list__items .list__item .list__image {
    height: auto;
    margin-bottom: 0;
  }
}
html body#products section.list .list__items .list__item p {
  letter-spacing: 0;
}
html body#products section.list .list__items .list__item p.list__name {
  font-weight: 700;
  line-height: 1.222;
}
@media only screen and (min-width: 1200px) {
  html body#products section.list .list__items .list__item p.list__name {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.list .list__items .list__item p.list__name {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.list .list__items .list__item p.list__name {
    font-size: calc(1.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.list .list__items .list__item p.list__name {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.list .list__items .list__item p.list__name {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.list .list__items .list__item p.list__name {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0)));
  }
}
html body#products section.list .list__items .list__item p.list__price {
  text-align: right;
}
@media only screen and (min-width: 1200px) {
  html body#products section.list .list__items .list__item p.list__price {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.list .list__items .list__item p.list__price {
    font-size: calc(1.78rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.list .list__items .list__item p.list__price {
    font-size: calc(1.76rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.list .list__items .list__item p.list__price {
    font-size: calc(1.74rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.list .list__items .list__item p.list__price {
    font-size: calc(1.72rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.list .list__items .list__item p.list__price {
    font-size: calc(1.7rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body#products section.list .list__items .list__item p.list__price.list__price--tax::after {
  content: "（税込）";
}
@media only screen and (min-width: 1200px) {
  html body#products section.list .list__items .list__item p.list__price.list__price--tax::after {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.list .list__items .list__item p.list__price.list__price--tax::after {
    font-size: calc(1.16rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.list .list__items .list__item p.list__price.list__price--tax::after {
    font-size: calc(1.12rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.list .list__items .list__item p.list__price.list__price--tax::after {
    font-size: calc(1.08rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.list .list__items .list__item p.list__price.list__price--tax::after {
    font-size: calc(1.04rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.list .list__items .list__item p.list__price.list__price--tax::after {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body#products section.list .list__items.list__items02 .list__image {
  max-width: 140px;
}
@media screen and (max-width: 575px) {
  html body#products section.list .list__items.list__items02 .list__image {
    margin-bottom: 2rem;
  }
}
html body#products section.list .appliances .appliances__title {
  text-align: center;
  font-weight: 500;
  margin: 5rem 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body#products section.list .appliances .appliances__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.list .appliances .appliances__title {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.list .appliances .appliances__title {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.list .appliances .appliances__title {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.list .appliances .appliances__title {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.list .appliances .appliances__title {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body#products section.list .appliances .appliances__note {
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 6rem;
}
@media only screen and (min-width: 1200px) {
  html body#products section.list .appliances .appliances__note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.list .appliances .appliances__note {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.list .appliances .appliances__note {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.list .appliances .appliances__note {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.list .appliances .appliances__note {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.list .appliances .appliances__note {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body#products section.bg-color {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
html body#products section.youtube {
  padding: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  html body#products section.youtube {
    padding: 3rem 0;
  }
}
html body#products section.youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 15px;
}
html body#products section.po-overview {
  background-color: #ffffff;
}
@media only screen and (min-width: 1200px) {
  html body#products section.po-overview .overview-table th,
  html body#products section.po-overview .overview-table td {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.po-overview .overview-table th,
  html body#products section.po-overview .overview-table td {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.po-overview .overview-table th,
  html body#products section.po-overview .overview-table td {
    font-size: calc(1.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.po-overview .overview-table th,
  html body#products section.po-overview .overview-table td {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.po-overview .overview-table th,
  html body#products section.po-overview .overview-table td {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.po-overview .overview-table th,
  html body#products section.po-overview .overview-table td {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (min-width: 1200px) {
  html body#products section.po-overview .overview-table tr.price td {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#products section.po-overview .overview-table tr.price td {
    font-size: calc(2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#products section.po-overview .overview-table tr.price td {
    font-size: calc(2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#products section.po-overview .overview-table tr.price td {
    font-size: calc(2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#products section.po-overview .overview-table tr.price td {
    font-size: calc(2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body#products section.po-overview .overview-table tr.price td {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body#products section.po-overview .product__button-buybox {
  max-width: 264px;
  margin: 0 auto;
}
html body#products section.product-list .product-cardwrap .product__button-buybox .product__button {
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  html body#products section.product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: 11px;
  }
}
html body.products_child {
  /*▼ 製品子ページ共通 ------------------------------------------*/
  /*▲ 製品子ページ共通 ------------------------------------------*/
  /*▼ ポータブル電源 子ページ共通 ------------------------------------------*/
  /*▲ ポータブル電源 子ページ共通 ------------------------------------------*/
  /*▼ 5製品 子ページ共通 ------------------------------------------*/
  /*▲ 5製品 子ページ共通 ------------------------------------------*/
}
html body.products_child footer {
  margin-top: 0;
}
html body.products_child main::after {
  content: "";
  display: block; /* 明示的に指定 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-size: cover;
  background-position: 70% 50%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  html body.products_child main::after {
    background-image: none !important;
  }
}
html body.products_child section .inner {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  html body.products_child section .inner {
    padding: 0 1.5rem;
  }
}
html body.products_child section .products__title {
  font-weight: 600;
  border-bottom: 1px solid #0091DB;
  padding-bottom: 1rem;
  margin: 1rem 0;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section .products__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section .products__title {
    font-size: calc(1.98rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section .products__title {
    font-size: calc(1.96rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section .products__title {
    font-size: calc(1.94rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section .products__title {
    font-size: calc(1.92rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section .products__title {
    font-size: calc(1.9rem + ((1vw - 0.32rem) * (0.2)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child section .products__title {
    margin: 2rem 0 1rem;
    padding-bottom: 1rem;
  }
}
html body.products_child section .products__text {
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.591;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section .products__text {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section .products__text {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section .products__text {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section .products__text {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section .products__text {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section .products__text {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section .insert02 {
  margin: 5rem 0 0;
}
html body.products_child section.bg-color-2 {
  background-color: #f1efe9;
}
html body.products_child section.contents_box {
  background-color: #ffffff;
}
html body.products_child section.contents_box.wrapper {
  max-width: 680px;
  padding: 0 0 10rem;
}
html body.products_child section.cta {
  padding: 3rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  html body.products_child section.cta {
    padding: 1rem 0;
  }
}
html body.products_child section.cta .cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 991px) {
  html body.products_child section.cta .cta__inner {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child section.cta .cta__inner {
    display: block;
  }
}
html body.products_child section.cta .cta__inner .cta__image {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__image {
    width: 100%;
  }
}
html body.products_child section.cta .cta__inner .cta__image .product-card__badge {
  background-color: #FF0000;
  border-radius: 999px;
  width: 60px;
  height: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
html body.products_child section.cta .cta__inner .cta__image .product-card__badge span {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0;
  display: block;
  line-height: 1.25;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span {
    font-size: calc(1.8rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span {
    font-size: calc(1.8rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span {
    font-size: calc(1.8rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.cta .cta__inner .cta__image .product-card__badge span::after {
  content: "ポイント\aバック";
  white-space: pre-wrap;
  display: block;
  line-height: 1.1;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span::after {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span::after {
    font-size: calc(0.8rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span::after {
    font-size: calc(0.8rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span::after {
    font-size: calc(0.8rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span::after {
    font-size: calc(0.8rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__image .product-card__badge span::after {
    font-size: calc(0.8rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.cta .cta__inner .cta__image img {
  padding-right: 1rem;
}
html body.products_child section.cta .cta__inner .cta__info {
  width: 50%;
}
@media screen and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__info {
    width: 100%;
  }
}
html body.products_child section.cta .cta__inner .cta__info .cta__title {
  letter-spacing: 0;
  line-height: 1.438;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title {
    font-size: calc(1.68rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title {
    font-size: calc(1.66rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title {
    font-size: calc(1.64rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title {
    font-size: calc(1.62rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0.2)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title {
    margin: 2rem 0 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title span {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title span {
    font-size: calc(1.28rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title span {
    font-size: calc(1.26rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title span {
    font-size: calc(1.24rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title span {
    font-size: calc(1.22rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__title span {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child section.cta .cta__inner .cta__info .cta__normal_price {
  letter-spacing: 0;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price {
    font-size: calc(1.3rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price {
    font-size: calc(1.3rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price {
    font-size: calc(1.3rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price {
    font-size: calc(1.3rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span {
  letter-spacing: 0;
  font-weight: 500;
  margin-left: 0.5rem;
  text-decoration: line-through;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span {
    font-size: calc(1.6rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span {
    font-size: calc(1.6rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span {
    font-size: calc(1.6rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span {
    font-size: calc(1.6rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span.tax::after {
  content: "(税込)";
  display: inline-block;
  text-decoration: none;
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span.tax::after {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__normal_price span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.cta .cta__inner .cta__info .cta__price {
  letter-spacing: 0;
  font-weight: 500;
  text-align: right;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price {
    font-size: calc(1.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.cta .cta__inner .cta__info .cta__price.cta__price_single {
  margin-top: 25px;
}
html body.products_child section.cta .cta__inner .cta__info .cta__price span {
  letter-spacing: 0;
  font-weight: 500;
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span {
    font-size: calc(2.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span {
    font-size: calc(2.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span {
    font-size: calc(2.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span {
    font-size: calc(2.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span {
    font-size: calc(2.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child section.cta .cta__inner .cta__info .cta__price span.yen::before {
  content: "¥";
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.yen::before {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.yen::before {
    font-size: calc(1.46rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.yen::before {
    font-size: calc(1.42rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.yen::before {
    font-size: calc(1.38rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.yen::before {
    font-size: calc(1.34rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.yen::before {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child section.cta .cta__inner .cta__info .cta__price span.tax::after {
  content: "(税込)";
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.tax::after {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.tax::after {
    font-size: calc(1.36rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.tax::after {
    font-size: calc(1.32rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.tax::after {
    font-size: calc(1.28rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.tax::after {
    font-size: calc(1.24rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__inner .cta__info .cta__price span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child section.cta .cta__cart-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 575px) {
  html body.products_child section.cta .cta__cart-list {
    flex-direction: column;
    gap: 1rem 0;
  }
}
html body.products_child section.cta .cta__cart-list .cta__cart-item {
  flex: 0 0 calc((100% - 25px) / 2);
}
@media screen and (max-width: 575px) {
  html body.products_child section.cta .cta__cart-list .cta__cart-item {
    flex: 1;
  }
}
html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 2px solid #FFA200;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0;
  padding: 1rem 0.5rem 1rem 30px;
  position: relative;
  border-radius: 999px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn:hover {
  background-color: #FFA200;
  color: #ffffff;
}
html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn:hover::before {
  background-image: url(../../images/products/icon-cart.svg);
}
html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn::before {
  content: "";
  background-image: url(../../images/products/icon-cart-black.svg);
  display: inline-block;
  vertical-align: sub;
  width: 20px;
  height: 20px;
  margin-right: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 10px;
}
html body.products_child section.cta .cta__cart-list .cta__cart-item .cta__cart-btn-iconless::before {
  content: "";
  background-image: none;
  width: 0;
}
html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty {
  gap: 20px 10px;
}
@media screen and (max-width: 767px) {
  html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty {
    gap: 15px 10px;
  }
}
html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item {
  position: relative;
}
html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item:first-child::after {
  content: "3年保証";
  position: absolute;
  background-color: #FF0000;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  border-radius: 50px;
  color: #ffffff;
  right: -5px;
  bottom: -15px;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item:first-child::after {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item:first-child::after {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item:first-child::after {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item:first-child::after {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item:first-child::after {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item:first-child::after {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item:first-child::after {
    bottom: -10px;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child section.overview {
    display: none;
  }
}
html body.products_child section.overview .overview__main {
  background-size: cover;
  background-position: 50% 100%;
  padding: 2.5rem 3rem;
  height: 755px;
}
@media screen and (max-width: 767px) {
  html body.products_child section.overview .overview__main {
    height: 700px;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child section.overview .overview__main {
    height: 600px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #e1dedf;
  }
}
@media screen and (max-width: 380px) {
  html body.products_child section.overview .overview__main {
    height: 500px;
  }
}
html body.products_child section.overview .overview__main > img {
  max-width: 250px;
}
@media screen and (max-width: 575px) {
  html body.products_child section.overview .overview__main > img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
}
html body.products_child section.overview .overview__main .overview__catch {
  text-align: center;
  color: #333333;
  letter-spacing: 0.15em;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 3rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview .overview__main .overview__catch {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview .overview__main .overview__catch {
    font-size: calc(3.2rem + ((1vw - 0.992rem) * (1.4492753623)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview .overview__main .overview__catch {
    font-size: calc(2.9rem + ((1vw - 0.768rem) * (1.3452914798)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview .overview__main .overview__catch {
    font-size: calc(2.6rem + ((1vw - 0.576rem) * (1.5706806283)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview .overview__main .overview__catch {
    font-size: calc(2.3rem + ((1vw - 0.421rem) * (1.9480519481)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview .overview__main .overview__catch {
    font-size: calc(2rem + ((1vw - 0.32rem) * (3)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child section.overview .overview__main .overview__catch {
    margin-top: 2rem;
  }
}
html body.products_child section.overview .overview__main .overview__sublead {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 3rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview .overview__main .overview__sublead {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview .overview__main .overview__sublead {
    font-size: calc(1.92rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview .overview__main .overview__sublead {
    font-size: calc(1.84rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview .overview__main .overview__sublead {
    font-size: calc(1.76rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview .overview__main .overview__sublead {
    font-size: calc(1.68rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview .overview__main .overview__sublead {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0.8)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child section.overview .overview__main .overview__sublead {
    margin-top: 3rem;
  }
}
html body.products_child section.overview .overview__main .overview__model {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 6rem 5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview .overview__main .overview__model {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview .overview__main .overview__model {
    font-size: calc(3.4rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview .overview__main .overview__model {
    font-size: calc(3.3rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview .overview__main .overview__model {
    font-size: calc(3.2rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview .overview__main .overview__model {
    font-size: calc(3.1rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview .overview__main .overview__model {
    font-size: calc(3rem + ((1vw - 0.32rem) * (1)));
  }
}
html body.products_child section.overview .overview__main .overview__spec-capacity {
  text-align: center;
  font-weight: 500;
  color: #505050;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview .overview__main .overview__spec-capacity {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview .overview__main .overview__spec-capacity {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview .overview__main .overview__spec-capacity {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview .overview__main .overview__spec-capacity {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview .overview__main .overview__spec-capacity {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview .overview__main .overview__spec-capacity {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.info .info__banner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1rem 0;
  box-sizing: border-box;
}
html body.products_child section.info .info__brand {
  background-color: #0091DB;
  padding: 2rem 1rem;
}
html body.products_child section.info .info__brand .info__brand-logo {
  text-align: center;
}
html body.products_child section.info .info__brand .info__brand-lead {
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.info .info__brand .info__brand-lead {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.info .info__brand .info__brand-lead {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.info .info__brand .info__brand-lead {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.info .info__brand .info__brand-lead {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.info .info__brand .info__brand-lead {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.info .info__brand .info__brand-lead {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child section.info .info__brand .info__brand-points {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  html body.products_child section.info .info__brand .info__brand-points {
    display: block;
  }
}
html body.products_child section.info .info__brand .info__brand-points .info__brand-point {
  flex-basis: 31.6666666667%;
  border-radius: 10px;
  text-align: center;
  color: #0091DB;
  background-color: #ffffff;
  padding: 1.5rem 0.5rem;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point {
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
  }
}
html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(1) img {
  max-width: 150px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 575px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(1) img {
    margin-bottom: 0.5rem;
  }
}
html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(1) p {
  line-height: 1.48;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(1) p {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(1) p {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(1) p {
    font-size: calc(1.8rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(1) p {
    font-size: calc(1.8rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(1) p {
    font-size: calc(1.8rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(1) p {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(2) p {
  line-height: 1.474;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(2) p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(2) p {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(2) p {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(2) p {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(2) p {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(2) p {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p {
    font-size: calc(2.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p {
    font-size: calc(2.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p {
    font-size: calc(2.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p {
    font-size: calc(2.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p {
    font-size: calc(2.4rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year {
    font-size: calc(2.6rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year {
    font-size: calc(2.6rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year {
    font-size: calc(2.6rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year {
    font-size: calc(2.6rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year {
    font-size: calc(2.6rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year span {
  display: inline-block;
  line-height: 1;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year span {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year span {
    font-size: calc(8.4rem + ((1vw - 0.992rem) * (2.8985507246)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year span {
    font-size: calc(7.8rem + ((1vw - 0.768rem) * (2.6905829596)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year span {
    font-size: calc(7.2rem + ((1vw - 0.576rem) * (3.1413612565)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year span {
    font-size: calc(6.6rem + ((1vw - 0.421rem) * (3.8961038961)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.info .info__brand .info__brand-points .info__brand-point:nth-child(3) p.year span {
    font-size: calc(6rem + ((1vw - 0.32rem) * (6)));
  }
}
html body.products_child section.smartlink {
  padding: 2rem 1rem 1rem;
}
html body.products_child section.smartlink.smartlink__grey {
  background-color: transparent;
}
@media screen and (max-width: 991px) {
  html body.products_child section.smartlink {
    padding: 2rem 0 0rem;
  }
}
html body.products_child section.smartlink .smartlink__intro {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 4rem 2rem 0;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  html body.products_child section.smartlink .smartlink__intro {
    padding: 3rem 1rem 0;
  }
}
html body.products_child section.smartlink .smartlink__intro > img {
  max-width: 500px;
  margin: 2rem auto 0;
  display: block;
  width: 100%;
}
html body.products_child section.smartlink .smartlink__intro .smartlink__lead {
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__lead {
    font-size: 2.1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__lead {
    font-size: calc(2.04rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__lead {
    font-size: calc(1.98rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__lead {
    font-size: calc(1.92rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__lead {
    font-size: calc(1.86rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__lead {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.6)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__lead {
    letter-spacing: 0;
  }
}
html body.products_child section.smartlink .smartlink__intro .smartlink__title {
  text-align: center;
  font-weight: 500;
  color: #0091DB;
  margin: 1rem 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__title {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__title {
    font-size: calc(3.7rem + ((1vw - 0.992rem) * (1.4492753623)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__title {
    font-size: calc(3.4rem + ((1vw - 0.768rem) * (1.3452914798)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__title {
    font-size: calc(3.1rem + ((1vw - 0.576rem) * (1.5706806283)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__title {
    font-size: calc(2.8rem + ((1vw - 0.421rem) * (1.9480519481)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__title {
    font-size: calc(2.5rem + ((1vw - 0.32rem) * (3)));
  }
}
html body.products_child section.smartlink .smartlink__intro .smartlink__detail {
  display: flex;
  align-items: end;
}
@media screen and (max-width: 575px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__detail {
    display: block;
  }
}
html body.products_child section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap {
  padding-right: 1rem;
}
html body.products_child section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.smartlink .smartlink__intro .smartlink__detail .smartlink__image img {
  min-width: 110px;
  max-width: 110px;
}
@media screen and (max-width: 575px) {
  html body.products_child section.smartlink .smartlink__intro .smartlink__detail .smartlink__image img {
    margin: 0 auto;
    display: block;
  }
}
html body.products_child section.smartlink .smartlink__buttons {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  html body.products_child section.smartlink .smartlink__buttons {
    display: block;
  }
}
html body.products_child section.smartlink .smartlink__buttons .smartlink__button {
  flex-basis: 49%;
}
html body.products_child section.smartlink .smartlink__buttons .smartlink__button .more-btn__link:last-child {
  margin-bottom: 1rem;
}
html body.products_child section.support .support__title {
  color: #0091DB;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  padding: 3rem 0 2rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.support .support__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.support .support__title {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.support .support__title {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.support .support__title {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.support .support__title {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.support .support__title {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child section.support .support__items {
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 575px) {
  html body.products_child section.support .support__items {
    flex-wrap: wrap;
  }
}
html body.products_child section.support .support__items .support__item {
  text-align: center;
}
@media screen and (max-width: 575px) {
  html body.products_child section.support .support__items .support__item {
    flex-basis: 50%;
    margin-bottom: 2rem;
  }
}
html body.products_child section.support .support__items .support__item img {
  max-width: 100px;
}
@media screen and (max-width: 575px) {
  html body.products_child section.support .support__items .support__item img {
    max-width: 80px;
  }
}
html body.products_child section.support .support__items .support__item .support__item-title {
  padding: 1rem 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.support .support__items .support__item .support__item-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.support .support__items .support__item .support__item-title {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.support .support__items .support__item .support__item-title {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.support .support__items .support__item .support__item-title {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.support .support__items .support__item .support__item-title {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.support .support__items .support__item .support__item-title {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.support .support__items .support__item .support__item-text {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.support .support__items .support__item .support__item-text {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.support .support__items .support__item .support__item-text {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.support .support__items .support__item .support__item-text {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.support .support__items .support__item .support__item-text {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.support .support__items .support__item .support__item-text {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.support .support__notes {
  margin-top: 3rem;
}
html body.products_child section.support .support__notes li {
  padding-left: 1.7rem;
  text-indent: -1.7rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.support .support__notes li {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.support .support__notes li {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.support .support__notes li {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.support .support__notes li {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.support .support__notes li {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.support .support__notes li {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.support .support__notes li::before {
  content: "※";
}
html body.products_child section.support .support__main-image {
  margin-top: 5rem;
}
html body.products_child section.product-list h2 {
  padding: 5rem 0 2rem;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.product-list h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list h2 {
    font-size: calc(2.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list h2 {
    font-size: calc(2.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list h2 {
    font-size: calc(2.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list h2 {
    font-size: calc(2.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.product-list h2 {
    font-size: calc(2.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child section.product-list h2 {
    padding: 3rem 0 2rem;
  }
}
html body.products_child section.product-list .list_2 {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
}
html body.products_child section.product-list .list_2 .product-cardwrap .product-card {
  background: none;
  padding: 0;
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card {
    margin-bottom: 1rem;
    display: inline-block;
  }
}
html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__image img {
  min-height: 200px;
  width: 86%;
  margin-left: auto;
  padding-top: 5%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__image img {
    min-height: auto;
    display: block;
    width: 100%;
    max-width: 359px;
    margin: 0 auto;
  }
}
html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__title {
  margin: 0rem 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__title {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__title {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__title {
    font-size: calc(1.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__title {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__title {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__title {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: calc(1.1rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: calc(1.1rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: calc(1.1rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: calc(1.1rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: calc(1.1rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: calc(1.3rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: calc(1.3rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: calc(1.3rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: calc(1.3rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
  letter-spacing: 0;
  font-weight: 500;
  margin-left: 0.5rem;
  text-decoration: line-through;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: calc(1.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: calc(1.6rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: calc(1.6rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: calc(1.6rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: calc(1.6rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
  content: "(税込)";
  display: inline-block;
  text-decoration: none;
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: calc(1rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: calc(1rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: calc(1rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: calc(1rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--before span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
  text-align: right;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: calc(1.1rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: calc(1.1rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: calc(1.1rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: calc(1.1rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: calc(1.1rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    margin-top: 0.8rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: calc(1.3rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: calc(1.3rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: calc(1.3rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: calc(1.3rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after {
    text-align: left;
  }
}
html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
  letter-spacing: 0;
  font-weight: 500;
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: calc(1.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: calc(1.6rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: calc(1.6rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: calc(1.6rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: calc(1.6rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span {
    margin-left: 0;
  }
}
html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
  content: "¥";
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: calc(1rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: calc(1rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: calc(1rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: calc(1rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.yen::before {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
  content: "(税込)";
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: calc(1rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: calc(1rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: calc(1rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: calc(1rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  html body.products_child section.product-list .list_2 .product-cardwrap .product-card .product-card__price--after span.tax::after {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child section.product-list .list_2 {
    display: block;
  }
  html body.products_child section.product-list .list_2 .product-card {
    min-height: auto;
    align-items: center;
  }
}
html body.products_child section .about_litheli .wrapper .about_litheli-inner {
  padding: 2rem 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
html body.products_child section .about_litheli .wrapper .about_litheli-title {
  margin-bottom: 2rem;
  margin-top: 0 !important;
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-title {
    font-size: calc(2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-title {
    font-size: calc(2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-title {
    font-size: calc(2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-title {
    font-size: calc(2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-title {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section .about_litheli .wrapper .about_litheli-text {
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #333333;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-text {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-text {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-text {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-text {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-text {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-text {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child section .about_litheli .wrapper .about_litheli-list .about_litheli-item {
  display: flex;
  gap: 0 3px;
  color: #333333;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-list .about_litheli-item {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-list .about_litheli-item {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-list .about_litheli-item {
    font-size: calc(1.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-list .about_litheli-item {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-list .about_litheli-item {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section .about_litheli .wrapper .about_litheli-list .about_litheli-item {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section .about_litheli .wrapper .about_litheli-list .about_litheli-item::before {
  content: "●";
  display: block;
}
html body.products_child section .about_litheli .wrapper .about_litheli-list .about_litheli-item + .about_litheli-item {
  margin-top: 3px;
}
html body.products_child section.overview_ltl {
  background-color: #dddddb;
  padding: 4rem 3rem 2rem;
  position: relative;
  height: 850px;
}
@media screen and (max-width: 575px) {
  html body.products_child section.overview_ltl {
    display: none;
  }
}
html body.products_child section.overview_ltl .overview_ltl__copygroup {
  font-weight: 700;
}
html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__catchphrase {
  color: #000000;
  letter-spacing: 0.15em;
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 3rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__catchphrase {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__catchphrase {
    font-size: calc(3.2rem + ((1vw - 0.992rem) * (1.4492753623)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__catchphrase {
    font-size: calc(2.9rem + ((1vw - 0.768rem) * (1.3452914798)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__catchphrase {
    font-size: calc(2.6rem + ((1vw - 0.576rem) * (1.5706806283)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__catchphrase {
    font-size: calc(2.3rem + ((1vw - 0.421rem) * (1.9480519481)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__catchphrase {
    font-size: calc(2rem + ((1vw - 0.32rem) * (3)));
  }
}
html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__sub-catchphrase {
  color: #7b797a;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__sub-catchphrase {
    font-size: 3.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__sub-catchphrase {
    font-size: calc(3rem + ((1vw - 0.992rem) * (1.4492753623)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__sub-catchphrase {
    font-size: calc(2.7rem + ((1vw - 0.768rem) * (1.3452914798)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__sub-catchphrase {
    font-size: calc(2.4rem + ((1vw - 0.576rem) * (1.5706806283)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__sub-catchphrase {
    font-size: calc(2.1rem + ((1vw - 0.421rem) * (1.9480519481)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview_ltl .overview_ltl__copygroup .overview_ltl__sub-catchphrase {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (3)));
  }
}
html body.products_child section.overview_ltl img.overview_ltl__brand-logo {
  max-width: 100px;
  position: absolute;
  left: 20px;
  bottom: 5px;
}
html body.products_child section.overview_ltl .overview_ltl__battery-info {
  position: absolute;
}
html body.products_child section.overview_ltl .overview_ltl__battery-info .overview_ltl__battery-image {
  display: block;
  margin: 0 auto;
  max-width: 160px;
}
html body.products_child section.overview_ltl .overview_ltl__battery-info p {
  letter-spacing: 0;
}
html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-tag {
  background-color: #333333;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  display: inline-block;
  padding: 0.2rem 0.8rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-tag {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-tag {
    font-size: calc(1.38rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-tag {
    font-size: calc(1.36rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-tag {
    font-size: calc(1.34rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-tag {
    font-size: calc(1.32rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-tag {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-name {
  font-weight: 700;
  margin: 1rem 0 0.1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-name {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-name {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-name {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-name {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-name {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-name {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child section.overview_ltl .overview_ltl__battery-info p.overview_ltl__battery-note {
  font-size: 1.025rem;
}
html body.products_child section.overview_ltl .overview_ltl__product-details {
  position: absolute;
}
html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-title {
  letter-spacing: 0.03em;
  line-height: 1.3;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-title {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-title {
    font-size: calc(3.4rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-title {
    font-size: calc(3.3rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-title {
    font-size: calc(3.2rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-title {
    font-size: calc(3.1rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-title {
    font-size: calc(3rem + ((1vw - 0.32rem) * (1)));
  }
}
html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-jp-name {
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-jp-name {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-jp-name {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-jp-name {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-jp-name {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-jp-name {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-jp-name {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-model {
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-model {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-model {
    font-size: calc(1.3rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-model {
    font-size: calc(1.3rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-model {
    font-size: calc(1.3rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-model {
    font-size: calc(1.3rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child section.overview_ltl .overview_ltl__product-details .overview_ltl__product-model {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child section.overview_ltl-sp {
  display: none;
}
@media screen and (max-width: 575px) {
  html body.products_child section.overview_ltl-sp {
    display: block;
    height: 491px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #dddddb;
  }
}
html body.products_child#portable-powersupply-410 .po_power__note, html body.products_child#portable-powersupply-230 .po_power__note {
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.591;
  padding-top: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 .po_power__note, html body.products_child#portable-powersupply-230 .po_power__note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 .po_power__note, html body.products_child#portable-powersupply-230 .po_power__note {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 .po_power__note, html body.products_child#portable-powersupply-230 .po_power__note {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 .po_power__note, html body.products_child#portable-powersupply-230 .po_power__note {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 .po_power__note, html body.products_child#portable-powersupply-230 .po_power__note {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 .po_power__note, html body.products_child#portable-powersupply-230 .po_power__note {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 .po_power__comment, html body.products_child#portable-powersupply-230 .po_power__comment {
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.571;
  margin: 3rem 0 4rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 .po_power__comment, html body.products_child#portable-powersupply-230 .po_power__comment {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 .po_power__comment, html body.products_child#portable-powersupply-230 .po_power__comment {
    font-size: calc(1.94rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 .po_power__comment, html body.products_child#portable-powersupply-230 .po_power__comment {
    font-size: calc(1.88rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 .po_power__comment, html body.products_child#portable-powersupply-230 .po_power__comment {
    font-size: calc(1.82rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 .po_power__comment, html body.products_child#portable-powersupply-230 .po_power__comment {
    font-size: calc(1.76rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 .po_power__comment, html body.products_child#portable-powersupply-230 .po_power__comment {
    font-size: calc(1.7rem + ((1vw - 0.32rem) * (0.6)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 .po_power__comment, html body.products_child#portable-powersupply-230 .po_power__comment {
    margin-top: 2rem;
  }
}
html body.products_child#portable-powersupply-410 .pb_2, html body.products_child#portable-powersupply-230 .pb_2 {
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.overview_ltl-sp, html body.products_child#portable-powersupply-230 section.overview_ltl-sp {
    background-size: cover;
    background-position: 50% 10%;
  }
}
html body.products_child#portable-powersupply-410 section.solution, html body.products_child#portable-powersupply-230 section.solution {
  padding: 3rem 1rem 0;
}
html body.products_child#portable-powersupply-410 section.solution .solution__title, html body.products_child#portable-powersupply-230 section.solution .solution__title {
  text-align: center;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title, html body.products_child#portable-powersupply-230 section.solution .solution__title {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title, html body.products_child#portable-powersupply-230 section.solution .solution__title {
    font-size: calc(2.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title, html body.products_child#portable-powersupply-230 section.solution .solution__title {
    font-size: calc(2.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title, html body.products_child#portable-powersupply-230 section.solution .solution__title {
    font-size: calc(2.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title, html body.products_child#portable-powersupply-230 section.solution .solution__title {
    font-size: calc(2.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title, html body.products_child#portable-powersupply-230 section.solution .solution__title {
    font-size: calc(2rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__title span, html body.products_child#portable-powersupply-230 section.solution .solution__title span {
  color: #0091DB;
  display: block;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title span, html body.products_child#portable-powersupply-230 section.solution .solution__title span {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title span, html body.products_child#portable-powersupply-230 section.solution .solution__title span {
    font-size: calc(3.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title span, html body.products_child#portable-powersupply-230 section.solution .solution__title span {
    font-size: calc(3.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title span, html body.products_child#portable-powersupply-230 section.solution .solution__title span {
    font-size: calc(3.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title span, html body.products_child#portable-powersupply-230 section.solution .solution__title span {
    font-size: calc(3.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__title span, html body.products_child#portable-powersupply-230 section.solution .solution__title span {
    font-size: calc(3rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__lead-box, html body.products_child#portable-powersupply-230 section.solution .solution__lead-box {
  text-align: center;
  margin-top: 1rem;
}
html body.products_child#portable-powersupply-410 section.solution .solution__lead-box .solution__lead, html body.products_child#portable-powersupply-230 section.solution .solution__lead-box .solution__lead {
  background-color: #0091DB;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  display: inline-block;
  padding: 1rem 2rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__lead-box .solution__lead, html body.products_child#portable-powersupply-230 section.solution .solution__lead-box .solution__lead {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__lead-box .solution__lead, html body.products_child#portable-powersupply-230 section.solution .solution__lead-box .solution__lead {
    font-size: calc(2.16rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__lead-box .solution__lead, html body.products_child#portable-powersupply-230 section.solution .solution__lead-box .solution__lead {
    font-size: calc(2.12rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__lead-box .solution__lead, html body.products_child#portable-powersupply-230 section.solution .solution__lead-box .solution__lead {
    font-size: calc(2.08rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__lead-box .solution__lead, html body.products_child#portable-powersupply-230 section.solution .solution__lead-box .solution__lead {
    font-size: calc(2.04rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__lead-box .solution__lead, html body.products_child#portable-powersupply-230 section.solution .solution__lead-box .solution__lead {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__problem, html body.products_child#portable-powersupply-230 section.solution .solution__problem {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 2rem auto 0;
}
html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head {
  border: 2px solid #000000;
  border-radius: 999px;
  width: 68px;
  height: 68px;
  min-width: 68px;
  text-align: center;
  color: #000000;
}
html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-label, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-label {
  padding-top: 1rem;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-label, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-label {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-label, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-label {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-label, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-label {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-label, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-label {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-label, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-label {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-label, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-label {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-number, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-number {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-number, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-number {
    font-size: calc(2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-number, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-number {
    font-size: calc(2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-number, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-number {
    font-size: calc(2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-number, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-number {
    font-size: calc(2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-head .solution__problem-number, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-head .solution__problem-number {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-body .solution__problem-text, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-body .solution__problem-text {
  color: #000000;
  font-weight: 700;
  padding-left: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-body .solution__problem-text, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-body .solution__problem-text {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-body .solution__problem-text, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-body .solution__problem-text {
    font-size: calc(2.32rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-body .solution__problem-text, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-body .solution__problem-text {
    font-size: calc(2.24rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-body .solution__problem-text, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-body .solution__problem-text {
    font-size: calc(2.16rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-body .solution__problem-text, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-body .solution__problem-text {
    font-size: calc(2.08rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__problem .solution__problem-body .solution__problem-text, html body.products_child#portable-powersupply-230 section.solution .solution__problem .solution__problem-body .solution__problem-text {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__problem-image, html body.products_child#portable-powersupply-230 section.solution .solution__problem-image {
  display: block;
  margin: 2rem auto 0;
  max-width: 600px;
  width: 100%;
}
html body.products_child#portable-powersupply-410 section.solution .solution__answer-title, html body.products_child#portable-powersupply-230 section.solution .solution__answer-title {
  text-align: center;
  color: #0091DB;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__answer-title, html body.products_child#portable-powersupply-230 section.solution .solution__answer-title {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__answer-title, html body.products_child#portable-powersupply-230 section.solution .solution__answer-title {
    font-size: calc(3.28rem + ((1vw - 0.992rem) * (1.0628019324)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__answer-title, html body.products_child#portable-powersupply-230 section.solution .solution__answer-title {
    font-size: calc(3.06rem + ((1vw - 0.768rem) * (0.9865470852)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__answer-title, html body.products_child#portable-powersupply-230 section.solution .solution__answer-title {
    font-size: calc(2.84rem + ((1vw - 0.576rem) * (1.1518324607)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__answer-title, html body.products_child#portable-powersupply-230 section.solution .solution__answer-title {
    font-size: calc(2.62rem + ((1vw - 0.421rem) * (1.4285714286)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__answer-title, html body.products_child#portable-powersupply-230 section.solution .solution__answer-title {
    font-size: calc(2.4rem + ((1vw - 0.32rem) * (2.2)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__answer-title, html body.products_child#portable-powersupply-230 section.solution .solution__answer-title {
    letter-spacing: 0;
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__product, html body.products_child#portable-powersupply-230 section.solution .solution__product {
  max-width: 600px;
  margin: 0 auto;
}
html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-tag, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-tag {
  border-top: 1px solid;
  border-bottom: 1px solid;
  text-align: center;
  padding: 0.5rem;
  margin: 2rem auto;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-tag, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-tag {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-tag, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-tag {
    font-size: calc(2.16rem + ((1vw - 0.992rem) * (0.6763285024)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-tag, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-tag {
    font-size: calc(2.02rem + ((1vw - 0.768rem) * (0.6278026906)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-tag, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-tag {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.7329842932)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-tag, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-tag {
    font-size: calc(1.74rem + ((1vw - 0.421rem) * (0.9090909091)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-tag, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-tag {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (1.4)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name {
  text-align: center;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name {
    font-size: calc(3.06rem + ((1vw - 0.992rem) * (0.6763285024)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name {
    font-size: calc(2.92rem + ((1vw - 0.768rem) * (0.6278026906)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name {
    font-size: calc(2.78rem + ((1vw - 0.576rem) * (0.7329842932)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name {
    font-size: calc(2.64rem + ((1vw - 0.421rem) * (0.9090909091)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name {
    font-size: calc(2.5rem + ((1vw - 0.32rem) * (1.4)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name span, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name span {
  display: block;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name span, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name span {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name span, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name span {
    font-size: calc(2.48rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name span, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name span {
    font-size: calc(2.36rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name span, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name span {
    font-size: calc(2.24rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name span, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name span {
    font-size: calc(2.12rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-name span, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-name span {
    font-size: calc(2rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual {
    gap: 0;
    padding: 1rem 0 0;
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__brand-logo, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__brand-logo {
  max-width: 210px;
}
@media screen and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__brand-logo, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__brand-logo {
    max-width: 160px;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__brand-logo, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__brand-logo {
    max-width: 90px;
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__main-image, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__main-image {
  max-width: 210px;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__main-image, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__main-image {
    max-width: 150px;
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info {
  text-align: center;
}
html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text {
  background-color: #0091DB;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
  display: block;
  padding: 0.5rem;
  line-height: 1.4;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text {
    font-size: calc(1.24rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text {
    font-size: calc(1.18rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text {
    font-size: calc(1.12rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text {
    font-size: calc(1.06rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0.6)));
  }
}
@media screen and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-text {
    padding: 0.5rem;
    letter-spacing: 0;
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-image, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-image {
  max-width: 145px;
}
@media screen and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-image, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-image {
    max-width: 100px;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-image, html body.products_child#portable-powersupply-230 section.solution .solution__product .solution__product-visual .solution__battery-info .solution__battery-image {
    max-width: 90px;
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature {
  background-size: 63%;
  background-repeat: no-repeat;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 242px;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature {
    height: 205px;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature {
    height: 130px;
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item {
  background-color: #0091DB;
  color: #ffffff;
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin: 0 0 0 auto;
  padding: 2rem 1rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item {
    max-width: 200px;
    padding: 1rem 0.5rem;
  }
}
@media screen and (max-width: 380px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item {
    max-width: 170px;
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id {
  line-height: 1;
  padding-bottom: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id {
    font-size: 4.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id {
    font-size: calc(4rem + ((1vw - 0.992rem) * (2.4154589372)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id {
    font-size: calc(3.5rem + ((1vw - 0.768rem) * (2.2421524664)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id {
    font-size: calc(3rem + ((1vw - 0.576rem) * (2.6178010471)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id {
    font-size: calc(2.5rem + ((1vw - 0.421rem) * (3.2467532468)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-id {
    font-size: calc(2rem + ((1vw - 0.32rem) * (5)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc {
    font-size: calc(1.68rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc {
    font-size: calc(1.56rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc {
    font-size: calc(1.32rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature .solution__feature-item .solution__feature-desc {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature:nth-child(1), html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature:nth-child(1) {
  background-image: url(../../images/products/portable-power/solution__feature1.webp);
}
html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature:nth-child(2), html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature:nth-child(2) {
  background-image: url(../../images/products/portable-power/solution__feature2.webp);
  background-position: right;
}
html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature:nth-child(2) .solution__feature-item, html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature:nth-child(2) .solution__feature-item {
  margin: 0 auto 0 0;
}
html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature:nth-child(3), html body.products_child#portable-powersupply-230 section.solution .solution__features .solution__feature:nth-child(3) {
  background-image: url(../../images/products/portable-power/solution__feature3.webp);
}
html body.products_child#portable-powersupply-410 section.solution .solution__note, html body.products_child#portable-powersupply-230 section.solution .solution__note {
  text-align: right;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__note, html body.products_child#portable-powersupply-230 section.solution .solution__note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__note, html body.products_child#portable-powersupply-230 section.solution .solution__note {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__note, html body.products_child#portable-powersupply-230 section.solution .solution__note {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__note, html body.products_child#portable-powersupply-230 section.solution .solution__note {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__note, html body.products_child#portable-powersupply-230 section.solution .solution__note {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__note, html body.products_child#portable-powersupply-230 section.solution .solution__note {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__more, html body.products_child#portable-powersupply-230 section.solution .solution__more {
  text-align: center;
  color: #0091DB;
  font-weight: 500;
  background-image: url(../../images/products/portable-power/square-bubble.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 70px;
  margin: 3rem 1rem 0 1rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__more, html body.products_child#portable-powersupply-230 section.solution .solution__more {
    height: 59px;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__more, html body.products_child#portable-powersupply-230 section.solution .solution__more {
    height: 50px;
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__more .solution__more-label, html body.products_child#portable-powersupply-230 section.solution .solution__more .solution__more-label {
  padding-top: 0.75rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__more .solution__more-label, html body.products_child#portable-powersupply-230 section.solution .solution__more .solution__more-label {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__more .solution__more-label, html body.products_child#portable-powersupply-230 section.solution .solution__more .solution__more-label {
    font-size: calc(2.3rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__more .solution__more-label, html body.products_child#portable-powersupply-230 section.solution .solution__more .solution__more-label {
    font-size: calc(2.1rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__more .solution__more-label, html body.products_child#portable-powersupply-230 section.solution .solution__more .solution__more-label {
    font-size: calc(1.9rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__more .solution__more-label, html body.products_child#portable-powersupply-230 section.solution .solution__more .solution__more-label {
    font-size: calc(1.7rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__more .solution__more-label, html body.products_child#portable-powersupply-230 section.solution .solution__more .solution__more-label {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (2)));
  }
}
@media screen and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__more .solution__more-label, html body.products_child#portable-powersupply-230 section.solution .solution__more .solution__more-label {
    padding-top: 1rem;
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__extra-lead, html body.products_child#portable-powersupply-230 section.solution .solution__extra-lead {
  text-align: center;
  font-weight: 500;
  padding: 1rem 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__extra-lead, html body.products_child#portable-powersupply-230 section.solution .solution__extra-lead {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__extra-lead, html body.products_child#portable-powersupply-230 section.solution .solution__extra-lead {
    font-size: calc(2.32rem + ((1vw - 0.992rem) * (0.8695652174)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__extra-lead, html body.products_child#portable-powersupply-230 section.solution .solution__extra-lead {
    font-size: calc(2.14rem + ((1vw - 0.768rem) * (0.8071748879)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__extra-lead, html body.products_child#portable-powersupply-230 section.solution .solution__extra-lead {
    font-size: calc(1.96rem + ((1vw - 0.576rem) * (0.942408377)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__extra-lead, html body.products_child#portable-powersupply-230 section.solution .solution__extra-lead {
    font-size: calc(1.78rem + ((1vw - 0.421rem) * (1.1688311688)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__extra-lead, html body.products_child#portable-powersupply-230 section.solution .solution__extra-lead {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (1.8)));
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__extra-logo,
html body.products_child#portable-powersupply-410 section.solution .solution__extra-banner, html body.products_child#portable-powersupply-230 section.solution .solution__extra-logo,
html body.products_child#portable-powersupply-230 section.solution .solution__extra-banner {
  display: block;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  max-width: 600px;
  width: 100%;
}
html body.products_child#portable-powersupply-410 section.solution .solution__extra-logo, html body.products_child#portable-powersupply-230 section.solution .solution__extra-logo {
  margin: 2rem auto;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.solution .solution__extra-logo, html body.products_child#portable-powersupply-230 section.solution .solution__extra-logo {
    max-width: 250px;
  }
}
html body.products_child#portable-powersupply-410 section.triple, html body.products_child#portable-powersupply-230 section.triple {
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple, html body.products_child#portable-powersupply-230 section.triple {
    padding-bottom: 1rem;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview, html body.products_child#portable-powersupply-230 section.triple .triple__overview {
  display: flex;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview, html body.products_child#portable-powersupply-230 section.triple .triple__overview {
    display: block;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro,
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__mainvisual, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro,
html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__mainvisual {
  flex: 1;
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro {
  text-align: center;
  padding-top: 11.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro {
    padding-top: 3rem;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0091DB;
  padding-right: 8rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title {
    padding-right: 0;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-number, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-number {
  font-weight: 500;
  line-height: 1;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-number, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-number {
    font-size: 13rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-number, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-number {
    font-size: calc(12.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-number, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-number {
    font-size: calc(12.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-number, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-number {
    font-size: calc(12.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-number, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-number {
    font-size: calc(12.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-number, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-number {
    font-size: calc(12rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text {
  font-weight: 600;
  padding-top: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text {
    padding-top: 0;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span {
  display: block;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top {
    font-size: calc(2.6rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top {
    font-size: calc(2.6rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top {
    font-size: calc(2.6rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top {
    font-size: calc(2.6rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-top {
    font-size: calc(2.6rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom {
    font-size: calc(4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom {
    font-size: calc(4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom {
    font-size: calc(4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom {
    font-size: calc(4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__title .triple__title-text span.triple__title-text-bottom {
    font-size: calc(4rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point-box, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point-box {
    display: flex;
    justify-content: center;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point {
  background-color: #0091DB;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 120px;
  height: 120px;
  border-radius: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100px;
  height: 100px;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point {
    position: static;
    margin: 0 0.5rem 3rem;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point.triple__point-1, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point.triple__point-1 {
  top: 10px;
  right: 157px;
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point.triple__point-2, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point.triple__point-2 {
  top: 50px;
  right: 50px;
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__point.triple__point-3, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__point.triple__point-3 {
  top: 155px;
  right: 10px;
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__intro-logo, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__intro-logo {
  max-width: 260px;
  display: block;
  margin: 2rem auto 0;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__intro .triple__intro-logo, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__intro .triple__intro-logo {
    margin: 0 auto 2rem;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__mainvisual img, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__mainvisual img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__overview .triple__mainvisual img, html body.products_child#portable-powersupply-230 section.triple .triple__overview .triple__mainvisual img {
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__content, html body.products_child#portable-powersupply-230 section.triple .triple__content {
  width: 100%;
  background-color: #ffffff;
  border-radius: 14px;
  margin: 3rem auto 0;
  padding: 2.5rem 2rem;
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-position .triple__item:first-child, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-position .triple__item:first-child {
  position: relative;
  justify-content: space-between;
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-position .triple__item:first-child .triple__heading, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-position .triple__item:first-child .triple__heading {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-position .triple__item:first-child .triple__heading, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-position .triple__item:first-child .triple__heading {
    position: static;
    margin-bottom: 2.5rem;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-position .triple__item img, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-position .triple__item img {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-1 .triple__item, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-1 .triple__item {
  align-items: center;
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-1 .po_power__title, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-1 .po_power__title {
  margin-top: 0;
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-1 .po_power__text,
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-1 .po_power__note, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-1 .po_power__text,
html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-1 .po_power__note {
  margin-bottom: 0;
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-2 .po_power__note, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-2 .po_power__note {
  margin-bottom: 0;
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-2 .po_power__text, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-2 .po_power__text {
  margin-bottom: 0;
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-3 .po_power__text, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-3 .po_power__text {
  margin-bottom: 0;
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-3 img, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-3 img {
  margin-top: 2rem;
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox h4, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox h4, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox h4 {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox h4, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox h4 {
    font-size: calc(1.68rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox h4, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox h4 {
    font-size: calc(1.66rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox h4, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox h4 {
    font-size: calc(1.64rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox h4, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox h4 {
    font-size: calc(1.62rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox h4, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox h4 {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex {
    display: block;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item:first-child, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item:first-child {
  padding-left: 2rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item:first-child, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item:first-child {
    padding: 1rem 0;
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item:first-child img, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item:first-child img {
    max-width: 100px;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p {
  letter-spacing: 0.06em;
  line-height: 1.591;
  margin-left: 3rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p {
    font-size: calc(1.3rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p {
    font-size: calc(1.3rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p {
    font-size: calc(1.3rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p {
    font-size: calc(1.3rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p, html body.products_child#portable-powersupply-230 section.triple .triple__content.triple__content-4 .sbox .flex .flex_item p {
    margin-left: 0;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item {
  display: flex;
  margin-bottom: 4rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item {
    display: block;
    margin-bottom: 3rem;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item .triple__heading, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item .triple__heading {
  background-color: #0091DB;
  color: #ffffff;
  text-align: center;
  min-width: 180px;
  height: 180px;
  border-radius: 200px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item .triple__heading, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item .triple__heading {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item .triple__heading, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item .triple__heading {
    font-size: calc(2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item .triple__heading, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item .triple__heading {
    font-size: calc(2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item .triple__heading, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item .triple__heading {
    font-size: calc(2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item .triple__heading, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item .triple__heading {
    font-size: calc(2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item .triple__heading, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item .triple__heading {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item .triple__heading, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item .triple__heading {
    min-width: 150px;
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
}
html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item .triple__detail, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item .triple__detail {
  padding-left: 2rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.triple .triple__content .triple__item .triple__detail, html body.products_child#portable-powersupply-230 section.triple .triple__content .triple__item .triple__detail {
    padding-left: 0;
  }
}
html body.products_child#portable-powersupply-410 section.module, html body.products_child#portable-powersupply-230 section.module {
  padding: 2rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.module, html body.products_child#portable-powersupply-230 section.module {
    padding: 2rem 0 0;
  }
}
html body.products_child#portable-powersupply-410 section.module .module__content .triple__subtitle, html body.products_child#portable-powersupply-230 section.module .module__content .triple__subtitle {
  margin-right: 100px;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.module .module__content .triple__subtitle, html body.products_child#portable-powersupply-230 section.module .module__content .triple__subtitle {
    margin-right: 0;
  }
}
html body.products_child#portable-powersupply-410 section.module .module__content .triple__text, html body.products_child#portable-powersupply-230 section.module .module__content .triple__text {
  margin-right: 170px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.module .module__content .triple__text, html body.products_child#portable-powersupply-230 section.module .module__content .triple__text {
    margin-right: 0;
  }
}
html body.products_child#portable-powersupply-410 section.module .module__image, html body.products_child#portable-powersupply-230 section.module .module__image {
  position: absolute;
  right: 6rem;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.module .module__image, html body.products_child#portable-powersupply-230 section.module .module__image {
    position: static;
    padding-top: 3rem;
  }
}
html body.products_child#portable-powersupply-410 section.module .module__image img, html body.products_child#portable-powersupply-230 section.module .module__image img {
  max-width: 130px;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.module .module__image img, html body.products_child#portable-powersupply-230 section.module .module__image img {
    display: block;
    margin: 0 auto;
  }
}
html body.products_child#portable-powersupply-410 section.normal, html body.products_child#portable-powersupply-230 section.normal {
  padding-top: 2rem;
}
html body.products_child#portable-powersupply-410 section.normal .mt_4, html body.products_child#portable-powersupply-230 section.normal .mt_4 {
  margin-top: 4rem;
}
html body.products_child#portable-powersupply-410 section.smartlink-devices, html body.products_child#portable-powersupply-230 section.smartlink-devices {
  margin-top: 3rem;
}
html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item {
  flex-basis: 49%;
}
html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item img, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item img, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item img {
    height: 160px;
  }
}
html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0.5rem 0 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__item .smartlink-devices__name {
    margin: 0.5rem 0 1rem;
  }
}
html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading {
  background-color: #0091DB;
  text-align: center;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading {
    height: 160px;
  }
}
html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title {
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  line-height: 1.432;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title {
    font-size: 2.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title {
    font-size: calc(2.5rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title {
    font-size: calc(2.3rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title {
    font-size: calc(2.1rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title {
    font-size: calc(1.9rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__title {
    font-size: calc(1.7rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 3rem;
  line-height: 1.727;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note {
    font-size: calc(1.7rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note {
    font-size: calc(1.6rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (1)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note, html body.products_child#portable-powersupply-230 section.smartlink-devices .smartlink-devices-wrap .smartlink-devices__heading .smartlink-devices__note {
    margin-top: 1rem;
  }
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner {
    padding: 1rem 2rem;
  }
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__text, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__text {
  margin-bottom: 3rem;
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table {
  border: none;
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th {
  border-top: none;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th:first-child, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th:first-child {
  border-left: none;
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th:last-child, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th:last-child {
  border-right: none;
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th img, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table thead th img {
  max-width: 130px;
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody tr:last-child th,
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody tr:last-child td, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody tr:last-child th,
html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody tr:last-child td {
  border-bottom: none;
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th {
  border-left: none;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody th {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td:last-child, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .comfort__comparison-table tbody td:last-child {
  border-right: none;
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps {
  display: flex;
  justify-content: space-between;
  padding: 4rem 0 0;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps {
    display: block;
  }
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step {
  flex-basis: 31.6666666667%;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step {
    margin-bottom: 2rem;
  }
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content {
  background-color: #0091DB;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number {
  line-height: 1;
  padding-right: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number {
    font-size: 6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number {
    font-size: calc(5.4rem + ((1vw - 0.992rem) * (2.8985507246)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number {
    font-size: calc(4.8rem + ((1vw - 0.768rem) * (2.6905829596)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number {
    font-size: calc(4.2rem + ((1vw - 0.576rem) * (3.1413612565)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number {
    font-size: calc(3.6rem + ((1vw - 0.421rem) * (3.8961038961)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-number {
    font-size: calc(3rem + ((1vw - 0.32rem) * (6)));
  }
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text {
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.1;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text {
    font-size: calc(1.58rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text {
    font-size: calc(1.56rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text {
    font-size: calc(1.54rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text {
    font-size: calc(1.52rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-content .mobile-comfort__step-text {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#portable-powersupply-410 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-image img, html body.products_child#portable-powersupply-230 section.mobile-comfort .mobile-comfort__inner .mobile-comfort__steps .mobile-comfort__step .mobile-comfort__step-image img {
  width: 100%;
}
html body.products_child#portable-powersupply-410 section.bn-points, html body.products_child#portable-powersupply-230 section.bn-points {
  padding-top: 2rem;
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title {
    display: block;
    text-align: center;
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span {
  color: #0091DB;
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span {
    vertical-align: middle;
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__product, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__product {
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__product, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__product {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__product, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__product {
    font-size: calc(2.9rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__product, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__product {
    font-size: calc(2.8rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__product, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__product {
    font-size: calc(2.7rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__product, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__product {
    font-size: calc(2.6rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__product, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__product {
    font-size: calc(2.5rem + ((1vw - 0.32rem) * (1)));
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__count, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__count {
  line-height: 1;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__count, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__count {
    font-size: 7.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__count, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__count {
    font-size: calc(7.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__count, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__count {
    font-size: calc(7.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__count, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__count {
    font-size: calc(7.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__count, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__count {
    font-size: calc(7.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__count, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__count {
    font-size: calc(7.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__text, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__text {
  font-weight: 700;
  letter-spacing: 0;
  padding-right: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__text, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__text {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__text, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__text {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__text, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__text {
    font-size: calc(1.8rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__text, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__text {
    font-size: calc(1.8rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__text, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__text {
    font-size: calc(1.8rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__text, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__text {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__label, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__label {
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__label, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__label {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__label, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__label {
    font-size: calc(3.3rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__label, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__label {
    font-size: calc(3.1rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__label, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__label {
    font-size: calc(2.9rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__label, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__label {
    font-size: calc(2.7rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__title span.bn-points__label, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__title span.bn-points__label {
    font-size: calc(2.5rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item {
  display: flex;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item {
    display: block;
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item.bn-points__item-2, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item.bn-points__item-2 {
  flex-direction: row-reverse;
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content {
  background-color: #0091DB;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-width: 250px;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content {
    min-width: 100%;
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number {
  padding-bottom: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number {
    font-size: calc(1.94rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number {
    font-size: calc(1.88rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number {
    font-size: calc(1.82rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number {
    font-size: calc(1.76rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number {
    font-size: calc(1.7rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number span, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number span {
  line-height: 1;
  padding-left: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number span, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number span {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number span, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number span {
    font-size: calc(5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number span, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number span {
    font-size: calc(5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number span, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number span {
    font-size: calc(5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number span, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number span {
    font-size: calc(5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__number span, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__number span {
    font-size: calc(5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle {
  line-height: 1.633;
  letter-spacing: 0.06em;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle {
    font-size: calc(1.74rem + ((1vw - 0.992rem) * (-0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle {
    font-size: calc(1.78rem + ((1vw - 0.768rem) * (-0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle {
    font-size: calc(1.82rem + ((1vw - 0.576rem) * (-0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle {
    font-size: calc(1.86rem + ((1vw - 0.421rem) * (-0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__content .bn-points__subtitle {
    font-size: calc(1.9rem + ((1vw - 0.32rem) * (-0.4)));
  }
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__item .bn-points__image img, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__item .bn-points__image img {
  width: 100%;
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__note, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__note {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
html body.products_child#portable-powersupply-410 section.bn-points .bn-points__note .bn-points__note-text p, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__note .bn-points__note-text p {
  padding-left: 3rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__note .bn-points__note-text p, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__note .bn-points__note-text p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__note .bn-points__note-text p, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__note .bn-points__note-text p {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__note .bn-points__note-text p, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__note .bn-points__note-text p {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__note .bn-points__note-text p, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__note .bn-points__note-text p {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__note .bn-points__note-text p, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__note .bn-points__note-text p {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.bn-points .bn-points__note .bn-points__note-text p, html body.products_child#portable-powersupply-230 section.bn-points .bn-points__note .bn-points__note-text p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#portable-powersupply-410 section.usages .usages__title, html body.products_child#portable-powersupply-230 section.usages .usages__title {
  line-height: 1.458;
  font-weight: 600;
  letter-spacing: 0;
  margin: 3rem 0 2rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__title, html body.products_child#portable-powersupply-230 section.usages .usages__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__title, html body.products_child#portable-powersupply-230 section.usages .usages__title {
    font-size: calc(2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__title, html body.products_child#portable-powersupply-230 section.usages .usages__title {
    font-size: calc(2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__title, html body.products_child#portable-powersupply-230 section.usages .usages__title {
    font-size: calc(2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__title, html body.products_child#portable-powersupply-230 section.usages .usages__title {
    font-size: calc(2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__title, html body.products_child#portable-powersupply-230 section.usages .usages__title {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.usages .usages__list, html body.products_child#portable-powersupply-230 section.usages .usages__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item, html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item {
  background-color: #f1efe9;
  flex-basis: 32.6666666667%;
  text-align: center;
  padding: 2rem 1rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item, html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item {
    flex-basis: 49%;
  }
}
html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item:nth-child(n+4), html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item:nth-child(n+4) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item:nth-child(n+3), html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item:nth-child(n+3) {
    margin-top: 1rem;
  }
}
html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item .usages__text, html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item .usages__text {
  text-align: center;
  font-weight: 700;
  padding: 1rem 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item .usages__text, html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item .usages__text {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item .usages__text, html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item .usages__text {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item .usages__text, html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item .usages__text {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item .usages__text, html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item .usages__text {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item .usages__text, html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item .usages__text {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item .usages__text, html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item .usages__text {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.usages .usages__list .usages__item .usages__icon, html body.products_child#portable-powersupply-230 section.usages .usages__list .usages__item .usages__icon {
  width: 100%;
  max-width: fit-content;
}
html body.products_child#portable-powersupply-410 section.benefits p.small, html body.products_child#portable-powersupply-230 section.benefits p.small {
  max-width: 600px;
  display: block;
  margin: 0 auto;
  padding-top: 3px;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.benefits p.small, html body.products_child#portable-powersupply-230 section.benefits p.small {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.benefits p.small, html body.products_child#portable-powersupply-230 section.benefits p.small {
    font-size: calc(0.98rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.benefits p.small, html body.products_child#portable-powersupply-230 section.benefits p.small {
    font-size: calc(0.96rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.benefits p.small, html body.products_child#portable-powersupply-230 section.benefits p.small {
    font-size: calc(0.94rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.benefits p.small, html body.products_child#portable-powersupply-230 section.benefits p.small {
    font-size: calc(0.92rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.benefits p.small, html body.products_child#portable-powersupply-230 section.benefits p.small {
    font-size: calc(0.9rem + ((1vw - 0.32rem) * (0.2)));
  }
}
@media screen and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.benefits p.small, html body.products_child#portable-powersupply-230 section.benefits p.small {
    padding: 3px 1.5rem 0;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.benefits p.note, html body.products_child#portable-powersupply-230 section.benefits p.note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.benefits p.note, html body.products_child#portable-powersupply-230 section.benefits p.note {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.benefits p.note, html body.products_child#portable-powersupply-230 section.benefits p.note {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.benefits p.note, html body.products_child#portable-powersupply-230 section.benefits p.note {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.benefits p.note, html body.products_child#portable-powersupply-230 section.benefits p.note {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.benefits p.note, html body.products_child#portable-powersupply-230 section.benefits p.note {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.benefits .mt_2, html body.products_child#portable-powersupply-230 section.benefits .mt_2 {
  margin-top: 2rem;
}
html body.products_child#portable-powersupply-410 section.benefits .benefits__text, html body.products_child#portable-powersupply-230 section.benefits .benefits__text {
  padding-bottom: 5rem;
}
html body.products_child#portable-powersupply-410 section.benefits .benefits-5-box, html body.products_child#portable-powersupply-230 section.benefits .benefits-5-box {
  position: relative;
  background-color: #f2efea;
}
html body.products_child#portable-powersupply-410 section.benefits .benefits-5-box .benefits-solar, html body.products_child#portable-powersupply-230 section.benefits .benefits-5-box .benefits-solar {
  position: absolute;
  right: 4rem;
  bottom: -7.5rem;
  max-width: 200px;
}
@media screen and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits-5-box .benefits-solar, html body.products_child#portable-powersupply-230 section.benefits .benefits-5-box .benefits-solar {
    right: 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits-5-box .benefits-solar, html body.products_child#portable-powersupply-230 section.benefits .benefits-5-box .benefits-solar {
    bottom: -5rem;
    max-width: 100px;
  }
}
html body.products_child#portable-powersupply-410 section.benefits .benefits-5-box .benefits-solar-caption, html body.products_child#portable-powersupply-230 section.benefits .benefits-5-box .benefits-solar-caption {
  position: absolute;
  right: 6rem;
  bottom: -11rem;
  text-align: center;
}
@media screen and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits-5-box .benefits-solar-caption, html body.products_child#portable-powersupply-230 section.benefits .benefits-5-box .benefits-solar-caption {
    right: 1.5rem;
    bottom: -10.5rem;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits-5-box .benefits-solar-caption, html body.products_child#portable-powersupply-230 section.benefits .benefits-5-box .benefits-solar-caption {
    right: 0;
    bottom: -8.5rem;
    font-size: 8px !important;
  }
}
html body.products_child#portable-powersupply-410 section.benefits .benefits__subheading, html body.products_child#portable-powersupply-230 section.benefits .benefits__subheading {
  text-align: center;
  font-weight: 600;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__subheading, html body.products_child#portable-powersupply-230 section.benefits .benefits__subheading {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__subheading, html body.products_child#portable-powersupply-230 section.benefits .benefits__subheading {
    font-size: calc(1.98rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__subheading, html body.products_child#portable-powersupply-230 section.benefits .benefits__subheading {
    font-size: calc(1.96rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__subheading, html body.products_child#portable-powersupply-230 section.benefits .benefits__subheading {
    font-size: calc(1.94rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__subheading, html body.products_child#portable-powersupply-230 section.benefits .benefits__subheading {
    font-size: calc(1.92rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__subheading, html body.products_child#portable-powersupply-230 section.benefits .benefits__subheading {
    font-size: calc(1.9rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times, html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times {
  border: 1px solid #BEBEBE;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item, html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item {
  padding: 0.5rem 2rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item, html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item {
    padding: 0.5rem;
  }
}
html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item:not(:last-child), html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item:not(:last-child) {
  border-bottom: 1px solid #BEBEBE;
}
html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner, html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  max-width: 400px;
  margin: 0 auto;
}
html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1), html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1) {
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1), html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1) {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1), html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1) {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1), html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1) {
    font-size: calc(1.8rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1), html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1) {
    font-size: calc(1.8rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1), html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1) {
    font-size: calc(1.8rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1), html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(1) {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(2), html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(2) {
  padding: 0 3rem;
}
html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3), html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) {
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span, html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span, html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span {
    font-size: calc(2.74rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span, html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span {
    font-size: calc(2.68rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span, html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span {
    font-size: calc(2.62rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span, html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span {
    font-size: calc(2.56rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span, html body.products_child#portable-powersupply-230 section.benefits .benefits__solar-times .benefits__solar-item .benefits__solar-item-inner p:nth-child(3) span {
    font-size: calc(2.5rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#portable-powersupply-410 section.benefits .benefits__title, html body.products_child#portable-powersupply-230 section.benefits .benefits__title {
  padding: 1rem 0;
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.benefits .benefits__title, html body.products_child#portable-powersupply-230 section.benefits .benefits__title {
    margin: 0 0 1rem;
    padding: 2rem 0 1rem;
  }
}
html body.products_child#portable-powersupply-410 section.output .output__title, html body.products_child#portable-powersupply-230 section.output .output__title {
  line-height: 1.458;
  letter-spacing: 0;
  font-weight: 600;
  padding: 3rem 0 2rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.output .output__title, html body.products_child#portable-powersupply-230 section.output .output__title {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.output .output__title, html body.products_child#portable-powersupply-230 section.output .output__title {
    font-size: calc(2.68rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.output .output__title, html body.products_child#portable-powersupply-230 section.output .output__title {
    font-size: calc(2.56rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__title, html body.products_child#portable-powersupply-230 section.output .output__title {
    font-size: calc(2.44rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__title, html body.products_child#portable-powersupply-230 section.output .output__title {
    font-size: calc(2.32rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.output .output__title, html body.products_child#portable-powersupply-230 section.output .output__title {
    font-size: calc(2.2rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#portable-powersupply-410 section.output .output__ways, html body.products_child#portable-powersupply-230 section.output .output__ways {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 4rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways, html body.products_child#portable-powersupply-230 section.output .output__ways {
    display: block;
    text-align: center;
  }
}
html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main {
  display: flex;
  align-items: end;
  padding-right: 1rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main {
    justify-content: center;
    padding-bottom: 2rem;
  }
}
html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p {
  color: #0091DB;
  font-weight: 500;
}
html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-number, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-number {
  line-height: 0.8;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-number, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-number {
    font-size: 14rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-number, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-number {
    font-size: calc(13.2rem + ((1vw - 0.992rem) * (3.8647342995)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-number, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-number {
    font-size: calc(12.4rem + ((1vw - 0.768rem) * (3.5874439462)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-number, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-number {
    font-size: calc(11.6rem + ((1vw - 0.576rem) * (4.1884816754)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-number, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-number {
    font-size: calc(10.8rem + ((1vw - 0.421rem) * (5.1948051948)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-number, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-number {
    font-size: calc(10rem + ((1vw - 0.32rem) * (8)));
  }
}
html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span {
  display: block;
  line-height: 1;
}
html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en {
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en {
    font-size: 5.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en {
    font-size: calc(4.94rem + ((1vw - 0.992rem) * (2.2222222222)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en {
    font-size: calc(4.48rem + ((1vw - 0.768rem) * (2.0627802691)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en {
    font-size: calc(4.02rem + ((1vw - 0.576rem) * (2.4083769634)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en {
    font-size: calc(3.56rem + ((1vw - 0.421rem) * (2.987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-en {
    font-size: calc(3.1rem + ((1vw - 0.32rem) * (4.6)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub {
    font-size: calc(3.1rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub {
    font-size: calc(3rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub {
    font-size: calc(2.9rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub {
    font-size: calc(2.8rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-main p.output__way-text span.output__way-text-sub {
    font-size: calc(2.7rem + ((1vw - 0.32rem) * (1)));
  }
}
html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-itembox, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-itembox {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-itembox, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-itembox {
    display: block;
  }
}
html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item {
  background-color: #0091DB;
  padding: 1.5rem 0.1rem;
  margin: 0 0.2rem;
  flex-basis: 33.3333333333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item {
    margin: 0 0.1rem;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item {
    display: block;
    width: 100%;
    margin: 0.1rem 0;
    padding: 1rem;
  }
}
html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p {
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-label, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-label {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-label, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-label {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-label, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-label {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-label, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-label {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-label, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-label {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-label, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-label {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-type, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-type {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-type, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-type {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-type, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-type {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-type, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-type {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-type, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-type {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.output .output__ways .output__way-item p.output__way-type, html body.products_child#portable-powersupply-230 section.output .output__ways .output__way-item p.output__way-type {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.output .output__features, html body.products_child#portable-powersupply-230 section.output .output__features {
  display: flex;
  justify-content: space-between;
  padding-top: 4rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__features, html body.products_child#portable-powersupply-230 section.output .output__features {
    display: block;
  }
}
html body.products_child#portable-powersupply-410 section.output .output__features .output__feature, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature {
  flex-basis: 47.5%;
  background-color: #ffffff;
  text-align: center;
  padding: 2rem 1.5rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature {
    padding: 2rem;
  }
}
html body.products_child#portable-powersupply-410 section.output .output__features .output__feature .output__feature-title, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature .output__feature-title {
  font-weight: 700;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature .output__feature-title, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature .output__feature-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature .output__feature-title, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature .output__feature-title {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature .output__feature-title, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature .output__feature-title {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature .output__feature-title, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature .output__feature-title {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature .output__feature-title, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature .output__feature-title {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature .output__feature-title, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature .output__feature-title {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p {
  text-align: left;
  font-weight: 500;
  padding-top: 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-text, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-text {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-text, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-text {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-text, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-text {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-text, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-text {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-text, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-text {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-text, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-text {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-note, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-note, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-note {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-note, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-note {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-note, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-note {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-note, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-note {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.output .output__features .output__feature p.output__feature-note, html body.products_child#portable-powersupply-230 section.output .output__features .output__feature p.output__feature-note {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.output .output__summary, html body.products_child#portable-powersupply-230 section.output .output__summary {
  padding: 3.5rem 0 5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.output .output__summary, html body.products_child#portable-powersupply-230 section.output .output__summary {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.output .output__summary, html body.products_child#portable-powersupply-230 section.output .output__summary {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.output .output__summary, html body.products_child#portable-powersupply-230 section.output .output__summary {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.output .output__summary, html body.products_child#portable-powersupply-230 section.output .output__summary {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.output .output__summary, html body.products_child#portable-powersupply-230 section.output .output__summary {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.output .output__summary, html body.products_child#portable-powersupply-230 section.output .output__summary {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.portable-power-overview, html body.products_child#portable-powersupply-230 section.portable-power-overview {
  padding-bottom: 3rem;
}
html body.products_child#portable-powersupply-410 section.portable-power-overview h2::after, html body.products_child#portable-powersupply-230 section.portable-power-overview h2::after {
  width: 0px;
}
html body.products_child#portable-powersupply-410 section.portable-power-overview .overview-table, html body.products_child#portable-powersupply-230 section.portable-power-overview .overview-table {
  background-color: #ffffff;
}
html body.products_child#portable-powersupply-410 section.accessories .accessories__title, html body.products_child#portable-powersupply-230 section.accessories .accessories__title {
  font-weight: 500;
  text-align: center;
  padding: 3rem 0 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__title, html body.products_child#portable-powersupply-230 section.accessories .accessories__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__title, html body.products_child#portable-powersupply-230 section.accessories .accessories__title {
    font-size: calc(2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__title, html body.products_child#portable-powersupply-230 section.accessories .accessories__title {
    font-size: calc(2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__title, html body.products_child#portable-powersupply-230 section.accessories .accessories__title {
    font-size: calc(2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__title, html body.products_child#portable-powersupply-230 section.accessories .accessories__title {
    font-size: calc(2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__title, html body.products_child#portable-powersupply-230 section.accessories .accessories__title {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.accessories .accessories__image, html body.products_child#portable-powersupply-230 section.accessories .accessories__image {
  text-align: center;
}
html body.products_child#portable-powersupply-410 section.accessories .accessories__image img, html body.products_child#portable-powersupply-230 section.accessories .accessories__image img {
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__image img, html body.products_child#portable-powersupply-230 section.accessories .accessories__image img {
    max-width: 300px;
  }
}
html body.products_child#portable-powersupply-410 section.accessories .accessories__list, html body.products_child#portable-powersupply-230 section.accessories .accessories__list {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__list, html body.products_child#portable-powersupply-230 section.accessories .accessories__list {
    width: 80%;
  }
}
html body.products_child#portable-powersupply-410 section.accessories .accessories__list li, html body.products_child#portable-powersupply-230 section.accessories .accessories__list li {
  padding-left: 1rem;
  text-indent: -1rem;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__list li, html body.products_child#portable-powersupply-230 section.accessories .accessories__list li {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__list li, html body.products_child#portable-powersupply-230 section.accessories .accessories__list li {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__list li, html body.products_child#portable-powersupply-230 section.accessories .accessories__list li {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__list li, html body.products_child#portable-powersupply-230 section.accessories .accessories__list li {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__list li, html body.products_child#portable-powersupply-230 section.accessories .accessories__list li {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.accessories .accessories__list li, html body.products_child#portable-powersupply-230 section.accessories .accessories__list li {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.accessories .accessories__list li::before, html body.products_child#portable-powersupply-230 section.accessories .accessories__list li::before {
  content: "・";
}
html body.products_child#portable-powersupply-410 section.specification .overview__features, html body.products_child#portable-powersupply-230 section.specification .overview__features {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.4rem 1rem 0;
}
html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__heading, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__heading {
  text-align: center;
  font-weight: 700;
  border: 1px solid;
  padding: 0.5rem;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__heading, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__heading {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__heading, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__heading {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__heading, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__heading {
    font-size: calc(1.8rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__heading, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__heading {
    font-size: calc(1.8rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__heading, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__heading {
    font-size: calc(1.8rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__heading, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__heading {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list {
    justify-content: flex-start;
  }
}
html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list.overview__features-column5 .overview__features-item:nth-child(-n+5), html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list.overview__features-column5 .overview__features-item:nth-child(-n+5) {
  flex-basis: 20%;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list.overview__features-column5 .overview__features-item:nth-child(-n+5), html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list.overview__features-column5 .overview__features-item:nth-child(-n+5) {
    flex-basis: 33.3333333333%;
  }
}
html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item {
  flex-basis: 25%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item {
    flex-basis: 33.3333333333%;
  }
}
html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item img, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item img {
  display: block;
  margin: 0 auto;
  max-width: 90px;
}
html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.222;
}
html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name {
  margin-top: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name {
    font-size: calc(1.3rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name {
    font-size: calc(1.3rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name {
    font-size: calc(1.3rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name {
    font-size: calc(1.3rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-name {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#portable-powersupply-410 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note.overview__features-note--left, html body.products_child#portable-powersupply-230 section.specification .overview__features .overview__features-list .overview__features-item p.overview__features-note.overview__features-note--left {
  text-align: left;
  text-indent: -1.5rem;
  padding-left: 1.5rem;
}
html body.products_child#portable-powersupply-410 section .bg-color-3, html body.products_child#portable-powersupply-230 section .bg-color-3 {
  background-color: #f2efea;
}
html body.products_child#portable-powersupply-410 main::after {
  background-image: url(../../images/products/portable-power/bg-portable_power410.webp);
}
html body.products_child#portable-powersupply-410 section.overview .overview__main {
  background-image: url(../../images/products/portable-power/overview-bg-410.webp);
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-410 section.overview_ltl-sp {
    background-image: url(../../images/products/overview_ltl_410.webp);
  }
}
html body.products_child#portable-powersupply-410 section.solution .solution__features .solution__feature:nth-child(3) {
  background-image: url(../../images/products/portable-power/solution__feature3-410.webp);
}
html body.products_child#portable-powersupply-230 main::after {
  background-image: url(../../images/products/portable-power/bg-portable_power230.webp);
}
html body.products_child#portable-powersupply-230 section.overview .overview__main {
  background-image: url(../../images/products/portable-power/overview-bg-230.webp);
}
@media screen and (max-width: 575px) {
  html body.products_child#portable-powersupply-230 section.overview_ltl-sp {
    background-image: url(../../images/products/overview_ltl_230.webp);
  }
}
html body.products_child#mobile-battery main::after {
  background-image: url(../../images/products/mobile-battery/bg-mobile-battery.webp);
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.overview_ltl-sp {
    background-size: cover;
    background-position: 50% 26%;
  }
}
html body.products_child#mobile-battery section.overview .overview__main {
  background-image: url(../../images/products/mobile-battery/overview-bg.webp);
}
@media screen and (max-width: 575px) {
  html body.products_child#mobile-battery section.overview_ltl-sp {
    background-image: url(../../images/products/overview_ltl_mobile.webp);
  }
}
html body.products_child#mobile-battery section.batteryimage .batteryimage__inner {
  display: flex;
}
html body.products_child#mobile-battery section.batteryimage .batteryimage__photobox {
  flex: 1;
}
html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox {
  flex: 1;
  background-color: #0091DB;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p {
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__specmain {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__specmain {
    font-size: calc(3.2rem + ((1vw - 0.992rem) * (1.4492753623)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__specmain {
    font-size: calc(2.9rem + ((1vw - 0.768rem) * (1.3452914798)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__specmain {
    font-size: calc(2.6rem + ((1vw - 0.576rem) * (1.5706806283)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__specmain {
    font-size: calc(2.3rem + ((1vw - 0.421rem) * (1.9480519481)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__specmain {
    font-size: calc(2rem + ((1vw - 0.32rem) * (3)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__spectext {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__spectext {
    font-size: calc(2.34rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__spectext {
    font-size: calc(2.18rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__spectext {
    font-size: calc(2.02rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__spectext {
    font-size: calc(1.86rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.batteryimage .batteryimage__specbox p.batteryimage__spectext {
    font-size: calc(1.7rem + ((1vw - 0.32rem) * (1.6)));
  }
}
html body.products_child#mobile-battery section.smartlink {
  padding-top: 5rem;
}
html body.products_child#mobile-battery section.u4device {
  margin-top: 8rem;
}
html body.products_child#mobile-battery section.u4device .u4device__head {
  background-color: #0091DB;
  text-align: center;
  padding: 3rem 1rem;
  margin-bottom: 3rem;
}
html body.products_child#mobile-battery section.u4device .u4device__head .u4device_logo {
  max-width: 90px;
}
html body.products_child#mobile-battery section.u4device .u4device__head .u4device__title {
  color: #ffffff;
  line-height: 1.432;
  font-weight: 600;
  padding: 2rem 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__title {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__title {
    font-size: calc(3.32rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__title {
    font-size: calc(3.24rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__title {
    font-size: calc(3.16rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__title {
    font-size: calc(3.08rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__title {
    font-size: calc(3rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#mobile-battery section.u4device .u4device__head .u4device__text {
  color: #ffffff;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__text {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__text {
    font-size: calc(1.88rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__text {
    font-size: calc(1.76rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__text {
    font-size: calc(1.64rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__text {
    font-size: calc(1.52rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.u4device .u4device__head .u4device__text {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#mobile-battery section.u4device .u4device__item {
  position: relative;
  margin-bottom: 4rem;
}
html body.products_child#mobile-battery section.u4device .u4device__item .u4device__itemtitle {
  background-color: #0091DB;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  padding: 1rem;
  width: 280px;
  position: absolute;
  top: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.u4device .u4device__item .u4device__itemtitle {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.u4device .u4device__item .u4device__itemtitle {
    font-size: calc(1.9rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.u4device .u4device__item .u4device__itemtitle {
    font-size: calc(1.8rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.u4device .u4device__item .u4device__itemtitle {
    font-size: calc(1.7rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.u4device .u4device__item .u4device__itemtitle {
    font-size: calc(1.6rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.u4device .u4device__item .u4device__itemtitle {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (1)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.u4device .u4device__item .u4device__itemtitle {
    padding: 0.5rem 1rem;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.u4device .u4device__item .u4device__itemtitle {
    width: 60%;
  }
}
html body.products_child#mobile-battery section.u4device .u4device__item:nth-child(even) .u4device__itemtitle {
  left: 0;
}
html body.products_child#mobile-battery section.u4device .u4device__item:nth-child(odd) .u4device__itemtitle {
  right: 0;
}
html body.products_child#mobile-battery section.lightcarry {
  position: relative;
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__image {
  position: relative;
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0091DB;
  padding: 5rem 3rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title {
    padding: 2rem 3rem;
  }
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p {
  font-weight: 500;
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__maintitle {
  color: #ffffff;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__maintitle {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__maintitle {
    font-size: calc(2.24rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__maintitle {
    font-size: calc(2.18rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__maintitle {
    font-size: calc(2.12rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__maintitle {
    font-size: calc(2.06rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__maintitle {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle {
  color: #ffffff;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle {
    font-size: 4.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle {
    font-size: calc(3.9rem + ((1vw - 0.992rem) * (1.9323671498)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle {
    font-size: calc(3.5rem + ((1vw - 0.768rem) * (1.7937219731)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle {
    font-size: calc(3.1rem + ((1vw - 0.576rem) * (2.0942408377)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle {
    font-size: calc(2.7rem + ((1vw - 0.421rem) * (2.5974025974)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle {
    font-size: calc(2.3rem + ((1vw - 0.32rem) * (4)));
  }
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle span {
  line-height: 1;
  letter-spacing: -0.1em;
  padding-right: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle span {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle span {
    font-size: calc(9.4rem + ((1vw - 0.992rem) * (2.8985507246)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle span {
    font-size: calc(8.8rem + ((1vw - 0.768rem) * (2.6905829596)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle span {
    font-size: calc(8.2rem + ((1vw - 0.576rem) * (3.1413612565)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle span {
    font-size: calc(7.6rem + ((1vw - 0.421rem) * (3.8961038961)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle span {
    font-size: calc(7rem + ((1vw - 0.32rem) * (6)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__image .lightcarry__title p.lightcarry__subtitle span {
    padding-right: 1rem;
  }
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__content {
  padding-top: 2rem;
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__content .products__text {
  margin-bottom: 2rem;
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__content .size {
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__content .size {
    display: block;
    margin: 0 auto;
  }
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__hand {
  position: absolute;
  right: 2rem;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__hand {
    position: static;
    text-align: center;
  }
}
html body.products_child#mobile-battery section.lightcarry .lightcarry__hand img {
  max-width: 190px;
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.lightcarry .lightcarry__hand img {
    max-width: 150px;
    display: block;
    margin: 4rem auto 0;
  }
}
html body.products_child#mobile-battery section.quickcharge .quickcharge__inner {
  position: relative;
}
html body.products_child#mobile-battery section.quickcharge .quickcharge__inner .products__text {
  width: 65%;
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.quickcharge .quickcharge__inner .products__text {
    width: 100%;
  }
}
html body.products_child#mobile-battery section.quickcharge .quickcharge__inner .quickcharge__mobilebattery {
  position: absolute;
  right: 0;
  top: -2rem;
  max-width: 140px;
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.quickcharge .quickcharge__inner .quickcharge__mobilebattery {
    position: static;
    margin: 0 auto;
    display: block;
    max-width: 150px;
  }
}
html body.products_child#mobile-battery section.bms {
  padding-top: 5rem;
}
html body.products_child#mobile-battery section.bms .bms__title {
  text-align: center;
}
html body.products_child#mobile-battery section.bms .bms__title .bms__title-copy {
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-copy {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-copy {
    font-size: calc(2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-copy {
    font-size: calc(2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-copy {
    font-size: calc(2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-copy {
    font-size: calc(2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-copy {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#mobile-battery section.bms .bms__title .bms__title-en {
  color: #0091DB;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-en {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-en {
    font-size: calc(3.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-en {
    font-size: calc(3.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-en {
    font-size: calc(3.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-en {
    font-size: calc(3.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-en {
    font-size: calc(3rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#mobile-battery section.bms .bms__title .bms__title-text {
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-text {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-text {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-text {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-text {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-text {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.bms .bms__title .bms__title-text {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#mobile-battery section.bms .bms__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 600px;
  margin: 3rem auto;
}
html body.products_child#mobile-battery section.bms .bms__list .bms__item {
  flex-basis: 24.5%;
  text-align: center;
}
@media screen and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__list .bms__item {
    flex-basis: 23.75%;
  }
}
html body.products_child#mobile-battery section.bms .bms__list .bms__item img {
  max-width: 100px;
}
html body.products_child#mobile-battery section.bms .bms__list .bms__item .bms__item-text {
  padding: 1rem 0 1.5rem;
  line-height: 1.211;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.bms .bms__list .bms__item .bms__item-text {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.bms .bms__list .bms__item .bms__item-text {
    font-size: calc(1.44rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.bms .bms__list .bms__item .bms__item-text {
    font-size: calc(1.38rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.bms .bms__list .bms__item .bms__item-text {
    font-size: calc(1.32rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__list .bms__item .bms__item-text {
    font-size: calc(1.26rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.bms .bms__list .bms__item .bms__item-text {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#mobile-battery section.bms .bms__note {
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.bms .bms__note {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.bms .bms__note {
    font-size: calc(1.72rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.bms .bms__note {
    font-size: calc(1.64rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.bms .bms__note {
    font-size: calc(1.56rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__note {
    font-size: calc(1.48rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.bms .bms__note {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#mobile-battery section.bms .bms__pse {
  background-color: #f1efe9;
  padding: 3rem 0;
  margin-top: 4rem;
}
html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap {
    display: block;
  }
}
html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-image img {
  max-width: 320px;
}
@media screen and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-image {
    text-align: center;
  }
}
html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text {
  text-align: center;
  padding-left: 1rem;
}
html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-title {
  color: #0091DB;
  letter-spacing: 0;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-title {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-title {
    font-size: calc(2.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-title {
    font-size: calc(2.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-title {
    font-size: calc(2.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-title {
    font-size: calc(2.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-title {
    font-size: calc(2.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-title {
    margin: 2rem 0;
  }
}
html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-text-detail {
  font-weight: 600;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-text-detail {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-text-detail {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-text-detail {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-text-detail {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-text-detail {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.bms .bms__pse .bms__pse-wrap .bms__pse-text .bms__pse-text-detail {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#mobile-battery section.slotcharge .products__text {
  margin-bottom: 5rem;
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper {
    display: block;
  }
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist {
  text-align: center;
  padding-right: 3rem;
}
@media screen and (max-width: 991px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist {
    padding-right: 1rem;
  }
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryname {
  color: #0091DB;
  padding-top: 2rem;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryname {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryname {
    font-size: calc(2.98rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryname {
    font-size: calc(2.96rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryname {
    font-size: calc(2.94rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryname {
    font-size: calc(2.92rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryname {
    font-size: calc(2.9rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryspec {
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryspec {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryspec {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryspec {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryspec {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryspec {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__batterylist .slotcharge__batteryspec {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__portablepower {
    text-align: center;
    display: none;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__portablepower {
    padding-bottom: 1rem;
  }
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__portablepower .slotcharge__caption {
  text-align: right;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__portablepower .slotcharge__caption {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__portablepower .slotcharge__caption {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__portablepower .slotcharge__caption {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__portablepower .slotcharge__caption {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__portablepower .slotcharge__caption {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__portablepower .slotcharge__caption {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery {
    text-align: center;
    display: none;
  }
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs {
  background-color: #0091DB;
  border-radius: 6px;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs {
    margin: 0 auto;
    height: 90px;
  }
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec {
  color: #ffffff;
  text-align: center;
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__name {
  letter-spacing: 0.01em;
  line-height: 1.125;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__name {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__name {
    font-size: calc(1.36rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__name {
    font-size: calc(1.32rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__name {
    font-size: calc(1.28rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__name {
    font-size: calc(1.24rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__name {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__quantity {
  letter-spacing: 0.02em;
  font-weight: 600;
  padding-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__quantity {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__quantity {
    font-size: calc(1.58rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__quantity {
    font-size: calc(1.56rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__quantity {
    font-size: calc(1.54rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__quantity {
    font-size: calc(1.52rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__quantity {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0.2)));
  }
}
@media screen and (max-width: 991px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__battery .battery__specs .battery__spec.battery__quantity {
    padding-top: 0.1rem;
  }
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__image {
  display: none;
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__wrapper .slotcharge__image {
    display: block;
  }
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__actions {
  display: flex;
  justify-content: space-between;
  padding-top: 6rem;
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__actions .slotcharge__action {
  flex-basis: 49%;
}
@media screen and (max-width: 991px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__actions .slotcharge__action {
    flex-basis: 47.5%;
  }
}
html body.products_child#mobile-battery section.slotcharge .slotcharge__actions .slotcharge__action .slotcharge__action-text {
  font-weight: 500;
  line-height: 1.522;
  padding-top: 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__actions .slotcharge__action .slotcharge__action-text {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__actions .slotcharge__action .slotcharge__action-text {
    font-size: calc(1.46rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__actions .slotcharge__action .slotcharge__action-text {
    font-size: calc(1.42rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__actions .slotcharge__action .slotcharge__action-text {
    font-size: calc(1.38rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__actions .slotcharge__action .slotcharge__action-text {
    font-size: calc(1.34rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.slotcharge .slotcharge__actions .slotcharge__action .slotcharge__action-text {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#mobile-battery section.portablepower {
  margin-top: 5rem;
  padding: 5rem 0;
}
html body.products_child#mobile-battery section.portablepower .portablepower__item {
  background-color: #ffffff;
}
html body.products_child#mobile-battery section.portablepower .portablepower__item:not(:last-child) {
  margin-bottom: 5rem;
}
html body.products_child#mobile-battery section.portablepower .portablepower__item img {
  width: 100%;
}
html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 2rem 1rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content {
    display: block;
  }
}
html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__category {
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__category {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__category {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__category {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__category {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__category {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__category {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__name {
  color: #0091DB;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__name {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__name {
    font-size: calc(4.22rem + ((1vw - 0.992rem) * (-1.0628019324)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__name {
    font-size: calc(4.44rem + ((1vw - 0.768rem) * (-0.9865470852)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__name {
    font-size: calc(4.66rem + ((1vw - 0.576rem) * (-1.1518324607)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__name {
    font-size: calc(4.88rem + ((1vw - 0.421rem) * (-1.4285714286)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__title .portablepower__name {
    font-size: calc(5.1rem + ((1vw - 0.32rem) * (-2.2)));
  }
}
html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__specs {
  font-weight: 500;
  line-height: 1.438;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__specs {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__specs {
    font-size: calc(1.46rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__specs {
    font-size: calc(1.42rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__specs {
    font-size: calc(1.38rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__specs {
    font-size: calc(1.34rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__info .portablepower__specs {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price {
  text-align: right;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price {
    font-size: calc(2.34rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price {
    font-size: calc(2.18rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price {
    font-size: calc(2.02rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price {
    font-size: calc(1.86rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price {
    font-size: calc(1.7rem + ((1vw - 0.32rem) * (1.6)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price {
    text-align: left;
    padding-top: 1rem;
  }
}
html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price.tax::after {
  content: "（税込）";
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price.tax::after {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price.tax::after {
    font-size: calc(1.46rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price.tax::after {
    font-size: calc(1.42rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price.tax::after {
    font-size: calc(1.38rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price.tax::after {
    font-size: calc(1.34rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .portablepower__price.tax::after {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .product__button__box {
  text-align: center;
}
html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase .product__button__box .product__button-look {
  margin-right: 0.8rem;
  margin-left: auto;
  width: 51%;
  padding: 0.6rem 0.3rem;
}
@media screen and (max-width: 1199px) {
  html body.products_child#mobile-battery section.portablepower .portablepower__item .portablepower__content .portablepower__purchase a {
    display: inline-block;
  }
}
html body.products_child#mobile-battery section.package .package__title {
  text-align: center;
  font-weight: 500;
  padding: 4rem 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.package .package__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.package .package__title {
    font-size: calc(1.9rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.package .package__title {
    font-size: calc(1.8rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.package .package__title {
    font-size: calc(1.7rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.package .package__title {
    font-size: calc(1.6rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.package .package__title {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (1)));
  }
}
html body.products_child#mobile-battery section.package .package__items {
  border: 1px solid #707070;
  padding: 3rem 2rem;
}
html body.products_child#mobile-battery section.package .package__items .package__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 575px) {
  html body.products_child#mobile-battery section.package .package__items .package__item {
    display: block;
    text-align: center;
  }
}
html body.products_child#mobile-battery section.package .package__items .package__item:first-child {
  border-bottom: 1px solid #707070;
  padding: 0 0 1rem;
  margin: 0 0 1rem;
}
html body.products_child#mobile-battery section.package .package__items .package__item:nth-child(2) {
  padding: 2rem 0 0;
}
html body.products_child#mobile-battery section.package .package__items .package__item:nth-child(2) .package__name {
  width: 65%;
}
@media screen and (max-width: 575px) {
  html body.products_child#mobile-battery section.package .package__items .package__item:nth-child(2) .package__name {
    width: 100%;
  }
}
html body.products_child#mobile-battery section.package .package__items .package__item:nth-child(2) .package__specs {
  width: auto;
}
@media screen and (max-width: 575px) {
  html body.products_child#mobile-battery section.package .package__items .package__item:nth-child(2) .package__specs {
    width: 100%;
  }
}
html body.products_child#mobile-battery section.package .package__items .package__item .package__name {
  font-weight: 500;
  padding: 0 2rem 0 1rem;
  width: 38%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__name {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__name {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__name {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__name {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__name {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__name {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__name {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__name {
    width: 100%;
    padding: 1rem 0 2rem;
  }
}
html body.products_child#mobile-battery section.package .package__items .package__item .package__specs {
  letter-spacing: 0.1em;
  line-height: 1.667;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__specs {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__specs {
    font-size: calc(1.28rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__specs {
    font-size: calc(1.26rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__specs {
    font-size: calc(1.24rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__specs {
    font-size: calc(1.22rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.package .package__items .package__item .package__specs {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#mobile-battery section.package .package__recycle-title {
  letter-spacing: 0.04em;
  padding: 4rem 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.package .package__recycle-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.package .package__recycle-title {
    font-size: calc(2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.package .package__recycle-title {
    font-size: calc(2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.package .package__recycle-title {
    font-size: calc(2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.package .package__recycle-title {
    font-size: calc(2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.package .package__recycle-title {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#mobile-battery section.package .package__recycle-text {
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.package .package__recycle-text {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.package .package__recycle-text {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.package .package__recycle-text {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.package .package__recycle-text {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.package .package__recycle-text {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.package .package__recycle-text {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#mobile-battery section.product-list h2 {
  padding: 5rem 0 2rem;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#mobile-battery section.product-list h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#mobile-battery section.product-list h2 {
    font-size: calc(2.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#mobile-battery section.product-list h2 {
    font-size: calc(2.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#mobile-battery section.product-list h2 {
    font-size: calc(2.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#mobile-battery section.product-list h2 {
    font-size: calc(2.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#mobile-battery section.product-list h2 {
    font-size: calc(2.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#stick-cleaner h2, html body.products_child#handy-cleaner h2, html body.products_child#cordless-washer h2, html body.products_child#camping-lantern h2, html body.products_child#musclecare h2 {
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner h2, html body.products_child#handy-cleaner h2, html body.products_child#cordless-washer h2, html body.products_child#camping-lantern h2, html body.products_child#musclecare h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner h2, html body.products_child#handy-cleaner h2, html body.products_child#cordless-washer h2, html body.products_child#camping-lantern h2, html body.products_child#musclecare h2 {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner h2, html body.products_child#handy-cleaner h2, html body.products_child#cordless-washer h2, html body.products_child#camping-lantern h2, html body.products_child#musclecare h2 {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner h2, html body.products_child#handy-cleaner h2, html body.products_child#cordless-washer h2, html body.products_child#camping-lantern h2, html body.products_child#musclecare h2 {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner h2, html body.products_child#handy-cleaner h2, html body.products_child#cordless-washer h2, html body.products_child#camping-lantern h2, html body.products_child#musclecare h2 {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner h2, html body.products_child#handy-cleaner h2, html body.products_child#cordless-washer h2, html body.products_child#camping-lantern h2, html body.products_child#musclecare h2 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.smartlink, html body.products_child#handy-cleaner section.smartlink, html body.products_child#cordless-washer section.smartlink, html body.products_child#camping-lantern section.smartlink, html body.products_child#musclecare section.smartlink {
  background-color: #0091DB;
  padding: 1.5rem 1rem;
}
html body.products_child#stick-cleaner section.smartlink .smartlink__inner, html body.products_child#handy-cleaner section.smartlink .smartlink__inner, html body.products_child#cordless-washer section.smartlink .smartlink__inner, html body.products_child#camping-lantern section.smartlink .smartlink__inner, html body.products_child#musclecare section.smartlink .smartlink__inner {
  padding: 0;
}
html body.products_child#stick-cleaner section.smartlink .smartlink__intro, html body.products_child#handy-cleaner section.smartlink .smartlink__intro, html body.products_child#cordless-washer section.smartlink .smartlink__intro, html body.products_child#camping-lantern section.smartlink .smartlink__intro, html body.products_child#musclecare section.smartlink .smartlink__intro {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  html body.products_child#stick-cleaner section.smartlink .smartlink__intro, html body.products_child#handy-cleaner section.smartlink .smartlink__intro, html body.products_child#cordless-washer section.smartlink .smartlink__intro, html body.products_child#camping-lantern section.smartlink .smartlink__intro, html body.products_child#musclecare section.smartlink .smartlink__intro {
    padding: 3rem 0rem 0;
  }
}
html body.products_child#stick-cleaner section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#handy-cleaner section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#cordless-washer section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#camping-lantern section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#musclecare section.smartlink .smartlink__intro .smartlink__detail {
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#handy-cleaner section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#cordless-washer section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#camping-lantern section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#musclecare section.smartlink .smartlink__intro .smartlink__detail {
    padding: 1rem 0 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#stick-cleaner section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#handy-cleaner section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#cordless-washer section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#camping-lantern section.smartlink .smartlink__intro .smartlink__detail, html body.products_child#musclecare section.smartlink .smartlink__intro .smartlink__detail {
    padding: 1rem 0 3rem;
  }
}
html body.products_child#stick-cleaner section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap, html body.products_child#handy-cleaner section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap, html body.products_child#cordless-washer section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap, html body.products_child#camping-lantern section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap, html body.products_child#musclecare section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap {
  padding: 0 1rem;
}
@media screen and (max-width: 575px) {
  html body.products_child#stick-cleaner section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text, html body.products_child#handy-cleaner section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text, html body.products_child#cordless-washer section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text, html body.products_child#camping-lantern section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text, html body.products_child#musclecare section.smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    margin-bottom: 0;
  }
}
html body.products_child#stick-cleaner section.battery, html body.products_child#handy-cleaner section.battery, html body.products_child#cordless-washer section.battery, html body.products_child#camping-lantern section.battery, html body.products_child#musclecare section.battery {
  overflow: hidden;
}
html body.products_child#stick-cleaner section.battery h2, html body.products_child#handy-cleaner section.battery h2, html body.products_child#cordless-washer section.battery h2, html body.products_child#camping-lantern section.battery h2, html body.products_child#musclecare section.battery h2 {
  padding: 3rem 0 2rem;
  font-weight: 600 !important;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.battery h2, html body.products_child#handy-cleaner section.battery h2, html body.products_child#cordless-washer section.battery h2, html body.products_child#camping-lantern section.battery h2, html body.products_child#musclecare section.battery h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.battery h2, html body.products_child#handy-cleaner section.battery h2, html body.products_child#cordless-washer section.battery h2, html body.products_child#camping-lantern section.battery h2, html body.products_child#musclecare section.battery h2 {
    font-size: calc(2.36rem + ((1vw - 0.992rem) * (0.6763285024)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.battery h2, html body.products_child#handy-cleaner section.battery h2, html body.products_child#cordless-washer section.battery h2, html body.products_child#camping-lantern section.battery h2, html body.products_child#musclecare section.battery h2 {
    font-size: calc(2.22rem + ((1vw - 0.768rem) * (0.6278026906)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.battery h2, html body.products_child#handy-cleaner section.battery h2, html body.products_child#cordless-washer section.battery h2, html body.products_child#camping-lantern section.battery h2, html body.products_child#musclecare section.battery h2 {
    font-size: calc(2.08rem + ((1vw - 0.576rem) * (0.7329842932)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.battery h2, html body.products_child#handy-cleaner section.battery h2, html body.products_child#cordless-washer section.battery h2, html body.products_child#camping-lantern section.battery h2, html body.products_child#musclecare section.battery h2 {
    font-size: calc(1.94rem + ((1vw - 0.421rem) * (0.9090909091)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.battery h2, html body.products_child#handy-cleaner section.battery h2, html body.products_child#cordless-washer section.battery h2, html body.products_child#camping-lantern section.battery h2, html body.products_child#musclecare section.battery h2 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (1.4)));
  }
}
html body.products_child#stick-cleaner section.battery .battery__item-row, html body.products_child#handy-cleaner section.battery .battery__item-row, html body.products_child#cordless-washer section.battery .battery__item-row, html body.products_child#camping-lantern section.battery .battery__item-row, html body.products_child#musclecare section.battery .battery__item-row {
  display: flex;
  flex-flow: wrap;
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item, html body.products_child#musclecare section.battery .battery__item-row .battery__item {
  width: 50%;
  position: relative;
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item p {
  color: #231815;
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box {
  position: absolute;
  width: 48%;
  top: 9%;
  left: 47%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl {
    font-size: calc(1.76rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl {
    font-size: calc(1.72rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl {
    font-size: calc(1.68rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl {
    font-size: calc(1.64rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_3 .txt_box p.ttl {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_4 .txt_box, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_4 .txt_box, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_4 .txt_box {
  position: absolute;
  width: 100%;
  top: 6%;
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl {
  text-align: center;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl {
    font-size: calc(1.76rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl {
    font-size: calc(1.72rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl {
    font-size: calc(1.68rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl {
    font-size: calc(1.64rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_4 .txt_box p.ttl {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 > img, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 > img, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 > img, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 > img, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 > img {
    max-width: none;
    height: 580px;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 > img, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 > img, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 > img, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 > img, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 > img {
    height: 500px;
  }
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box {
  position: absolute;
  width: 90%;
  inset: 2% 0 0 0;
  margin: 0 auto;
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 {
  text-align: center;
  font-weight: 600;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 {
    font-size: calc(2.36rem + ((1vw - 0.992rem) * (0.6763285024)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 {
    font-size: calc(2.22rem + ((1vw - 0.768rem) * (0.6278026906)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 {
    font-size: calc(2.08rem + ((1vw - 0.576rem) * (0.7329842932)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 {
    font-size: calc(1.94rem + ((1vw - 0.421rem) * (0.9090909091)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (1.4)));
  }
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p {
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p {
    font-size: calc(1.72rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p {
    font-size: calc(1.64rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p {
    font-size: calc(1.56rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p {
    font-size: calc(1.48rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box h3 + p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 2%;
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 2rem;
  padding: 3%;
  margin-bottom: 3%;
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item {
  width: 15%;
  text-align: center;
  margin-bottom: 2%;
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item img, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item img, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item img, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item img, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item img {
  margin-bottom: 0.5rem;
  max-width: 80px;
}
@media screen and (max-width: 575px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item img, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item img, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item img, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item img, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item img {
    max-width: 60px;
  }
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p {
  text-align: center;
  font-weight: 500;
  line-height: 1.3em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p {
    font-size: calc(1.28rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p {
    font-size: calc(1.26rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p {
    font-size: calc(1.24rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p {
    font-size: calc(1.22rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item {
  width: 100%;
  background-color: #0091DB;
  padding: 5px 0;
}
html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p {
  color: #fff;
  text-align: center;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p {
    font-size: calc(1.6rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p {
    font-size: calc(1.3rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .text_item p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.battery .battery__item-row, html body.products_child#handy-cleaner section.battery .battery__item-row, html body.products_child#cordless-washer section.battery .battery__item-row, html body.products_child#camping-lantern section.battery .battery__item-row, html body.products_child#musclecare section.battery .battery__item-row {
    display: block;
  }
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item, html body.products_child#musclecare section.battery .battery__item-row .battery__item {
    width: 100%;
  }
  html body.products_child#stick-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item, html body.products_child#handy-cleaner section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item, html body.products_child#cordless-washer section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item, html body.products_child#camping-lantern section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item, html body.products_child#musclecare section.battery .battery__item-row .battery__item.item_5 .item_txt_box .icon_row .icon_item {
    width: 22%;
  }
}
html body.products_child#stick-cleaner section.batt_charge, html body.products_child#handy-cleaner section.batt_charge, html body.products_child#cordless-washer section.batt_charge, html body.products_child#camping-lantern section.batt_charge, html body.products_child#musclecare section.batt_charge {
  background-color: #0091DB;
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge, html body.products_child#handy-cleaner section.batt_charge, html body.products_child#cordless-washer section.batt_charge, html body.products_child#camping-lantern section.batt_charge, html body.products_child#musclecare section.batt_charge {
    padding: 1rem;
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper, html body.products_child#handy-cleaner section.batt_charge .wrapper, html body.products_child#cordless-washer section.batt_charge .wrapper, html body.products_child#camping-lantern section.batt_charge .wrapper, html body.products_child#musclecare section.batt_charge .wrapper {
  max-width: 650px;
  background-color: #fff;
  padding-bottom: 5%;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper, html body.products_child#handy-cleaner section.batt_charge .wrapper, html body.products_child#cordless-washer section.batt_charge .wrapper, html body.products_child#camping-lantern section.batt_charge .wrapper, html body.products_child#musclecare section.batt_charge .wrapper {
    padding: 0 0 1.5rem;
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper h2, html body.products_child#handy-cleaner section.batt_charge .wrapper h2, html body.products_child#cordless-washer section.batt_charge .wrapper h2, html body.products_child#camping-lantern section.batt_charge .wrapper h2, html body.products_child#musclecare section.batt_charge .wrapper h2 {
  text-align: center;
  padding: 0.5em 0 1em;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2, html body.products_child#handy-cleaner section.batt_charge .wrapper h2, html body.products_child#cordless-washer section.batt_charge .wrapper h2, html body.products_child#camping-lantern section.batt_charge .wrapper h2, html body.products_child#musclecare section.batt_charge .wrapper h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2, html body.products_child#handy-cleaner section.batt_charge .wrapper h2, html body.products_child#cordless-washer section.batt_charge .wrapper h2, html body.products_child#camping-lantern section.batt_charge .wrapper h2, html body.products_child#musclecare section.batt_charge .wrapper h2 {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2, html body.products_child#handy-cleaner section.batt_charge .wrapper h2, html body.products_child#cordless-washer section.batt_charge .wrapper h2, html body.products_child#camping-lantern section.batt_charge .wrapper h2, html body.products_child#musclecare section.batt_charge .wrapper h2 {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2, html body.products_child#handy-cleaner section.batt_charge .wrapper h2, html body.products_child#cordless-washer section.batt_charge .wrapper h2, html body.products_child#camping-lantern section.batt_charge .wrapper h2, html body.products_child#musclecare section.batt_charge .wrapper h2 {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2, html body.products_child#handy-cleaner section.batt_charge .wrapper h2, html body.products_child#cordless-washer section.batt_charge .wrapper h2, html body.products_child#camping-lantern section.batt_charge .wrapper h2, html body.products_child#musclecare section.batt_charge .wrapper h2 {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2, html body.products_child#handy-cleaner section.batt_charge .wrapper h2, html body.products_child#cordless-washer section.batt_charge .wrapper h2, html body.products_child#camping-lantern section.batt_charge .wrapper h2, html body.products_child#musclecare section.batt_charge .wrapper h2 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper h2 span, html body.products_child#handy-cleaner section.batt_charge .wrapper h2 span, html body.products_child#cordless-washer section.batt_charge .wrapper h2 span, html body.products_child#camping-lantern section.batt_charge .wrapper h2 span, html body.products_child#musclecare section.batt_charge .wrapper h2 span {
  display: block;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2 span, html body.products_child#handy-cleaner section.batt_charge .wrapper h2 span, html body.products_child#cordless-washer section.batt_charge .wrapper h2 span, html body.products_child#camping-lantern section.batt_charge .wrapper h2 span, html body.products_child#musclecare section.batt_charge .wrapper h2 span {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2 span, html body.products_child#handy-cleaner section.batt_charge .wrapper h2 span, html body.products_child#cordless-washer section.batt_charge .wrapper h2 span, html body.products_child#camping-lantern section.batt_charge .wrapper h2 span, html body.products_child#musclecare section.batt_charge .wrapper h2 span {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2 span, html body.products_child#handy-cleaner section.batt_charge .wrapper h2 span, html body.products_child#cordless-washer section.batt_charge .wrapper h2 span, html body.products_child#camping-lantern section.batt_charge .wrapper h2 span, html body.products_child#musclecare section.batt_charge .wrapper h2 span {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2 span, html body.products_child#handy-cleaner section.batt_charge .wrapper h2 span, html body.products_child#cordless-washer section.batt_charge .wrapper h2 span, html body.products_child#camping-lantern section.batt_charge .wrapper h2 span, html body.products_child#musclecare section.batt_charge .wrapper h2 span {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2 span, html body.products_child#handy-cleaner section.batt_charge .wrapper h2 span, html body.products_child#cordless-washer section.batt_charge .wrapper h2 span, html body.products_child#camping-lantern section.batt_charge .wrapper h2 span, html body.products_child#musclecare section.batt_charge .wrapper h2 span {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2 span, html body.products_child#handy-cleaner section.batt_charge .wrapper h2 span, html body.products_child#cordless-washer section.batt_charge .wrapper h2 span, html body.products_child#camping-lantern section.batt_charge .wrapper h2 span, html body.products_child#musclecare section.batt_charge .wrapper h2 span {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper h2 span, html body.products_child#handy-cleaner section.batt_charge .wrapper h2 span, html body.products_child#cordless-washer section.batt_charge .wrapper h2 span, html body.products_child#camping-lantern section.batt_charge .wrapper h2 span, html body.products_child#musclecare section.batt_charge .wrapper h2 span {
    padding-top: 1rem;
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box, html body.products_child#musclecare section.batt_charge .wrapper .batt_box {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 4%;
  width: 100%;
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 {
  width: 48%;
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img {
  position: relative;
  padding-bottom: 5%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img {
    text-align: center;
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span {
  position: absolute;
  text-align: center;
  letter-spacing: 0;
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1 {
  bottom: 3%;
  left: 5%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1 {
    font-size: calc(1.16rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1 {
    font-size: calc(1.12rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1 {
    font-size: calc(1.08rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1 {
    font-size: calc(1.04rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_1 {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2 {
  bottom: -5px;
  right: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2 {
    font-size: calc(1.18rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2 {
    font-size: calc(1.16rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2 {
    font-size: calc(1.14rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2 {
    font-size: calc(1.12rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_img span.txt_2 {
    font-size: calc(1.1rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
  width: 94%;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name {
    justify-content: space-evenly;
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
  position: relative;
  width: fit-content;
  letter-spacing: -0.03rem;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.32rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.24rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.16rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.08rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0.8)));
  }
}
@media only screen and (max-width: 991px) and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.28rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.16rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (max-width: 991px) and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.04rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (max-width: 991px) and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(1.92rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 991px) and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (1.2)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.32rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.24rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.16rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2.08rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p span {
  display: block;
  margin-bottom: 0;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p span {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p span {
    font-size: calc(1.46rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p span {
    font-size: calc(1.42rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p span {
    font-size: calc(1.38rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p span {
    font-size: calc(1.34rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p span {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name::before, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name::before, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name::before, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name::before, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 5rem;
  background: #333;
  inset: 0 0 0 0;
  margin: auto;
  transform: rotate(18deg);
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_text p {
  margin-bottom: 1.5em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_text p {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_text p {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_text p {
    font-size: calc(1.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_text p {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_text p {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_text p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_text p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_ext, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_ext, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_ext {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6%;
  border-radius: 2rem;
  background-color: #0091DB;
  padding: 3%;
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext img, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext img, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_ext img, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_ext img, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_ext img {
  max-width: 100px;
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p {
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p {
    font-size: calc(1.28rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p {
    font-size: calc(1.26rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p {
    font-size: calc(1.24rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p {
    font-size: calc(1.22rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_ext p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 {
    max-width: 421px;
    margin: 8% auto;
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2 p + img, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2 p + img, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2 p + img, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2 p + img, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 p + img {
  margin-top: 1.5rem;
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 p {
  padding-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 p {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 p {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 p {
    font-size: calc(1.4rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 p {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 p {
    font-size: calc(1.4rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2 p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 {
  width: 48%;
  position: relative;
  margin-top: 3%;
  border: #0091DB solid 3px;
  border-radius: 10px;
  padding: 3% 2% 2%;
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .item_img, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .item_img, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .item_img {
  position: relative;
  padding-bottom: 7%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img img, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img img, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .item_img img, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .item_img img, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .item_img img {
    margin: 0 auto;
    display: block;
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .item_img span {
  position: absolute;
  text-align: center;
  letter-spacing: 0;
  bottom: -2%;
  right: 10px;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .item_img span {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .item_img span {
    font-size: calc(1.16rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .item_img span {
    font-size: calc(1.12rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .item_img span {
    font-size: calc(1.08rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .item_img span {
    font-size: calc(1.04rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .item_img span {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0.4)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .item_img span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .item_img span {
    bottom: 1%;
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box {
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box {
    justify-content: space-evenly;
    flex-direction: row;
    align-items: end;
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name {
  position: relative;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name {
    font-size: 2.1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name {
    font-size: calc(2.08rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name {
    font-size: calc(2.06rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name {
    font-size: calc(2.04rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name {
    font-size: calc(2.02rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span {
  display: block;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span {
    font-size: calc(1.28rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span {
    font-size: calc(1.26rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span {
    font-size: calc(1.24rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span {
    font-size: calc(1.22rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price {
    font-size: calc(1.8rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price {
    font-size: calc(1.8rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price {
    font-size: calc(1.8rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span {
    font-size: calc(1.44rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span {
    font-size: calc(1.38rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span {
    font-size: calc(1.32rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span {
    font-size: calc(1.26rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.price span {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .btn_box, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .btn_box, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .btn_box, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .btn_box, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .btn_box {
  margin: 1rem auto 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box, html body.products_child#musclecare section.batt_charge .wrapper .batt_box {
    flex-flow: column;
  }
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1,
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2,
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1,
  html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2,
  html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1,
  html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2,
  html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1,
  html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2,
  html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1,
  html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2,
  html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 {
    width: 100%;
  }
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p {
    width: fit-content;
  }
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p span {
    margin-bottom: -0.5rem;
  }
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p + p::before, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_name p + p::before, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_name p + p::before, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_name p + p::before, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_name p + p::before {
    margin-left: -17%;
  }
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext img, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_1 .item_1_ext img, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_1 .item_1_ext img, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_1 .item_1_ext img, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_1 .item_1_ext img {
    width: 32%;
  }
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_2, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_2, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_2, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_2, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_2 {
    margin-top: 8%;
  }
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 {
    margin-top: 8%;
    padding: 5% 2%;
  }
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .price_box p.name span {
    margin-bottom: -0.5rem;
  }
  html body.products_child#stick-cleaner section.batt_charge .wrapper .batt_box .item_3 .btn_box a, html body.products_child#handy-cleaner section.batt_charge .wrapper .batt_box .item_3 .btn_box a, html body.products_child#cordless-washer section.batt_charge .wrapper .batt_box .item_3 .btn_box a, html body.products_child#camping-lantern section.batt_charge .wrapper .batt_box .item_3 .btn_box a, html body.products_child#musclecare section.batt_charge .wrapper .batt_box .item_3 .btn_box a {
    display: inline-block;
  }
}
html body.products_child#stick-cleaner section.batt_charge .product__button-buybox, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox, html body.products_child#cordless-washer section.batt_charge .product__button-buybox, html body.products_child#camping-lantern section.batt_charge .product__button-buybox, html body.products_child#musclecare section.batt_charge .product__button-buybox {
  display: flex;
  flex-wrap: wrap;
}
html body.products_child#stick-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#cordless-washer section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#camping-lantern section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#musclecare section.batt_charge .product__button-buybox .product__button-buy {
  margin-top: 0.5rem;
  flex-basis: 50%;
  padding: 0.5rem 0 0.5rem 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#cordless-washer section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#camping-lantern section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#musclecare section.batt_charge .product__button-buybox .product__button-buy {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#cordless-washer section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#camping-lantern section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#musclecare section.batt_charge .product__button-buybox .product__button-buy {
    font-size: calc(1rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#cordless-washer section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#camping-lantern section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#musclecare section.batt_charge .product__button-buybox .product__button-buy {
    font-size: calc(1rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#cordless-washer section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#camping-lantern section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#musclecare section.batt_charge .product__button-buybox .product__button-buy {
    font-size: calc(1rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#cordless-washer section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#camping-lantern section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#musclecare section.batt_charge .product__button-buybox .product__button-buy {
    font-size: calc(1rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#cordless-washer section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#camping-lantern section.batt_charge .product__button-buybox .product__button-buy, html body.products_child#musclecare section.batt_charge .product__button-buybox .product__button-buy {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#stick-cleaner section.batt_charge .product__button-buybox.product__button-buybox-batt .product__button-buy, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox.product__button-buybox-batt .product__button-buy, html body.products_child#cordless-washer section.batt_charge .product__button-buybox.product__button-buybox-batt .product__button-buy, html body.products_child#camping-lantern section.batt_charge .product__button-buybox.product__button-buybox-batt .product__button-buy, html body.products_child#musclecare section.batt_charge .product__button-buybox.product__button-buybox-batt .product__button-buy {
  flex-basis: 48%;
  padding: 0.5rem 0;
}
html body.products_child#stick-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy, html body.products_child#cordless-washer section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy, html body.products_child#camping-lantern section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy, html body.products_child#musclecare section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy {
  margin: 1.25rem 0.5% 0;
}
html body.products_child#stick-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty, html body.products_child#cordless-washer section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty, html body.products_child#camping-lantern section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty, html body.products_child#musclecare section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty {
  position: relative;
}
html body.products_child#stick-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#cordless-washer section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#camping-lantern section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#musclecare section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
  content: "3年保証";
  position: absolute;
  background-color: #ff0000;
  padding: 0.25rem 1rem;
  box-sizing: border-box;
  border-radius: 50px;
  color: #ffffff;
  right: -5px;
  bottom: -10px;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#cordless-washer section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#camping-lantern section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#musclecare section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#cordless-washer section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#camping-lantern section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#musclecare section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(0.8rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#cordless-washer section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#camping-lantern section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#musclecare section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(0.8rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#cordless-washer section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#camping-lantern section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#musclecare section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(0.8rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#cordless-washer section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#camping-lantern section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#musclecare section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(0.8rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#handy-cleaner section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#cordless-washer section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#camping-lantern section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after, html body.products_child#musclecare section.batt_charge .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(0.8rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#stick-cleaner section.feature, html body.products_child#handy-cleaner section.feature {
  background-color: #f1efe9;
}
html body.products_child#stick-cleaner section.feature .feature__bgimage, html body.products_child#handy-cleaner section.feature .feature__bgimage {
  position: relative;
}
html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time {
  background-color: #0091DB;
  color: #ffffff;
  position: absolute;
  width: 34%;
  aspect-ratio: 1/1;
  padding: 6% 0 0 5%;
  top: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__label, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__label {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__label, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__label {
    font-size: calc(2.8rem + ((1vw - 0.992rem) * (1.9323671498)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__label, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__label {
    font-size: calc(2.4rem + ((1vw - 0.768rem) * (1.7937219731)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__label, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__label {
    font-size: calc(2rem + ((1vw - 0.576rem) * (2.0942408377)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__label, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__label {
    font-size: calc(1.6rem + ((1vw - 0.421rem) * (2.5974025974)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__label, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__label {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (4)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value {
    font-size: calc(4.32rem + ((1vw - 0.992rem) * (3.2850241546)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value {
    font-size: calc(3.64rem + ((1vw - 0.768rem) * (3.0493273543)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value {
    font-size: calc(2.96rem + ((1vw - 0.576rem) * (3.5602094241)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value {
    font-size: calc(2.28rem + ((1vw - 0.421rem) * (4.4155844156)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (6.8)));
  }
}
html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num {
  line-height: 1em;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num {
    font-size: 16.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num {
    font-size: calc(14.28rem + ((1vw - 0.992rem) * (11.2077294686)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num {
    font-size: calc(11.96rem + ((1vw - 0.768rem) * (10.4035874439)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num {
    font-size: calc(9.64rem + ((1vw - 0.576rem) * (12.1465968586)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num {
    font-size: calc(7.32rem + ((1vw - 0.421rem) * (15.0649350649)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num, html body.products_child#handy-cleaner section.feature .feature__bgimage .feature__time .feature__value span.feature__num {
    font-size: calc(5rem + ((1vw - 0.32rem) * (23.2)));
  }
}
html body.products_child#stick-cleaner section.feature .feature__row, html body.products_child#handy-cleaner section.feature .feature__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;
  padding: 3% 0 5%;
  max-width: 600px;
  margin: 0 auto;
}
html body.products_child#stick-cleaner section.feature .feature__row .feature__specs, html body.products_child#handy-cleaner section.feature .feature__row .feature__specs {
  width: 40%;
  display: flex;
  flex-flow: column;
}
html body.products_child#stick-cleaner section.feature .feature__row .feature__specs .feature__spec, html body.products_child#handy-cleaner section.feature .feature__row .feature__specs .feature__spec {
  border: #0091DB solid 2px;
  padding: 0.3em;
  text-align: center;
  line-height: 1.3em;
  width: 100%;
  color: #0091DB;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__specs .feature__spec, html body.products_child#handy-cleaner section.feature .feature__row .feature__specs .feature__spec {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__specs .feature__spec, html body.products_child#handy-cleaner section.feature .feature__row .feature__specs .feature__spec {
    font-size: calc(1.84rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__specs .feature__spec, html body.products_child#handy-cleaner section.feature .feature__row .feature__specs .feature__spec {
    font-size: calc(1.68rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__specs .feature__spec, html body.products_child#handy-cleaner section.feature .feature__row .feature__specs .feature__spec {
    font-size: calc(1.52rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__specs .feature__spec, html body.products_child#handy-cleaner section.feature .feature__row .feature__specs .feature__spec {
    font-size: calc(1.36rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__specs .feature__spec, html body.products_child#handy-cleaner section.feature .feature__row .feature__specs .feature__spec {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.6)));
  }
}
html body.products_child#stick-cleaner section.feature .feature__row .feature__specs .feature__spec + .feature__spec, html body.products_child#handy-cleaner section.feature .feature__row .feature__specs .feature__spec + .feature__spec {
  margin-top: 0.2em;
}
html body.products_child#stick-cleaner section.feature .feature__row .feature__description, html body.products_child#handy-cleaner section.feature .feature__row .feature__description {
  width: 52%;
  display: flex;
  justify-content: center;
  flex-flow: column;
}
html body.products_child#stick-cleaner section.feature .feature__row .feature__description img, html body.products_child#handy-cleaner section.feature .feature__row .feature__description img {
  margin: -20% auto 1rem;
  max-width: 120px;
}
html body.products_child#stick-cleaner section.feature .feature__row .feature__description p.feature__text, html body.products_child#handy-cleaner section.feature .feature__row .feature__description p.feature__text {
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__description p.feature__text, html body.products_child#handy-cleaner section.feature .feature__row .feature__description p.feature__text {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__description p.feature__text, html body.products_child#handy-cleaner section.feature .feature__row .feature__description p.feature__text {
    font-size: calc(2.28rem + ((1vw - 0.992rem) * (1.0628019324)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__description p.feature__text, html body.products_child#handy-cleaner section.feature .feature__row .feature__description p.feature__text {
    font-size: calc(2.06rem + ((1vw - 0.768rem) * (0.9865470852)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__description p.feature__text, html body.products_child#handy-cleaner section.feature .feature__row .feature__description p.feature__text {
    font-size: calc(1.84rem + ((1vw - 0.576rem) * (1.1518324607)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__description p.feature__text, html body.products_child#handy-cleaner section.feature .feature__row .feature__description p.feature__text {
    font-size: calc(1.62rem + ((1vw - 0.421rem) * (1.4285714286)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.feature .feature__row .feature__description p.feature__text, html body.products_child#handy-cleaner section.feature .feature__row .feature__description p.feature__text {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (2.2)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.feature .feature__row, html body.products_child#handy-cleaner section.feature .feature__row {
    padding: 3% 3% 10%;
    gap: 4%;
  }
  html body.products_child#stick-cleaner section.feature .feature__row .feature__specs, html body.products_child#handy-cleaner section.feature .feature__row .feature__specs {
    width: 47%;
  }
  html body.products_child#stick-cleaner section.feature .feature__row .feature__description, html body.products_child#handy-cleaner section.feature .feature__row .feature__description {
    padding-top: 1rem;
    width: 54%;
  }
  html body.products_child#stick-cleaner section.feature .feature__row .feature__description img, html body.products_child#handy-cleaner section.feature .feature__row .feature__description img {
    width: 70%;
  }
}
html body.products_child#stick-cleaner section.flow, html body.products_child#handy-cleaner section.flow {
  background-color: #f2efea;
  padding: 2rem 0 3rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow, html body.products_child#handy-cleaner section.flow {
    padding: 30px 0 35px;
  }
}
html body.products_child#stick-cleaner section.flow h2, html body.products_child#handy-cleaner section.flow h2 {
  padding: 0;
  letter-spacing: 0;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.flow h2, html body.products_child#handy-cleaner section.flow h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.flow h2, html body.products_child#handy-cleaner section.flow h2 {
    font-size: calc(1.98rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.flow h2, html body.products_child#handy-cleaner section.flow h2 {
    font-size: calc(1.96rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow h2, html body.products_child#handy-cleaner section.flow h2 {
    font-size: calc(1.94rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.flow h2, html body.products_child#handy-cleaner section.flow h2 {
    font-size: calc(1.92rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.flow h2, html body.products_child#handy-cleaner section.flow h2 {
    font-size: calc(1.9rem + ((1vw - 0.32rem) * (0.2)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.flow h2 + p, html body.products_child#handy-cleaner section.flow h2 + p {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.flow h2 + p, html body.products_child#handy-cleaner section.flow h2 + p {
    font-size: calc(1.36rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.flow h2 + p, html body.products_child#handy-cleaner section.flow h2 + p {
    font-size: calc(1.32rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow h2 + p, html body.products_child#handy-cleaner section.flow h2 + p {
    font-size: calc(1.28rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.flow h2 + p, html body.products_child#handy-cleaner section.flow h2 + p {
    font-size: calc(1.24rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.flow h2 + p, html body.products_child#handy-cleaner section.flow h2 + p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.flow .txt-box p, html body.products_child#handy-cleaner section.flow .txt-box p {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.flow .txt-box p, html body.products_child#handy-cleaner section.flow .txt-box p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.flow .txt-box p, html body.products_child#handy-cleaner section.flow .txt-box p {
    font-size: calc(1.46rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.flow .txt-box p, html body.products_child#handy-cleaner section.flow .txt-box p {
    font-size: calc(1.42rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow .txt-box p, html body.products_child#handy-cleaner section.flow .txt-box p {
    font-size: calc(1.38rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.flow .txt-box p, html body.products_child#handy-cleaner section.flow .txt-box p {
    font-size: calc(1.34rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.flow .txt-box p, html body.products_child#handy-cleaner section.flow .txt-box p {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0.4)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow .txt-box p, html body.products_child#handy-cleaner section.flow .txt-box p {
    margin-bottom: 0.5rem;
  }
}
html body.products_child#stick-cleaner section.flow .txt-box p.ttl, html body.products_child#handy-cleaner section.flow .txt-box p.ttl {
  background-color: #0091DB;
  color: #fff;
  max-width: 240px;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl, html body.products_child#handy-cleaner section.flow .txt-box p.ttl {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl, html body.products_child#handy-cleaner section.flow .txt-box p.ttl {
    font-size: calc(2.68rem + ((1vw - 0.992rem) * (1.5458937198)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl, html body.products_child#handy-cleaner section.flow .txt-box p.ttl {
    font-size: calc(2.36rem + ((1vw - 0.768rem) * (1.4349775785)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl, html body.products_child#handy-cleaner section.flow .txt-box p.ttl {
    font-size: calc(2.04rem + ((1vw - 0.576rem) * (1.6753926702)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl, html body.products_child#handy-cleaner section.flow .txt-box p.ttl {
    font-size: calc(1.72rem + ((1vw - 0.421rem) * (2.0779220779)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl, html body.products_child#handy-cleaner section.flow .txt-box p.ttl {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (3.2)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl span, html body.products_child#handy-cleaner section.flow .txt-box p.ttl span {
    font-size: 5.1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl span, html body.products_child#handy-cleaner section.flow .txt-box p.ttl span {
    font-size: calc(4.48rem + ((1vw - 0.992rem) * (2.9951690821)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl span, html body.products_child#handy-cleaner section.flow .txt-box p.ttl span {
    font-size: calc(3.86rem + ((1vw - 0.768rem) * (2.7802690583)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl span, html body.products_child#handy-cleaner section.flow .txt-box p.ttl span {
    font-size: calc(3.24rem + ((1vw - 0.576rem) * (3.2460732984)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl span, html body.products_child#handy-cleaner section.flow .txt-box p.ttl span {
    font-size: calc(2.62rem + ((1vw - 0.421rem) * (4.025974026)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl span, html body.products_child#handy-cleaner section.flow .txt-box p.ttl span {
    font-size: calc(2rem + ((1vw - 0.32rem) * (6.2)));
  }
}
html body.products_child#stick-cleaner section.flow .step-1, html body.products_child#handy-cleaner section.flow .step-1 {
  position: relative;
  padding: 2rem 0;
}
html body.products_child#stick-cleaner section.flow .step-1 .txt-box, html body.products_child#handy-cleaner section.flow .step-1 .txt-box {
  width: 25%;
  position: absolute;
  right: 0;
  bottom: 50px;
}
html body.products_child#stick-cleaner section.flow .step-2, html body.products_child#handy-cleaner section.flow .step-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.flow .step-3 p.txt-small, html body.products_child#handy-cleaner section.flow .step-3 p.txt-small {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.flow .step-3 p.txt-small, html body.products_child#handy-cleaner section.flow .step-3 p.txt-small {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.flow .step-3 p.txt-small, html body.products_child#handy-cleaner section.flow .step-3 p.txt-small {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow .step-3 p.txt-small, html body.products_child#handy-cleaner section.flow .step-3 p.txt-small {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.flow .step-3 p.txt-small, html body.products_child#handy-cleaner section.flow .step-3 p.txt-small {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.flow .step-3 p.txt-small, html body.products_child#handy-cleaner section.flow .step-3 p.txt-small {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#stick-cleaner section.flow .step_row, html body.products_child#handy-cleaner section.flow .step_row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4%;
}
html body.products_child#stick-cleaner section.flow .step_row .step-2,
html body.products_child#stick-cleaner section.flow .step_row .step-3, html body.products_child#handy-cleaner section.flow .step_row .step-2,
html body.products_child#handy-cleaner section.flow .step_row .step-3 {
  width: 48%;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl, html body.products_child#handy-cleaner section.flow .txt-box p.ttl {
    margin-bottom: 1rem;
    max-width: 110px;
  }
  html body.products_child#stick-cleaner section.flow .txt-box p.ttl + p, html body.products_child#handy-cleaner section.flow .txt-box p.ttl + p {
    min-height: 5rem;
  }
  html body.products_child#stick-cleaner section.flow .step-1 .txt-box, html body.products_child#handy-cleaner section.flow .step-1 .txt-box {
    width: 30%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow .step-1 .txt-box, html body.products_child#handy-cleaner section.flow .step-1 .txt-box {
    width: 36%;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.flow .step-1 .txt-box p, html body.products_child#handy-cleaner section.flow .step-1 .txt-box p {
    min-height: auto;
  }
}
html body.products_child#stick-cleaner section.batt_charge .inner h2, html body.products_child#handy-cleaner section.batt_charge .inner h2 {
  padding: 2rem 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.batt_charge .inner h2, html body.products_child#handy-cleaner section.batt_charge .inner h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.batt_charge .inner h2, html body.products_child#handy-cleaner section.batt_charge .inner h2 {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.batt_charge .inner h2, html body.products_child#handy-cleaner section.batt_charge .inner h2 {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.batt_charge .inner h2, html body.products_child#handy-cleaner section.batt_charge .inner h2 {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.batt_charge .inner h2, html body.products_child#handy-cleaner section.batt_charge .inner h2 {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.batt_charge .inner h2, html body.products_child#handy-cleaner section.batt_charge .inner h2 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.durable_life, html body.products_child#handy-cleaner section.durable_life {
  padding: 1rem 0 2rem;
}
html body.products_child#stick-cleaner section.durable_life .inner, html body.products_child#handy-cleaner section.durable_life .inner {
  background-color: #fff;
}
html body.products_child#stick-cleaner section.durable_life .inner h2, html body.products_child#handy-cleaner section.durable_life .inner h2 {
  padding: 1em 0;
  border-bottom: #0091DB solid 2px;
  text-align: center;
}
html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life {
  background-color: #e5f4fb;
  border-radius: 2rem;
  padding: 2%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life {
    width: 95%;
    margin: 2rem auto 0;
  }
}
html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p {
  width: 60%;
  gap: 8%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p {
    font-size: calc(1.44rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p {
    font-size: calc(1.38rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p {
    font-size: calc(1.32rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p {
    font-size: calc(1.26rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p.catch, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p.catch {
  width: 25%;
  background-color: #0091db;
  aspect-ratio: 1/1;
  border-radius: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p.catch, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p.catch {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p.catch, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p.catch {
    font-size: calc(2.08rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p.catch, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p.catch {
    font-size: calc(1.96rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p.catch, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p.catch {
    font-size: calc(1.84rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p.catch, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p.catch {
    font-size: calc(1.72rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.durable_life .inner .box_durable_life p.catch, html body.products_child#handy-cleaner section.durable_life .inner .box_durable_life p.catch {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#stick-cleaner section.maintenance h2, html body.products_child#handy-cleaner section.maintenance h2 {
  text-align: center;
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box, html body.products_child#handy-cleaner section.maintenance .maintenance_box {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box .item, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4%;
  width: 100%;
  margin-top: 3%;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item {
    flex-flow: column;
    padding: 0 8.5%;
  }
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box .item:last-child, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item:last-child {
  align-items: center;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .imgbox, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .imgbox {
    display: block;
    margin: 0 auto;
  }
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .imgbox img, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .imgbox img {
  width: 100%;
  max-width: 210px;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .imgbox img, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .imgbox img {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt {
    margin: 5% auto 5%;
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p {
    font-size: calc(1.36rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p {
    font-size: calc(1.32rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p {
    font-size: calc(1.28rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p {
    font-size: calc(1.24rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.bar, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.bar {
  background-color: #0091DB;
  color: #fff;
  padding: 0.5rem;
  text-align: center;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.bar, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.bar {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.bar, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.bar {
    font-size: calc(1.66rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.bar, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.bar {
    font-size: calc(1.62rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.bar, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.bar {
    font-size: calc(1.58rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.bar, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.bar {
    font-size: calc(1.54rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.bar, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.bar {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0.4)));
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.bar, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.bar {
    text-align: center;
  }
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.mainColor, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.mainColor {
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.mainColor, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.mainColor {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.mainColor, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.mainColor {
    font-size: calc(1.56rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.mainColor, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.mainColor {
    font-size: calc(1.52rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.mainColor, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.mainColor {
    font-size: calc(1.48rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.mainColor, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.mainColor {
    font-size: calc(1.44rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p.mainColor, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p.mainColor {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box .item .txt p + .mainColor, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item .txt p + .mainColor {
  margin-top: 1.5rem;
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box .item img, html body.products_child#handy-cleaner section.maintenance .maintenance_box .item img {
  max-width: 200px;
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box_2 h3, html body.products_child#handy-cleaner section.maintenance .maintenance_box_2 h3 {
  padding-bottom: 2rem;
}
html body.products_child#stick-cleaner main::after {
  background-image: url(../../images/products/stick-cleaner/bg-stick-cleaner.webp);
  background-position: 50%;
}
html body.products_child#stick-cleaner section.overview_ltl img.overview_ltl__main-visual {
  display: block;
  margin-right: 0rem;
  margin-left: auto;
  max-width: 430px;
  position: absolute;
  right: 10px;
  bottom: 30px;
}
html body.products_child#stick-cleaner section.overview_ltl img.overview_ltl__brand-logo {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
html body.products_child#stick-cleaner section.overview_ltl .overview_ltl__battery-info {
  top: 420px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.overview_ltl .overview_ltl__battery-info {
    top: 400px;
  }
}
html body.products_child#stick-cleaner section.overview_ltl .overview_ltl__product-details {
  top: 300px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.overview_ltl .overview_ltl__product-details {
    top: 250px;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#stick-cleaner section.overview_ltl-sp {
    background-image: url(../../images/products/overview_ltl_stick.webp);
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.smartlink h2 {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.smartlink h2 {
    font-size: calc(4.5rem + ((1vw - 0.992rem) * (2.4154589372)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.smartlink h2 {
    font-size: calc(4rem + ((1vw - 0.768rem) * (2.2421524664)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.smartlink h2 {
    font-size: calc(3.5rem + ((1vw - 0.576rem) * (2.6178010471)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.smartlink h2 {
    font-size: calc(3rem + ((1vw - 0.421rem) * (3.2467532468)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.smartlink h2 {
    font-size: calc(2.5rem + ((1vw - 0.32rem) * (5)));
  }
}
html body.products_child#stick-cleaner section.use {
  background-color: #f1efe9;
}
html body.products_child#stick-cleaner section.use .use_box {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
}
html body.products_child#stick-cleaner section.use .use_box:last-child {
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box:last-child {
    flex-direction: column;
  }
}
html body.products_child#stick-cleaner section.use .use_box > * {
  width: 50%;
}
html body.products_child#stick-cleaner section.use .use_box .txt_box {
  padding: 2rem 0 0 1rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box {
    padding: 0;
  }
}
html body.products_child#stick-cleaner section.use .use_box .txt_box h3 {
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 {
    font-size: calc(2.64rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 {
    font-size: calc(2.48rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 {
    font-size: calc(2.32rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 {
    font-size: calc(2.16rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 {
    font-size: calc(2rem + ((1vw - 0.32rem) * (1.6)));
  }
}
html body.products_child#stick-cleaner section.use .use_box .txt_box h3 + p {
  margin-top: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 + p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 + p {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 + p {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 + p {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 + p {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 + p {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#stick-cleaner section.use .use_box .txt_box h3 + p + img {
  margin-top: 2rem;
  padding-left: 4rem;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 + p + img {
    margin: 2rem auto;
    display: block;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box p {
    text-align: center;
  }
}
html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box {
  display: flex;
  align-items: center;
  gap: 5%;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box {
    justify-content: center;
  }
}
html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p {
  width: 40%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p {
    font-size: calc(2.16rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p {
    font-size: calc(2.12rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p {
    font-size: calc(2.08rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p {
    font-size: calc(2.04rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0.4)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p {
    width: auto;
  }
}
html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch {
  width: 40%;
  background-color: #0091DB;
  border-radius: 100%;
  aspect-ratio: 1/1;
  padding: 3%;
  color: #fff;
  line-height: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch {
    font-size: calc(1.56rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch {
    font-size: calc(1.52rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch {
    font-size: calc(1.48rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch {
    font-size: calc(1.44rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.4)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch {
    width: 120px;
  }
}
html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch span {
  display: block;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch span {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch span {
    font-size: calc(4.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch span {
    font-size: calc(4.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch span {
    font-size: calc(4.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch span {
    font-size: calc(4.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch span {
    font-size: calc(4rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch span.txt_2 {
  font-size: 1.7em;
  margin-top: -1rem;
}
html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box + p {
  margin-top: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box + p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box + p {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box + p {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box + p {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box + p {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box + p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box + p + img {
  margin: 1rem auto 0;
  display: block;
}
html body.products_child#stick-cleaner section.use .use_box .end_txt {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.use .use_box .end_txt {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.use .use_box .end_txt {
    font-size: calc(2.36rem + ((1vw - 0.992rem) * (0.6763285024)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.use .use_box .end_txt {
    font-size: calc(2.22rem + ((1vw - 0.768rem) * (0.6278026906)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .end_txt {
    font-size: calc(2.08rem + ((1vw - 0.576rem) * (0.7329842932)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.use .use_box .end_txt {
    font-size: calc(1.94rem + ((1vw - 0.421rem) * (0.9090909091)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.use .use_box .end_txt {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (1.4)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box .end_txt {
    text-align: center;
    padding-top: 2rem;
  }
}
html body.products_child#stick-cleaner section.use .use_box .txt_box2_img {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.use .use_box {
    display: block;
  }
  html body.products_child#stick-cleaner section.use .use_box > * {
    width: 100%;
  }
  html body.products_child#stick-cleaner section.use .use_box .txt_box {
    margin-top: 5%;
  }
  html body.products_child#stick-cleaner section.use .use_box .txt_box h3 {
    text-align: center;
  }
  html body.products_child#stick-cleaner section.use .use_box .txt_box .catch_box p.catch span.txt_2 {
    margin-top: -1rem;
  }
}
html body.products_child#stick-cleaner section.accessory {
  background-color: #f1efe9;
  padding-bottom: 3%;
}
html body.products_child#stick-cleaner section.accessory .flex {
  display: flex;
}
html body.products_child#stick-cleaner section.accessory .accessory_box {
  background-color: #fff;
  border-radius: 1.5rem;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
  gap: 1%;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box {
    margin: 0 1rem;
  }
}
html body.products_child#stick-cleaner section.accessory .accessory_box h2 {
  padding: 0;
  text-align: center;
}
html body.products_child#stick-cleaner section.accessory .accessory_box hr {
  background-color: #0091DB;
  width: 100%;
  height: 2px;
  border: none;
  margin: 2rem auto;
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch,
html body.products_child#stick-cleaner section.accessory .accessory_box .img_text {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch,
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text {
    margin-top: 4rem;
  }
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch {
  width: 35%;
  position: relative;
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch p {
  position: absolute;
  top: -3rem;
  left: -1rem;
  width: 46%;
  background-color: #0091DB;
  aspect-ratio: 1/1;
  border-radius: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch p {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch p {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch p {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch p {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch p {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch.item_2 p, html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch.item_4 p {
  left: auto;
  right: -1rem;
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_text {
  width: 28%;
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_text .flex {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text .flex {
    justify-content: space-evenly;
  }
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_text p {
  flex-basis: 50%;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text p {
    font-size: calc(1.16rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text p {
    font-size: calc(1.12rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text p {
    font-size: calc(1.08rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text p {
    font-size: calc(1.04rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text p {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0.4)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text p {
    flex-basis: auto;
  }
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_item {
  width: fit-content;
  position: relative;
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_1 {
  width: 42%;
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 {
  width: 56%;
  position: relative;
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 img {
  position: relative;
  top: 0;
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_1,
html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_2 {
  position: absolute;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_1 p,
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_2 p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_1 p,
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_2 p {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_1 p,
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_2 p {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_1 p,
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_2 p {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_1 p,
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_2 p {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_1 p,
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_2 p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_1 {
  top: 40%;
  left: 1%;
}
html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_2 {
  bottom: 10%;
  right: -1%;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.accessory .accessory_box hr {
    margin: 3rem auto;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch,
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text {
    width: 100%;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch {
    max-width: 290px;
    margin-top: 10%;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_catch p {
    width: 100px;
    top: -2rem;
    left: -1rem;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text {
    width: 60%;
    margin-top: 6%;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text img {
    margin: 0 auto;
    display: block;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_text + .img_catch {
    margin: 10% auto 0;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_1 {
    width: 80%;
    margin: 0 auto 5%;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 {
    width: 100%;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 img {
    top: 0;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_1 {
    top: 40%;
    left: 0;
  }
  html body.products_child#stick-cleaner section.accessory .accessory_box .img_item.item_2 .txt_2 {
    bottom: 12%;
    right: -2%;
  }
}
html body.products_child#stick-cleaner section.option {
  background-color: #0091DB;
  padding: 3%;
}
html body.products_child#stick-cleaner section.option .inner {
  background-color: #fff;
  border-radius: 2rem;
  padding: 3%;
}
html body.products_child#stick-cleaner section.option .inner h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.option .inner h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.option .inner h3 {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.option .inner h3 {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.option .inner h3 {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.option .inner h3 {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.option .inner h3 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.option .option_item_box .option_item {
  padding: 2% 0;
  border-top: #f1efe9 solid 1px;
  display: flex;
}
html body.products_child#stick-cleaner section.option .option_item_box .option_item .img {
  width: 23%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90px;
}
html body.products_child#stick-cleaner section.option .option_item_box .option_item .ttl {
  width: 27%;
  display: flex;
  align-items: center;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .ttl {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .ttl {
    font-size: calc(1.78rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .ttl {
    font-size: calc(1.76rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .ttl {
    font-size: calc(1.74rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .ttl {
    font-size: calc(1.72rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .ttl {
    font-size: calc(1.7rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#stick-cleaner section.option .option_item_box .option_item .txt {
  display: flex;
  align-items: center;
  width: 50%;
  border-left: #f1efe9 solid 1px;
  padding: 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .txt {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .txt {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .txt {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .txt {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .txt {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .txt {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.option .option_item_box .option_item {
    flex-flow: wrap;
    gap: 5%;
  }
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .img {
    width: 40%;
  }
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .ttl {
    width: 55%;
  }
  html body.products_child#stick-cleaner section.option .option_item_box .option_item .txt {
    width: 100%;
    border-left: none;
    padding: 1em 0;
  }
}
html body.products_child#stick-cleaner section.seen {
  background-color: #f1efe9;
  padding-bottom: 5%;
}
html body.products_child#stick-cleaner section.seen h2 {
  padding: 2rem 0;
  text-align: center;
}
html body.products_child#stick-cleaner section.seen .seen_box {
  display: flex;
}
html body.products_child#stick-cleaner section.seen .seen_box:nth-of-type(2) {
  flex-flow: row-reverse;
}
html body.products_child#stick-cleaner section.seen .seen_box .catch {
  width: 36.5%;
  background-color: #0091DB;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
html body.products_child#stick-cleaner section.seen .seen_box .catch .num {
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-flow: column;
  line-height: 1;
  font-weight: 200;
  padding-bottom: 2rem;
  border-bottom: #fff solid 1px;
  margin-bottom: 1rem;
  width: 70%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num {
    font-size: calc(4.6rem + ((1vw - 0.992rem) * (1.9323671498)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num {
    font-size: calc(4.2rem + ((1vw - 0.768rem) * (1.7937219731)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num {
    font-size: calc(3.8rem + ((1vw - 0.576rem) * (2.0942408377)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num {
    font-size: calc(3.4rem + ((1vw - 0.421rem) * (2.5974025974)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num {
    font-size: calc(3rem + ((1vw - 0.32rem) * (4)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num span {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num span {
    font-size: calc(1.52rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num span {
    font-size: calc(1.44rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num span {
    font-size: calc(1.36rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num span {
    font-size: calc(1.28rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch .num span {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#stick-cleaner section.seen .seen_box .catch h3 {
  color: #fff;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch h3 {
    font-size: calc(1.88rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch h3 {
    font-size: calc(1.76rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch h3 {
    font-size: calc(1.64rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch h3 {
    font-size: calc(1.52rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.seen .seen_box .catch h3 {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#stick-cleaner section.seen .seen_box img {
  width: 63.5%;
}
html body.products_child#stick-cleaner section.maintenance {
  background-color: #f1efe9;
  padding: 5% 0;
}
html body.products_child#stick-cleaner section.maintenance h3 {
  font-weight: 600;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.maintenance h3 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.maintenance h3 {
    font-size: calc(2.32rem + ((1vw - 0.992rem) * (0.8695652174)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.maintenance h3 {
    font-size: calc(2.14rem + ((1vw - 0.768rem) * (0.8071748879)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.maintenance h3 {
    font-size: calc(1.96rem + ((1vw - 0.576rem) * (0.942408377)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.maintenance h3 {
    font-size: calc(1.78rem + ((1vw - 0.421rem) * (1.1688311688)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.maintenance h3 {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (1.8)));
  }
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 {
  display: flex;
  align-items: flex-start;
  padding-bottom: 3%;
}
@media screen and (max-width: 575px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 {
    flex-flow: wrap;
  }
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 > img {
  max-width: 330px;
  width: 48%;
}
@media screen and (max-width: 575px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 > img {
    margin: 0 auto;
    width: 100%;
  }
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 .txt_box {
  padding: 0 0 0 10%;
}
@media screen and (max-width: 575px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 .txt_box {
    padding: 0 0 0 0%;
    margin: 0 auto;
  }
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 .txt_box h3 {
  text-align: left;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 .txt_box p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 .txt_box p {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 .txt_box p {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 .txt_box p {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 .txt_box p {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 .txt_box p {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 .txt_box img {
  max-width: 245px;
}
@media screen and (max-width: 767px) {
  html body.products_child#stick-cleaner section.maintenance .maintenance_box_1 img {
    margin-bottom: 5%;
  }
}
html body.products_child#handy-cleaner main::after {
  background-image: url(../../images/products/handy-cleaner/bg-handy-cleaner.webp);
}
html body.products_child#handy-cleaner section.overview_ltl img.overview_ltl__main-visual {
  display: block;
  margin-right: 10rem;
  margin-left: auto;
  max-width: 130px;
  position: absolute;
  right: 10px;
  bottom: 30px;
}
html body.products_child#handy-cleaner section.overview_ltl .overview_ltl__battery-info {
  top: 450px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.overview_ltl .overview_ltl__battery-info {
    top: 400px;
  }
}
html body.products_child#handy-cleaner section.overview_ltl .overview_ltl__product-details {
  top: 300px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.overview_ltl .overview_ltl__product-details {
    top: 250px;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#handy-cleaner section.overview_ltl-sp {
    background-image: url(../../images/products/overview_ltl_handy.webp);
  }
}
html body.products_child#handy-cleaner section.flow .step-1 .txt-box {
  right: auto;
  left: 30px;
  bottom: 100px;
  width: auto;
}
@media screen and (max-width: 575px) {
  html body.products_child#handy-cleaner section.flow .step-1 .txt-box {
    left: 10px;
    bottom: 60px;
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.durable_life h2 {
    padding-top: 2rem;
  }
}
html body.products_child#handy-cleaner section.accessory {
  background-color: #f1efe9;
  padding-bottom: 5%;
}
html body.products_child#handy-cleaner section.accessory .title_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body.products_child#handy-cleaner section.accessory .title_box h2 {
  padding-top: 1em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.accessory .title_box h2 {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.accessory .title_box h2 {
    font-size: calc(2.14rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.accessory .title_box h2 {
    font-size: calc(1.98rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .title_box h2 {
    font-size: calc(1.82rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .title_box h2 {
    font-size: calc(1.66rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.accessory .title_box h2 {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (1.6)));
  }
}
html body.products_child#handy-cleaner section.accessory .title_box img {
  width: 43%;
}
html body.products_child#handy-cleaner section.accessory h3 {
  background-color: #000;
  text-align: center;
  padding: 0.25em;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.accessory h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.accessory h3 {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.accessory h3 {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory h3 {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory h3 {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.accessory h3 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#handy-cleaner section.accessory .accessory_box {
  margin-top: 0.5em;
  display: flex;
  flex-flow: wrap;
  gap: 4%;
}
html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch {
  position: relative;
  width: 100%;
}
html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch img {
  margin-top: 0.75em;
}
@media screen and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p.accessory_box-text {
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p {
    font-size: calc(1.42rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p {
    font-size: calc(1.34rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p {
    font-size: calc(1.26rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p {
    font-size: calc(1.18rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p {
    font-size: calc(1.1rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p.catch {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 17%;
  background-color: #0091DB;
  aspect-ratio: 1/1;
  border-radius: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p.catch {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p.catch {
    font-size: calc(1.72rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p.catch {
    font-size: calc(1.64rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p.catch {
    font-size: calc(1.56rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p.catch {
    font-size: calc(1.48rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p.catch {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 {
  margin-top: 5%;
  width: 48%;
  padding-left: 2.5%;
}
html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p {
  padding-left: 22%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p {
    font-size: calc(1.44rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p {
    font-size: calc(1.38rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p {
    font-size: calc(1.32rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p {
    font-size: calc(1.26rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p.catch {
  padding: 0;
  top: -2.5rem;
  left: -2.5rem;
  width: 32%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p.catch {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p.catch {
    font-size: calc(1.66rem + ((1vw - 0.992rem) * (0.6763285024)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p.catch {
    font-size: calc(1.52rem + ((1vw - 0.768rem) * (0.6278026906)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p.catch {
    font-size: calc(1.38rem + ((1vw - 0.576rem) * (0.7329842932)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p.catch {
    font-size: calc(1.24rem + ((1vw - 0.421rem) * (0.9090909091)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p.catch {
    font-size: calc(1.1rem + ((1vw - 0.32rem) * (1.4)));
  }
}
html body.products_child#handy-cleaner section.accessory .accessory_option_box {
  margin-top: 5%;
  background-color: #fff;
  padding: 1% 3% 2%;
  border-radius: 2rem;
  display: flex;
  gap: 4%;
  flex-flow: wrap;
}
html body.products_child#handy-cleaner section.accessory .accessory_option_box h3 {
  width: 100%;
  background: none;
  color: #111;
  border-bottom: #f1efe9 solid 2px;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box h3 {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box h3 {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box h3 {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box h3 {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box h3 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#handy-cleaner section.accessory .accessory_option_box .item {
  width: 48%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body.products_child#handy-cleaner section.accessory .accessory_option_box .item img {
  margin: 0 auto;
}
html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt {
  width: 70%;
}
html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt h4 {
  font-weight: 500;
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt h4 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt h4 {
    font-size: calc(1.72rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt h4 {
    font-size: calc(1.64rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt h4 {
    font-size: calc(1.56rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt h4 {
    font-size: calc(1.48rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt h4 {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt p {
  margin-top: 0.2rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt p {
    font-size: calc(1.44rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt p {
    font-size: calc(1.38rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt p {
    font-size: calc(1.32rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt p {
    font-size: calc(1.26rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item .txt p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.6)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .title_box {
    align-items: flex-start;
  }
  html body.products_child#handy-cleaner section.accessory .title_box h2 {
    padding: 1rem 0;
  }
  html body.products_child#handy-cleaner section.accessory .title_box img {
    width: 30%;
  }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .title_box img {
    width: 36%;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p.catch {
    top: 24%;
    right: 3%;
    width: 22%;
  }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch p.catch {
    left: -5px;
    top: 25px;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 {
    padding-left: 0;
  }
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p {
    padding: 0;
    letter-spacing: 0;
  }
  html body.products_child#handy-cleaner section.accessory .accessory_box .img_catch + .item_2 p.catch {
    top: 2rem;
    left: -0.5rem;
    width: 34%;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.accessory .accessory_option_box {
    flex-flow: column;
  }
  html body.products_child#handy-cleaner section.accessory .accessory_option_box .item {
    width: 100%;
  }
}
html body.products_child#handy-cleaner section.seen {
  padding-bottom: 5%;
}
html body.products_child#handy-cleaner section.seen h3 {
  background-color: #000;
  text-align: center;
  padding: 0.25em;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.seen h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.seen h3 {
    font-size: calc(2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.seen h3 {
    font-size: calc(2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.seen h3 {
    font-size: calc(2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.seen h3 {
    font-size: calc(2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.seen h3 {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#handy-cleaner section.seen h3 + p {
  padding: 0.5em 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.seen h3 + p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.seen h3 + p {
    font-size: calc(1.44rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.seen h3 + p {
    font-size: calc(1.38rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.seen h3 + p {
    font-size: calc(1.32rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.seen h3 + p {
    font-size: calc(1.26rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.seen h3 + p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#handy-cleaner section.seen .seen_box {
  display: flex;
  flex-flow: wrap;
  gap: 4%;
}
html body.products_child#handy-cleaner section.seen .seen_box .sub_seen {
  margin-top: 3%;
  width: 48%;
}
html body.products_child#handy-cleaner section.seen .seen_box .sub_seen p {
  color: #0091DB;
  text-align: center;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.seen .seen_box .sub_seen p {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.seen .seen_box .sub_seen p {
    font-size: calc(1.68rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.seen .seen_box .sub_seen p {
    font-size: calc(1.56rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.seen .seen_box .sub_seen p {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.seen .seen_box .sub_seen p {
    font-size: calc(1.32rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.seen .seen_box .sub_seen p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#handy-cleaner section.maintenance {
  background-color: #0091db;
  padding: 1.5rem 0;
}
html body.products_child#handy-cleaner section.maintenance .wrapper {
  max-width: 650px;
  background-color: #fff;
  padding-bottom: 5%;
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.maintenance .wrapper {
    padding: 0 0 5%;
    max-width: 95%;
  }
}
html body.products_child#handy-cleaner section.maintenance h3 {
  background-color: #000;
  text-align: center;
  padding: 0.25em;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.maintenance h3 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.maintenance h3 {
    font-size: calc(2.88rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.maintenance h3 {
    font-size: calc(2.76rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.maintenance h3 {
    font-size: calc(2.64rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.maintenance h3 {
    font-size: calc(2.52rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.maintenance h3 {
    font-size: calc(2.4rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#handy-cleaner section.maintenance .box_durable_life {
  background-color: #e5f4fb;
  border-radius: 2rem;
  padding: 2%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  margin-top: 3%;
}
html body.products_child#handy-cleaner section.maintenance .box_durable_life p {
  width: 60%;
  gap: 8%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p {
    font-size: calc(1.44rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p {
    font-size: calc(1.38rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p {
    font-size: calc(1.32rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p {
    font-size: calc(1.26rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#handy-cleaner section.maintenance .box_durable_life p.catch {
  width: 25%;
  background-color: #0091db;
  aspect-ratio: 1/1;
  border-radius: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p.catch {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p.catch {
    font-size: calc(2.12rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p.catch {
    font-size: calc(2.04rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p.catch {
    font-size: calc(1.96rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p.catch {
    font-size: calc(1.88rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.maintenance .box_durable_life p.catch {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half {
  position: relative;
  width: 48%;
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half {
    width: 100%;
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p {
    font-size: calc(1.88rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p {
    font-size: calc(1.76rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p {
    font-size: calc(1.64rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p {
    font-size: calc(1.52rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p.catch {
  position: absolute;
  top: -1rem;
  right: 0;
  width: 38%;
  font-feature-settings: "palt";
  background-color: #0091DB;
  aspect-ratio: 1/1;
  border-radius: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p.catch {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p.catch {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p.catch {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p.catch {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p.catch {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p.catch {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half p.catch {
    top: -4rem;
    width: 110px;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.maintenance .maintenance_box .item + .half img {
    margin: 0 auto;
  }
}
html body.products_child#handy-cleaner section.visual {
  position: relative;
}
html body.products_child#handy-cleaner section.visual .txt_box {
  position: absolute;
  top: 10rem;
  left: 9rem;
}
html body.products_child#handy-cleaner section.visual .txt_box h3 {
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.visual .txt_box h3 {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.visual .txt_box h3 {
    font-size: calc(2.64rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.visual .txt_box h3 {
    font-size: calc(2.48rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.visual .txt_box h3 {
    font-size: calc(2.32rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.visual .txt_box h3 {
    font-size: calc(2.16rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.visual .txt_box h3 {
    font-size: calc(2rem + ((1vw - 0.32rem) * (1.6)));
  }
}
html body.products_child#handy-cleaner section.visual .txt_box p {
  margin-top: 1em;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#handy-cleaner section.visual .txt_box p {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#handy-cleaner section.visual .txt_box p {
    font-size: calc(1.56rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#handy-cleaner section.visual .txt_box p {
    font-size: calc(1.52rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#handy-cleaner section.visual .txt_box p {
    font-size: calc(1.48rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#handy-cleaner section.visual .txt_box p {
    font-size: calc(1.44rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#handy-cleaner section.visual .txt_box p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.4)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#handy-cleaner section.visual .txt_box {
    top: 2rem;
    left: 2rem;
  }
}
html body.products_child#cordless-washer main::after {
  background-image: url(../../images/products/cordless-washer/bg-cordless-washer.webp);
  background-position: 50% 20%;
}
html body.products_child#cordless-washer section .overview_ltl .overview_ltl__product-details {
  top: 300px;
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section .overview_ltl .overview_ltl__product-details {
    top: 250px;
  }
}
html body.products_child#cordless-washer section .overview_ltl .overview_ltl__battery-info {
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}
html body.products_child#cordless-washer section .overview_ltl img.overview_ltl__main-visual {
  margin: 100px 0;
}
@media screen and (max-width: 575px) {
  html body.products_child#cordless-washer section.overview_ltl-sp {
    background-image: url(../../images/products/overview_ltl_cordless.webp);
  }
}
html body.products_child#cordless-washer section.feature {
  background-color: #f1efe9;
}
html body.products_child#cordless-washer section.feature .mpa {
  color: #ffffff;
  font-weight: 500;
  display: flex;
  justify-content: center;
}
html body.products_child#cordless-washer section.feature .mpa .big_ft {
  line-height: 1;
  letter-spacing: -0.1em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .mpa .big_ft {
    font-size: 9.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .mpa .big_ft {
    font-size: calc(8.4rem + ((1vw - 0.992rem) * (5.3140096618)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .mpa .big_ft {
    font-size: calc(7.3rem + ((1vw - 0.768rem) * (4.932735426)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .mpa .big_ft {
    font-size: calc(6.2rem + ((1vw - 0.576rem) * (5.7591623037)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .mpa .big_ft {
    font-size: calc(5.1rem + ((1vw - 0.421rem) * (7.1428571429)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .mpa .big_ft {
    font-size: calc(4rem + ((1vw - 0.32rem) * (11)));
  }
}
html body.products_child#cordless-washer section.feature .mpa .small_ft {
  text-align: right;
  line-height: 1;
  margin-top: 0.8rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft {
    font-size: 5.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft {
    font-size: calc(4.8rem + ((1vw - 0.992rem) * (3.3816425121)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft {
    font-size: calc(4.1rem + ((1vw - 0.768rem) * (3.1390134529)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft {
    font-size: calc(3.4rem + ((1vw - 0.576rem) * (3.664921466)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft {
    font-size: calc(2.7rem + ((1vw - 0.421rem) * (4.5454545455)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft {
    font-size: calc(2rem + ((1vw - 0.32rem) * (7)));
  }
}
html body.products_child#cordless-washer section.feature .mpa .small_ft span {
  display: block;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft span {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft span {
    font-size: calc(2.4rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft span {
    font-size: calc(2.3rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft span {
    font-size: calc(2.2rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft span {
    font-size: calc(2.1rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .mpa .small_ft span {
    font-size: calc(2rem + ((1vw - 0.32rem) * (1)));
  }
}
html body.products_child#cordless-washer section.feature .feature__bgimage {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row {
  background-color: #0091DB;
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  height: 100%;
  color: #fff;
  padding: 3rem;
}
html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p {
  text-align: center;
  font-feature-settings: "palt";
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p {
    font-size: calc(1rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.txt {
  line-height: 1;
  font-weight: 600;
}
html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 {
  line-height: 1;
  padding: 0;
  font-weight: 500;
  letter-spacing: -0.05em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: 7.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(6.8rem + ((1vw - 0.992rem) * (3.3816425121)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(6.1rem + ((1vw - 0.768rem) * (3.1390134529)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(5.4rem + ((1vw - 0.576rem) * (3.664921466)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(4.7rem + ((1vw - 0.421rem) * (4.5454545455)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(4rem + ((1vw - 0.32rem) * (7)));
  }
}
html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span span {
  font-weight: 400;
  line-height: 1;
  margin-top: -10px;
  margin-bottom: 10px;
  margin-right: 5px;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span span {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span span {
    font-size: calc(2.64rem + ((1vw - 0.992rem) * (1.7391304348)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span span {
    font-size: calc(2.28rem + ((1vw - 0.768rem) * (1.6143497758)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span span {
    font-size: calc(1.92rem + ((1vw - 0.576rem) * (1.8848167539)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span span {
    font-size: calc(1.56rem + ((1vw - 0.421rem) * (2.3376623377)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span span {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (3.6)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 span span {
    margin: 0;
  }
}
html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 + .txt {
  margin-top: 3rem;
}
html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.bdr {
  border: #fff solid 1px;
  padding: 0.5em;
  width: fit-content;
  margin: 1rem auto 0;
  line-height: 1.4em;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.bdr {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.bdr {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.bdr {
    font-size: calc(1.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.bdr {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.bdr {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.bdr {
    font-size: calc(1rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.bdr span {
  display: inline-block;
  width: fit-content;
  text-align: left;
}
html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row .item_image {
  position: relative;
  margin: 0 auto;
  inset: 4rem 0 0 -28%;
  max-width: 200%;
  width: 160%;
}
html body.products_child#cordless-washer section.feature .feature__bgimage .sub_visual {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1/1;
  width: 80%;
}
@media screen and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .sub_visual {
    width: 60%;
  }
}
html body.products_child#cordless-washer section.feature .feature__bgimage > img {
  width: 70%;
}
html body.products_child#cordless-washer section.feature .note {
  display: block;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .note {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .note {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .note {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .note {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .note {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#cordless-washer section.feature .title_box {
  position: relative;
  margin: 4rem 0 1rem 0;
  width: 100%;
}
html body.products_child#cordless-washer section.feature .title_box .title_battery {
  position: absolute;
  top: -40%;
  right: 5%;
  max-width: 80px;
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .title_box .title_battery {
    top: -55%;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .title_box .title_battery {
    right: 0;
    max-width: 50px;
  }
}
html body.products_child#cordless-washer section.feature .title_box p {
  font-size: 1.2rem !important;
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .title_box p {
    font-size: 1.2rem !important;
  }
}
html body.products_child#cordless-washer section.feature .feture_image_box {
  display: flex;
  margin-top: 2rem;
}
html body.products_child#cordless-washer section.feature .feture_image_box img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row {
    padding: 6% 3%;
  }
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 {
    padding-bottom: 1rem;
  }
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_1 + .txt {
    margin-top: 1.5rem;
  }
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_2 {
    padding-bottom: 1rem;
  }
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.num_2 + p {
    margin-top: 1.5rem;
  }
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row p.bdr {
    padding: 0.5em;
    margin: 1rem auto 0;
    width: 100%;
  }
  html body.products_child#cordless-washer section.feature .feature__bgimage .feature_row .item_image {
    inset: 2rem 0 0 -2%;
    width: 110%;
  }
  html body.products_child#cordless-washer section.feature .feture_image_box {
    margin-top: 2rem;
  }
}
html body.products_child#cordless-washer section.feature .feature__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
html body.products_child#cordless-washer section.feature .feature__list .bdr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: #fff solid 1px;
  padding: 0.5em;
  box-sizing: border-box;
  width: fit-content;
  margin: 1rem auto 0;
  line-height: 1.4em;
  width: 100%;
  flex: 1;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: calc(1.84rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: calc(1.68rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: calc(1.52rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: calc(1.36rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.6)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: calc(1.84rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: calc(1.68rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: calc(1.52rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: calc(1.36rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.feature .feature__list .bdr {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.6)));
  }
}
html body.products_child#cordless-washer section.smartlink {
  background-color: #0091DB;
}
html body.products_child#cordless-washer section.battery_time {
  background-color: #f1efe9;
  padding-bottom: 5%;
}
html body.products_child#cordless-washer section.battery_time .battery_bgimage {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row {
  background-color: #0091DB;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32%;
  color: #fff;
  padding: 4rem 3rem;
}
html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p {
  text-align: center;
  font-feature-settings: "palt";
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p {
    font-size: calc(2.32rem + ((1vw - 0.992rem) * (1.3526570048)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p {
    font-size: calc(2.04rem + ((1vw - 0.768rem) * (1.2556053812)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p {
    font-size: calc(1.76rem + ((1vw - 0.576rem) * (1.4659685864)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p {
    font-size: calc(1.48rem + ((1vw - 0.421rem) * (1.8181818182)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (2.8)));
  }
}
html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__label {
  line-height: 1;
}
html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value {
  line-height: 1;
  padding: 0;
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value {
    font-size: 3.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value {
    font-size: calc(2.96rem + ((1vw - 0.992rem) * (1.6425120773)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value {
    font-size: calc(2.62rem + ((1vw - 0.768rem) * (1.5246636771)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value {
    font-size: calc(2.28rem + ((1vw - 0.576rem) * (1.780104712)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value {
    font-size: calc(1.94rem + ((1vw - 0.421rem) * (2.2077922078)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (3.4)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value span {
    font-size: 13.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value span {
    font-size: calc(11.56rem + ((1vw - 0.992rem) * (7.922705314)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value span {
    font-size: calc(9.92rem + ((1vw - 0.768rem) * (7.3542600897)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value span {
    font-size: calc(8.28rem + ((1vw - 0.576rem) * (8.5863874346)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value span {
    font-size: calc(6.64rem + ((1vw - 0.421rem) * (10.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value span {
    font-size: calc(5rem + ((1vw - 0.32rem) * (16.4)));
  }
}
html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row p.battery__value + .txt {
  margin-top: 3rem;
}
html body.products_child#cordless-washer section.battery_time .battery_bgimage .sub_visual {
  position: absolute;
  bottom: -10%;
  left: 28%;
  aspect-ratio: 1/1;
}
html body.products_child#cordless-washer section.battery_time .sub_title {
  margin-top: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.battery_time .sub_title {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.battery_time .sub_title {
    font-size: calc(2.32rem + ((1vw - 0.992rem) * (0.8695652174)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.battery_time .sub_title {
    font-size: calc(2.14rem + ((1vw - 0.768rem) * (0.8071748879)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.battery_time .sub_title {
    font-size: calc(1.96rem + ((1vw - 0.576rem) * (0.942408377)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.battery_time .sub_title {
    font-size: calc(1.78rem + ((1vw - 0.421rem) * (1.1688311688)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.battery_time .sub_title {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (1.8)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.battery_time .sub_title span {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.battery_time .sub_title span {
    font-size: calc(1.44rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.battery_time .sub_title span {
    font-size: calc(1.38rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.battery_time .sub_title span {
    font-size: calc(1.32rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.battery_time .sub_title span {
    font-size: calc(1.26rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.battery_time .sub_title span {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#cordless-washer section.battery_time .note {
  font-weight: 400;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.battery_time .note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.battery_time .note {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.battery_time .note {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.battery_time .note {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.battery_time .note {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.battery_time .note {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#cordless-washer section.battery_time .battery_image_box {
  margin-top: 2rem;
  display: flex;
  gap: 2%;
}
html body.products_child#cordless-washer section.battery_time .battery_image_box .item {
  width: 49%;
  position: relative;
}
html body.products_child#cordless-washer section.battery_time .battery_image_box .item .mini_battery_image {
  position: absolute;
  top: 0;
  left: -3%;
  width: 40%;
}
html body.products_child#cordless-washer section.battery_time .battery_image_box .item p {
  text-align: center;
  margin-top: 1rem;
  text-align: left;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p {
    font-size: calc(1.4rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p {
    font-size: calc(1.3rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p {
    font-size: calc(1.1rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p {
    font-size: calc(1rem + ((1vw - 0.32rem) * (1)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p.item_small {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p.item_small {
    font-size: calc(1.16rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p.item_small {
    font-size: calc(1.12rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p.item_small {
    font-size: calc(1.08rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p.item_small {
    font-size: calc(1.04rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.battery_time .battery_image_box .item p.item_small {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#cordless-washer section.battery_time .battery_image_box .item.item_left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.battery_time .battery_bgimage .battery_row {
    padding: 5% 0 5% 2%;
  }
  html body.products_child#cordless-washer section.battery_time .sub_title {
    margin-top: 2rem;
  }
}
html body.products_child#cordless-washer section.seen {
  background-color: #f1efe9;
}
html body.products_child#cordless-washer section.seen h2 {
  font-weight: 600;
  padding-top: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen h2 {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen h2 {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen h2 {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen h2 {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen h2 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#cordless-washer section.seen .note {
  text-align: right;
  padding-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen .note {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen .note {
    font-size: calc(1.28rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen .note {
    font-size: calc(1.26rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .note {
    font-size: calc(1.24rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen .note {
    font-size: calc(1.22rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen .note {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#cordless-washer section.seen .seen_bgimage {
  position: relative;
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time {
  background-color: #fff;
  position: absolute;
  left: 5rem;
  width: 18%;
  color: #0091DB;
  padding: 1rem 1rem;
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p {
  text-align: center;
  font-feature-settings: "palt";
  line-height: 1;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value {
  position: relative;
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span {
  font-weight: 500;
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_1 {
  letter-spacing: -2px;
  padding-right: 0.5em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_1 {
    font-size: 6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_1 {
    font-size: calc(5.5rem + ((1vw - 0.992rem) * (2.4154589372)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_1 {
    font-size: calc(5rem + ((1vw - 0.768rem) * (2.2421524664)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_1 {
    font-size: calc(4.5rem + ((1vw - 0.576rem) * (2.6178010471)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_1 {
    font-size: calc(4rem + ((1vw - 0.421rem) * (3.2467532468)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_1 {
    font-size: calc(3.5rem + ((1vw - 0.32rem) * (5)));
  }
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_2 {
  letter-spacing: -2px;
  position: absolute;
  top: 6%;
  right: 6%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_2 {
    font-size: 3.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_2 {
    font-size: calc(3.36rem + ((1vw - 0.992rem) * (1.6425120773)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_2 {
    font-size: calc(3.02rem + ((1vw - 0.768rem) * (1.5246636771)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_2 {
    font-size: calc(2.68rem + ((1vw - 0.576rem) * (1.780104712)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_2 {
    font-size: calc(2.34rem + ((1vw - 0.421rem) * (2.2077922078)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_2 {
    font-size: calc(2rem + ((1vw - 0.32rem) * (3.4)));
  }
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_3 {
  position: absolute;
  top: 70%;
  right: 10%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_3 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_3 {
    font-size: calc(1.42rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_3 {
    font-size: calc(1.34rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_3 {
    font-size: calc(1.26rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_3 {
    font-size: calc(1.18rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_3 {
    font-size: calc(1.1rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_4 {
  position: absolute;
  top: 10%;
  right: 23%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_4 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_4 {
    font-size: calc(1.42rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_4 {
    font-size: calc(1.34rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_4 {
    font-size: calc(1.26rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_4 {
    font-size: calc(1.18rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_4 {
    font-size: calc(1.1rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time.time_1 {
  top: 5%;
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time.time_2 {
  top: 33%;
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time.time_2 p.seen__value span.seen__num_2 {
  right: 22%;
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time.time_2 p.seen__value span.seen__num_3 {
  right: 2%;
}
html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time.time_2 p.seen__value span.seen__num_4 {
  top: 42%;
  right: 10%;
}
html body.products_child#cordless-washer section.seen .seen_bgimage .sub_visual {
  position: absolute;
  bottom: -10%;
  left: 28%;
  aspect-ratio: 1/1;
}
html body.products_child#cordless-washer section.seen .seen_bgimage.bg_2 {
  margin-top: 5%;
}
html body.products_child#cordless-washer section.seen .seen_bgimage.bg_2 .catch {
  position: absolute;
  top: 7%;
  left: 35%;
  width: 28%;
  text-align: center;
  background-color: #0091db;
  border-radius: 100%;
  aspect-ratio: 1/1;
  padding: 2% 0;
  color: #fff;
  line-height: 1.25em;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_2 .catch {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_2 .catch {
    font-size: calc(1.88rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_2 .catch {
    font-size: calc(1.76rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_2 .catch {
    font-size: calc(1.64rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_2 .catch {
    font-size: calc(1.52rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_2 .catch {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#cordless-washer section.seen .seen_bgimage.bg_3 {
  margin-top: 5%;
}
html body.products_child#cordless-washer section.seen .seen_bgimage.bg_3 h2 {
  margin: -20% 0 7% 5%;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_3 h2 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_3 h2 {
    font-size: calc(2.68rem + ((1vw - 0.992rem) * (1.5458937198)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_3 h2 {
    font-size: calc(2.36rem + ((1vw - 0.768rem) * (1.4349775785)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_3 h2 {
    font-size: calc(2.04rem + ((1vw - 0.576rem) * (1.6753926702)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_3 h2 {
    font-size: calc(1.72rem + ((1vw - 0.421rem) * (2.0779220779)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_3 h2 {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (3.2)));
  }
}
html body.products_child#cordless-washer section.seen .seen_image_box_1 {
  margin-top: 2rem;
  display: flex;
  gap: 2%;
}
html body.products_child#cordless-washer section.seen .seen_image_box_1 .item {
  width: 49%;
  position: relative;
}
html body.products_child#cordless-washer section.seen .seen_image_box_1 .item .mini_battery_image {
  position: absolute;
  top: 0;
  left: -3%;
}
html body.products_child#cordless-washer section.seen .seen_image_box_1 .item p {
  text-align: center;
  margin-top: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_1 .item p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_1 .item p {
    font-size: calc(1.44rem + ((1vw - 0.992rem) * (0.2898550725)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_1 .item p {
    font-size: calc(1.38rem + ((1vw - 0.768rem) * (0.269058296)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_1 .item p {
    font-size: calc(1.32rem + ((1vw - 0.576rem) * (0.3141361257)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_1 .item p {
    font-size: calc(1.26rem + ((1vw - 0.421rem) * (0.3896103896)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_1 .item p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.6)));
  }
}
html body.products_child#cordless-washer section.seen .seen_image_box_2 {
  border-top: #0091DB solid 1px;
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2%;
}
html body.products_child#cordless-washer section.seen .seen_image_box_2 .txt {
  width: 60%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_2 .txt p {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_2 .txt p {
    font-size: calc(1.72rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_2 .txt p {
    font-size: calc(1.64rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_2 .txt p {
    font-size: calc(1.56rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_2 .txt p {
    font-size: calc(1.48rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_2 .txt p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#cordless-washer section.seen .seen_image_box_2 .image {
  width: 40%;
}
html body.products_child#cordless-washer section.seen .title_box {
  position: relative;
  padding-right: 170px;
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .title_box {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .title_box .products__title {
    padding-right: 90px;
  }
}
html body.products_child#cordless-washer section.seen .title_box .item_image {
  position: absolute;
  top: 18%;
  right: 0;
  width: 27%;
}
html body.products_child#cordless-washer section.seen .seen_image_box_3 {
  display: flex;
  flex-flow: wrap;
}
html body.products_child#cordless-washer section.seen .seen_image_box_3 .item {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time {
    left: 1rem;
    width: 22%;
    padding: 1rem;
  }
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_1 {
    padding-right: 0.75em;
  }
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_3 {
    right: 0;
  }
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_4 {
    top: 10%;
    right: 23%;
  }
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time p.seen__value span.seen__num_4 {
    top: 32%;
    right: 7%;
  }
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time.time_2 {
    top: 45%;
  }
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time.time_2 p.seen__value span.seen__num_2 {
    right: 24%;
  }
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time.time_2 p.seen__value span.seen__num_3 {
    right: 10%;
  }
  html body.products_child#cordless-washer section.seen .seen_bgimage .seen__time.time_2 p.seen__value span.seen__num_4 {
    top: 34%;
    right: 8%;
  }
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_2 .catch {
    top: 5%;
    left: 30%;
    width: 33%;
  }
  html body.products_child#cordless-washer section.seen .seen_bgimage.bg_3 h2 {
    margin-left: 4%;
  }
  html body.products_child#cordless-washer section.seen .title_box h2 {
    padding-bottom: 1.5em;
  }
  html body.products_child#cordless-washer section.seen .title_box p {
    width: 65%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .title_box p {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .title_box .item_image {
    width: 25%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .title_box .item_image {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.seen .seen_image_box_3 .item {
    width: 50%;
  }
}
html body.products_child#cordless-washer section.specification {
  background-color: #f1efe9;
  padding-bottom: 5%;
}
html body.products_child#cordless-washer section.specification .bg {
  background-color: #fff;
}
html body.products_child#cordless-washer section.specification .bg h2 {
  color: #0091DB;
  text-align: center;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.specification .bg h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.specification .bg h2 {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.specification .bg h2 {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.specification .bg h2 {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.specification .bg h2 {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.specification .bg h2 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#cordless-washer section.specification .specification_image {
  padding: 3%;
  text-align: center;
}
html body.products_child#cordless-washer section.specification .specification_box_1 {
  display: flex;
  flex-flow: wrap;
  gap: 2%;
}
html body.products_child#cordless-washer section.specification .specification_box_1 .item {
  width: 49%;
  margin-bottom: 2%;
  padding: 3%;
  background-color: #0091DB;
}
html body.products_child#cordless-washer section.specification .specification_box_1 .item h4 {
  color: #fff;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: #fff solid 1px;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item h4 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item h4 {
    font-size: calc(1.88rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item h4 {
    font-size: calc(1.76rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item h4 {
    font-size: calc(1.64rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item h4 {
    font-size: calc(1.52rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item h4 {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#cordless-washer section.specification .specification_box_1 .item p {
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item p {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item p {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item p {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item p {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.specification .specification_box_1 .item p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#cordless-washer section.specification .specification_box_2 {
  background-color: #fff;
  padding: 5% 3% 3%;
  border-radius: 2rem;
  margin: 5% 0 0;
}
html body.products_child#cordless-washer section.specification .specification_box_2 h3 {
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 h3 {
    font-size: calc(2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 h3 {
    font-size: calc(2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 h3 {
    font-size: calc(2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 h3 {
    font-size: calc(2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 h3 {
    font-size: calc(2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#cordless-washer section.specification .specification_box_2 .item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  gap: 2%;
}
html body.products_child#cordless-washer section.specification .specification_box_2 .item .img {
  width: 40%;
  text-align: center;
}
html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt {
  width: 58%;
}
html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt h4 {
  font-weight: 600;
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt h4 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt h4 {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt h4 {
    font-size: calc(1.8rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt h4 {
    font-size: calc(1.8rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt h4 {
    font-size: calc(1.8rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt h4 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt p {
  margin-top: 0.5em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt p {
    font-size: calc(1.52rem + ((1vw - 0.992rem) * (-0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt p {
    font-size: calc(1.54rem + ((1vw - 0.768rem) * (-0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt p {
    font-size: calc(1.56rem + ((1vw - 0.576rem) * (-0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt p {
    font-size: calc(1.58rem + ((1vw - 0.421rem) * (-0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt p {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (-0.2)));
  }
}
html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt p + p {
  font-size: 0.85em;
}
html body.products_child#cordless-washer section.specification .specification_box_2 .item + .item {
  border-top: #0091DB solid 2px;
}
@media screen and (max-width: 767px) {
  html body.products_child#cordless-washer section.specification .specification_box_2 .item {
    flex-flow: column;
  }
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .img {
    width: 80%;
  }
  html body.products_child#cordless-washer section.specification .specification_box_2 .item .txt {
    width: 100%;
  }
}
html body.products_child#camping-lantern main::after {
  background-image: url(../../images/products/camping-lantern/bg-camping-lantern.webp);
  background-position: top center;
}
html body.products_child#camping-lantern section.overview_ltl img.overview_ltl__main-visual {
  display: block;
  margin-right: 0;
  margin-left: auto;
  max-width: 450px;
}
html body.products_child#camping-lantern section.overview_ltl .overview_ltl__battery-info {
  top: 450px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  html body.products_child#camping-lantern section.overview_ltl .overview_ltl__battery-info {
    top: 400px;
  }
}
html body.products_child#camping-lantern section.overview_ltl .overview_ltl__product-details {
  top: 300px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  html body.products_child#camping-lantern section.overview_ltl .overview_ltl__product-details {
    top: 250px;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#camping-lantern section.overview_ltl-sp {
    background-image: url(../../images/products/overview_ltl_camplantern.webp);
  }
}
html body.products_child#camping-lantern section.feature {
  background-color: #f1efe9;
}
html body.products_child#camping-lantern section.feature .feature__bgimage {
  display: flex;
  position: relative;
}
html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row {
  background-color: #0091DB;
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  height: 100%;
  color: #fff;
  padding: 3rem;
}
html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p {
  text-align: center;
  font-feature-settings: "palt";
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p {
    font-size: calc(1rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.txt {
  line-height: 1;
  font-weight: 600;
}
html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 {
  line-height: 1;
  padding: 0;
  font-weight: 500;
  letter-spacing: -0.05em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: 7.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(6.8rem + ((1vw - 0.992rem) * (3.3816425121)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(6.1rem + ((1vw - 0.768rem) * (3.1390134529)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(5.4rem + ((1vw - 0.576rem) * (3.664921466)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(4.7rem + ((1vw - 0.421rem) * (4.5454545455)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(4rem + ((1vw - 0.32rem) * (7)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 + .txt {
  margin-top: 3rem;
}
html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 {
  line-height: 1;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 {
    font-size: 4.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 {
    font-size: calc(4.08rem + ((1vw - 0.992rem) * (2.0289855072)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 {
    font-size: calc(3.66rem + ((1vw - 0.768rem) * (1.8834080717)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 {
    font-size: calc(3.24rem + ((1vw - 0.576rem) * (2.1989528796)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 {
    font-size: calc(2.82rem + ((1vw - 0.421rem) * (2.7272727273)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 {
    font-size: calc(2.4rem + ((1vw - 0.32rem) * (4.2)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 span {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 span {
    font-size: calc(2.24rem + ((1vw - 0.992rem) * (1.2560386473)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 span {
    font-size: calc(1.98rem + ((1vw - 0.768rem) * (1.1659192825)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 span {
    font-size: calc(1.72rem + ((1vw - 0.576rem) * (1.3612565445)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 span {
    font-size: calc(1.46rem + ((1vw - 0.421rem) * (1.6883116883)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_3 span {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (2.6)));
  }
}
html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row .item_image {
  position: relative;
  margin: 4rem auto;
  inset: 4rem 0 0 -28%;
  max-width: 200%;
  width: 160%;
  aspect-ratio: 0.9;
}
@media screen and (max-width: 767px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row .item_image {
    margin-top: 2.5rem;
  }
}
html body.products_child#camping-lantern section.feature .feature__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
html body.products_child#camping-lantern section.feature .feature__list .bdr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: #fff solid 1px;
  padding: 0.5em;
  box-sizing: border-box;
  width: fit-content;
  margin: 1rem auto 0;
  line-height: 1.4em;
  width: 100%;
  flex: 1;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: calc(1.84rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: calc(1.68rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: calc(1.52rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: calc(1.36rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.6)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: calc(1.84rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: calc(1.68rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: calc(1.52rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: calc(1.36rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.feature .feature__list .bdr {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.6)));
  }
}
html body.products_child#camping-lantern section.feature h2 {
  width: 100%;
  padding: 2rem 0;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.feature h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.feature h2 {
    font-size: calc(2.36rem + ((1vw - 0.992rem) * (0.6763285024)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.feature h2 {
    font-size: calc(2.22rem + ((1vw - 0.768rem) * (0.6278026906)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.feature h2 {
    font-size: calc(2.08rem + ((1vw - 0.576rem) * (0.7329842932)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.feature h2 {
    font-size: calc(1.94rem + ((1vw - 0.421rem) * (0.9090909091)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.feature h2 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (1.4)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row {
    padding: 6% 3%;
  }
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 {
    padding-bottom: 1rem;
  }
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_1 + .txt {
    margin-top: 1.5rem;
  }
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_2 {
    padding-bottom: 1rem;
  }
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.num_2 + p {
    margin-top: 1.5rem;
  }
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row p.bdr {
    padding: 0.5em;
  }
  html body.products_child#camping-lantern section.feature .feature__bgimage .feature_row .item_image {
    inset: 2rem 0 0 -2%;
    width: 110%;
  }
}
html body.products_child#camping-lantern section.smartlink {
  background-color: #0091DB;
}
html body.products_child#camping-lantern section.flow {
  background-color: #f1efe9;
  padding-bottom: 5%;
}
html body.products_child#camping-lantern section.flow .title_box {
  display: flex;
  gap: 2%;
  padding: 2rem 0;
  align-items: center;
}
html body.products_child#camping-lantern section.flow .title_box .ttl {
  width: 90%;
}
html body.products_child#camping-lantern section.flow .title_box .ttl h2 {
  margin-bottom: 0;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl h2 {
    font-size: calc(2.36rem + ((1vw - 0.992rem) * (0.6763285024)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl h2 {
    font-size: calc(2.22rem + ((1vw - 0.768rem) * (0.6278026906)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl h2 {
    font-size: calc(2.08rem + ((1vw - 0.576rem) * (0.7329842932)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl h2 {
    font-size: calc(1.94rem + ((1vw - 0.421rem) * (0.9090909091)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl h2 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (1.4)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl p {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl p {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl p {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl p {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.flow .title_box .ttl p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#camping-lantern section.flow .title_box img {
  width: auto;
  max-width: 12%;
}
html body.products_child#camping-lantern section.flow .flow_box {
  display: flex;
}
html body.products_child#camping-lantern section.flow .flow_box:nth-of-type(2), html body.products_child#camping-lantern section.flow .flow_box:nth-of-type(4) {
  flex-flow: row-reverse;
}
html body.products_child#camping-lantern section.flow .flow_box .catch {
  width: 39.5%;
  background-color: #0091DB;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
html body.products_child#camping-lantern section.flow .flow_box .catch p {
  display: flex;
  margin: 1rem 1rem 0;
  color: #fff;
  font-weight: normal;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch p {
    font-size: calc(1.16rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch p {
    font-size: calc(1.12rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch p {
    font-size: calc(1.08rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch p {
    font-size: calc(1.04rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch p {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0.4)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch p {
    margin: 0.5rem 0 0;
  }
}
html body.products_child#camping-lantern section.flow .flow_box .catch p::before {
  content: "※";
  display: block;
}
html body.products_child#camping-lantern section.flow .flow_box .catch h3 {
  color: #fff;
  text-align: center;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch h3 {
    font-size: calc(1.68rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch h3 {
    font-size: calc(1.56rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch h3 {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch h3 {
    font-size: calc(1.32rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.flow .flow_box .catch h3 {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#camping-lantern section.flow .flow_box img {
  width: 60.5%;
}
@media screen and (max-width: 767px) {
  html body.products_child#camping-lantern section.flow .flow_box {
    flex-flow: column;
  }
  html body.products_child#camping-lantern section.flow .flow_box:nth-of-type(2), html body.products_child#camping-lantern section.flow .flow_box:nth-of-type(4) {
    flex-flow: column;
  }
  html body.products_child#camping-lantern section.flow .flow_box .catch {
    flex-flow: row;
    align-items: baseline;
    width: 100%;
    padding: 1rem;
    justify-content: flex-start;
    flex-direction: column;
  }
  html body.products_child#camping-lantern section.flow .flow_box .catch .num {
    width: 30%;
    padding: 0 1rem 0 0;
  }
  html body.products_child#camping-lantern section.flow .flow_box .catch h3 {
    text-align: left;
  }
  html body.products_child#camping-lantern section.flow .flow_box img {
    width: 100%;
  }
}
html body.products_child#camping-lantern section.use {
  background-color: #f1efe9;
  padding: 0 0 5%;
}
html body.products_child#camping-lantern section.use .use_left {
  text-align: left;
  position: relative;
}
html body.products_child#camping-lantern section.use .use_left img {
  width: 85%;
}
html body.products_child#camping-lantern section.use .use_left .use_left_caption {
  position: absolute;
  color: #fff;
  top: 24px;
  left: 60px;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.use .use_left .use_left_caption {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.use .use_left .use_left_caption {
    font-size: calc(2.58rem + ((1vw - 0.992rem) * (1.0628019324)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.use .use_left .use_left_caption {
    font-size: calc(2.36rem + ((1vw - 0.768rem) * (0.9865470852)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_left .use_left_caption {
    font-size: calc(2.14rem + ((1vw - 0.576rem) * (1.1518324607)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_left .use_left_caption {
    font-size: calc(1.92rem + ((1vw - 0.421rem) * (1.4285714286)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.use .use_left .use_left_caption {
    font-size: calc(1.7rem + ((1vw - 0.32rem) * (2.2)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_left .use_left_caption {
    top: 16px;
    left: 16px;
  }
}
html body.products_child#camping-lantern section.use .use_txt_box_1 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem 0 0 4rem;
  gap: 3%;
  margin-bottom: 2%;
}
@media screen and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 {
    padding: 0 0 0 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .products__text {
    padding-right: 130px;
  }
}
html body.products_child#camping-lantern section.use .use_txt_box_1 .catch {
  width: 17%;
  background-color: #0091DB;
  border-radius: 100%;
  aspect-ratio: 1/1;
  padding: 2% 0;
  color: #fff;
  line-height: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch {
    position: absolute;
    width: 100px;
    right: 30px;
    top: -150px;
  }
}
@media screen and (max-width: 380px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch {
    right: 10px;
    top: -90px;
  }
}
html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p {
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p {
    font-size: calc(1.56rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p {
    font-size: calc(1.52rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p {
    font-size: calc(1.48rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p {
    font-size: calc(1.44rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span {
  display: block;
  margin: 0.5rem auto 0;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span {
    font-size: calc(3.4rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span {
    font-size: calc(3.3rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span {
    font-size: calc(3.2rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span {
    font-size: calc(3.1rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span {
    font-size: calc(3rem + ((1vw - 0.32rem) * (1)));
  }
}
html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span.txt_2 {
  display: inline;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span.txt_2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span.txt_2 {
    font-size: calc(1.92rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span.txt_2 {
    font-size: calc(1.84rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span.txt_2 {
    font-size: calc(1.76rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span.txt_2 {
    font-size: calc(1.68rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch p span.txt_2 {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0.8)));
  }
}
html body.products_child#camping-lantern section.use .use_txt_box_1 > img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
}
html body.products_child#camping-lantern section.use .use_right {
  text-align: right;
  position: relative;
}
html body.products_child#camping-lantern section.use .use_right img {
  width: 85%;
}
html body.products_child#camping-lantern section.use .use_right .use_right_caption {
  position: absolute;
  color: #fff;
  top: 24px;
  left: 20%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.use .use_right .use_right_caption {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.use .use_right .use_right_caption {
    font-size: calc(2.34rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.use .use_right .use_right_caption {
    font-size: calc(2.18rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_right .use_right_caption {
    font-size: calc(2.02rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_right .use_right_caption {
    font-size: calc(1.86rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.use .use_right .use_right_caption {
    font-size: calc(1.7rem + ((1vw - 0.32rem) * (1.6)));
  }
}
html body.products_child#camping-lantern section.use .title_box {
  display: flex;
  align-items: center;
  position: relative;
}
html body.products_child#camping-lantern section.use .title_box h2 {
  padding: 3rem 0;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.use .title_box h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.use .title_box h2 {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.use .title_box h2 {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .title_box h2 {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .title_box h2 {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.use .title_box h2 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#camping-lantern section.use .title_box img {
  position: absolute;
  right: 10px;
  width: 32.5%;
}
html body.products_child#camping-lantern section.use .use_txt_2 {
  padding: 2em 0 2em;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.use .use_txt_2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.use .use_txt_2 {
    font-size: calc(1.96rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.use .use_txt_2 {
    font-size: calc(1.92rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_txt_2 {
    font-size: calc(1.88rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_txt_2 {
    font-size: calc(1.84rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.use .use_txt_2 {
    font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#camping-lantern section.use .use_img_box {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
html body.products_child#camping-lantern section.use .use_img_box p {
  width: 100%;
  text-align: center;
  margin-bottom: 3%;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.use .use_img_box p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.use .use_img_box p {
    font-size: calc(1.48rem + ((1vw - 0.992rem) * (0.0966183575)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.use .use_img_box p {
    font-size: calc(1.46rem + ((1vw - 0.768rem) * (0.0896860987)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_img_box p {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.1047120419)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_img_box p {
    font-size: calc(1.42rem + ((1vw - 0.421rem) * (0.1298701299)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.use .use_img_box p {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (0.2)));
  }
}
html body.products_child#camping-lantern section.use .use_img_box p:has(img) {
  width: 25%;
}
html body.products_child#camping-lantern section.use .use_img_box p.use_img_attn {
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
html body.products_child#camping-lantern section.use .use_img_box p.use_img_attn span {
  display: block;
  width: 200px;
  position: absolute;
  top: 50%;
  right: -180px;
  transform: translateY(-50%);
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.use .use_img_box p.use_img_attn span {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.use .use_img_box p.use_img_attn span {
    font-size: calc(1.16rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.use .use_img_box p.use_img_attn span {
    font-size: calc(1.12rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_img_box p.use_img_attn span {
    font-size: calc(1.08rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_img_box p.use_img_attn span {
    font-size: calc(1.04rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.use .use_img_box p.use_img_attn span {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0.4)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_img_box p.use_img_attn span {
    width: auto;
    position: static;
    margin-top: 1rem;
  }
}
html body.products_child#camping-lantern section.use .use_box_bgw {
  background-color: #fff;
  padding: 3%;
  text-align: center;
}
html body.products_child#camping-lantern section.use .use_box_bgw p {
  color: #0091DB;
  text-align: center;
  margin-bottom: 0.5em;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.use .use_box_bgw p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.use .use_box_bgw p {
    font-size: calc(1.92rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.use .use_box_bgw p {
    font-size: calc(1.84rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_box_bgw p {
    font-size: calc(1.76rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.use .use_box_bgw p {
    font-size: calc(1.68rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.use .use_box_bgw p {
    font-size: calc(1.6rem + ((1vw - 0.32rem) * (0.8)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#camping-lantern section.use .use_txt_box_1 {
    position: relative;
  }
  html body.products_child#camping-lantern section.use .use_txt_box_1 .catch {
    z-index: 2;
    padding-top: 1.5rem;
  }
  html body.products_child#camping-lantern section.use .title_box h2 {
    padding: 2rem 0;
  }
  html body.products_child#camping-lantern section.use .title_box img {
    right: 0;
    width: 27%;
  }
}
@media screen and (max-width: 767px) and (max-width: 380px) {
  html body.products_child#camping-lantern section.use .title_box img {
    width: 41%;
  }
}
html body.products_child#camping-lantern section.seen {
  background-color: #f1efe9;
  padding-bottom: 5%;
}
html body.products_child#camping-lantern section.seen h2 {
  padding: 3rem 0;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.seen h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.seen h2 {
    font-size: calc(2.4rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.seen h2 {
    font-size: calc(2.3rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.seen h2 {
    font-size: calc(2.2rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.seen h2 {
    font-size: calc(2.1rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.seen h2 {
    font-size: calc(2rem + ((1vw - 0.32rem) * (1)));
  }
}
html body.products_child#camping-lantern section.seen .seen_box {
  position: relative;
}
html body.products_child#camping-lantern section.seen .seen_box .catch {
  position: absolute;
  inset: -20% 0 0 2%;
  margin: auto auto auto 0;
  width: 36.5%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
html body.products_child#camping-lantern section.seen .seen_box .catch img {
  width: auto;
}
html body.products_child#camping-lantern section.seen .seen_box .catch h3 {
  color: #fff;
  text-align: center;
  border-top: #fff solid 1px;
  margin-top: 1.75rem;
  padding-top: 0.75rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#camping-lantern section.seen .seen_box .catch h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#camping-lantern section.seen .seen_box .catch h3 {
    font-size: calc(1.68rem + ((1vw - 0.992rem) * (0.5797101449)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#camping-lantern section.seen .seen_box .catch h3 {
    font-size: calc(1.56rem + ((1vw - 0.768rem) * (0.5381165919)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#camping-lantern section.seen .seen_box .catch h3 {
    font-size: calc(1.44rem + ((1vw - 0.576rem) * (0.6282722513)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#camping-lantern section.seen .seen_box .catch h3 {
    font-size: calc(1.32rem + ((1vw - 0.421rem) * (0.7792207792)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#camping-lantern section.seen .seen_box .catch h3 {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.2)));
  }
}
html body.products_child#camping-lantern section.seen .seen_box:nth-of-type(1) .catch {
  inset: -20% 0 0 2%;
}
html body.products_child#camping-lantern section.seen .seen_box:nth-of-type(2) .catch {
  inset: 0 2% 0 0;
  margin: auto 0 auto auto;
}
html body.products_child#camping-lantern section.seen .seen_box:nth-of-type(3) .catch {
  inset: 10% 0 0 0;
}
@media screen and (max-width: 767px) {
  html body.products_child#camping-lantern section.seen .seen_box .catch {
    width: 40%;
  }
  html body.products_child#camping-lantern section.seen .seen_box .catch img {
    width: 40%;
  }
}
html body.products_child#musclecare main::after {
  background-image: url(../../images/products/massage-gun/bg-massage-gun.webp);
}
html body.products_child#musclecare section.overview_ltl img.overview_ltl__main-visual {
  padding-top: 5rem;
  max-width: 500px;
}
html body.products_child#musclecare section.overview_ltl .overview_ltl__battery-info {
  top: 140px;
  right: 70px;
}
html body.products_child#musclecare section.overview_ltl .overview_ltl__product-details {
  top: 480px;
  right: 110px;
}
@media screen and (max-width: 575px) {
  html body.products_child#musclecare section.overview_ltl-sp {
    background-image: url(../../images/products/overview_ltl_musclecare.webp);
  }
}
html body.products_child#musclecare section.feature {
  background-color: #f1efe9;
  padding-bottom: 3%;
}
html body.products_child#musclecare section.feature .feature__bgimage {
  display: flex;
  position: relative;
}
html body.products_child#musclecare section.feature .feature__bgimage .feature_row {
  background-color: #0091DB;
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  height: 100%;
  color: #fff;
  padding: 3rem;
}
html body.products_child#musclecare section.feature .feature__bgimage .feature_row .feture_time {
  height: 100%;
  display: flex;
  flex-direction: column;
}
html body.products_child#musclecare section.feature .feature__bgimage .feature_row p {
  text-align: center;
  font-feature-settings: "palt";
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p {
    font-size: calc(1rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.txt {
  line-height: 1;
  font-weight: 600;
}
html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 {
  line-height: 1;
  padding: 0;
  font-weight: 500;
  letter-spacing: -0.05em;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: 7.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(6.8rem + ((1vw - 0.992rem) * (3.3816425121)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(6.1rem + ((1vw - 0.768rem) * (3.1390134529)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(5.4rem + ((1vw - 0.576rem) * (3.664921466)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(4.7rem + ((1vw - 0.421rem) * (4.5454545455)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 {
    font-size: calc(4rem + ((1vw - 0.32rem) * (7)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.8rem + ((1vw - 0.992rem) * (0.9661835749)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.6rem + ((1vw - 0.768rem) * (0.8968609865)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.4rem + ((1vw - 0.576rem) * (1.0471204188)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2.2rem + ((1vw - 0.421rem) * (1.2987012987)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 span {
    font-size: calc(2rem + ((1vw - 0.32rem) * (2)));
  }
}
html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.num_1 + .txt {
  margin-top: 3rem;
}
html body.products_child#musclecare section.feature .feature__bgimage .feature_row .item_image {
  position: relative;
  margin: 0 auto;
  inset: 4rem 0 0 -28%;
  max-width: 200%;
  width: 160%;
}
html body.products_child#musclecare section.feature .feature__bgimage .feature__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: #fff solid 1px;
  padding: 0.5em;
  box-sizing: border-box;
  width: fit-content;
  margin: 1rem auto 0;
  line-height: 1.4em;
  width: 100%;
  flex: 1;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: calc(1.84rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: calc(1.68rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: calc(1.52rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: calc(1.36rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.6)));
  }
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: calc(1.84rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: calc(1.68rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: calc(1.52rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: calc(1.36rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature__list .bdr {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (1.6)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row {
    padding: 2rem 1rem;
  }
  html body.products_child#musclecare section.feature .feature__bgimage .feature_row p.bdr {
    margin-top: 0.5rem;
    padding: 0.5rem;
    line-height: 1.15em;
  }
}
html body.products_child#musclecare section.feature .inner > img {
  max-width: 500px;
  margin: 1.5rem auto 0;
  display: block;
  width: 100%;
}
html body.products_child#musclecare section.smartlink {
  background-color: #0091DB;
}
html body.products_child#musclecare section.use_battery .bg {
  background-color: #f1efe9;
  padding: 2rem 0;
}
html body.products_child#musclecare section.use_battery .note {
  display: block;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.use_battery .note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.use_battery .note {
    font-size: calc(1.2rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.use_battery .note {
    font-size: calc(1.2rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.use_battery .note {
    font-size: calc(1.2rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.use_battery .note {
    font-size: calc(1.2rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.use_battery .note {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#musclecare section.use_battery .products__text {
  padding-right: 115px;
}
html body.products_child#musclecare section.use_battery .inner {
  position: relative;
}
html body.products_child#musclecare section.use_battery .battery_image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  max-width: 140px;
}
html body.products_child#musclecare section.use_battery .use_battery_image_box {
  display: flex;
  gap: 2%;
  margin-top: 6%;
}
html body.products_child#musclecare section.use_battery .use_battery_image_box p {
  padding-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box p {
    font-size: calc(1.46rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box p {
    font-size: calc(1.42rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box p {
    font-size: calc(1.38rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box p {
    font-size: calc(1.34rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box p {
    font-size: calc(1.3rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#musclecare section.use_battery .use_battery_image_box .left {
  width: 67%;
}
html body.products_child#musclecare section.use_battery .use_battery_image_box .right {
  width: 31%;
}
html body.products_child#musclecare section.use_battery .use_battery_image_box .right .right-attn {
  display: flex;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box .right .right-attn {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box .right .right-attn {
    font-size: calc(1.16rem + ((1vw - 0.992rem) * (0.193236715)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box .right .right-attn {
    font-size: calc(1.12rem + ((1vw - 0.768rem) * (0.1793721973)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box .right .right-attn {
    font-size: calc(1.08rem + ((1vw - 0.576rem) * (0.2094240838)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box .right .right-attn {
    font-size: calc(1.04rem + ((1vw - 0.421rem) * (0.2597402597)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.use_battery .use_battery_image_box .right .right-attn {
    font-size: calc(1rem + ((1vw - 0.32rem) * (0.4)));
  }
}
html body.products_child#musclecare section.use_battery .use_battery_image_box .right .right-attn::before {
  content: "※";
  display: block;
}
html body.products_child#musclecare section.accessory {
  padding-bottom: 5%;
}
html body.products_child#musclecare section.accessory .accsesory_main {
  position: relative;
  overflow: hidden;
  padding-left: 3%;
}
html body.products_child#musclecare section.accessory .accsesory_main img {
  max-width: 115%;
}
html body.products_child#musclecare section.accessory h2 {
  width: 100%;
  margin: -10% 0 2%;
}
html body.products_child#musclecare section.accessory .accsesory_box {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 3%;
}
html body.products_child#musclecare section.accessory .accsesory_box .item {
  width: 48.5%;
  position: relative;
  margin-top: 3%;
}
html body.products_child#musclecare section.accessory .accsesory_box .item p {
  text-align: center;
  font-weight: 500;
}
html body.products_child#musclecare section.accessory .accsesory_box .item p.ttl {
  background-color: #0091DB;
  color: #fff;
  padding: 0.5em;
}
html body.products_child#musclecare section.accessory .accsesory_box .item p.txt {
  padding-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p.txt {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p.txt {
    font-size: calc(1.5rem + ((1vw - 0.992rem) * (0)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p.txt {
    font-size: calc(1.5rem + ((1vw - 0.768rem) * (0)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p.txt {
    font-size: calc(1.5rem + ((1vw - 0.576rem) * (0)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p.txt {
    font-size: calc(1.5rem + ((1vw - 0.421rem) * (0)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p.txt {
    font-size: calc(1.5rem + ((1vw - 0.32rem) * (0)));
  }
}
html body.products_child#musclecare section.accessory .accsesory_box .item img.attachment_sub_img {
  position: absolute;
  width: 30%;
  aspect-ratio: 1/1;
  top: -6%;
  left: -5%;
}
@media screen and (max-width: 767px) {
  html body.products_child#musclecare section.accessory .accsesory_box {
    gap: 2%;
  }
  html body.products_child#musclecare section.accessory .accsesory_box .item {
    width: 49%;
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p {
    font-size: calc(1.52rem + ((1vw - 0.992rem) * (0.38647343)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p {
    font-size: calc(1.44rem + ((1vw - 0.768rem) * (0.3587443946)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p {
    font-size: calc(1.36rem + ((1vw - 0.576rem) * (0.4188481675)));
  }
}
@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p {
    font-size: calc(1.28rem + ((1vw - 0.421rem) * (0.5194805195)));
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p {
    font-size: calc(1.2rem + ((1vw - 0.32rem) * (0.8)));
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item p.ttl {
    padding-left: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  html body.products_child#musclecare section.accessory .accsesory_box .item img.attachment_sub_img {
    width: 25%;
    top: -7%;
    left: -4%;
  }
}
html body.products_child#musclecare section.mode {
  background-color: #f1efe9;
  padding: 2rem 0;
}
html body.products_child#musclecare section.mode .mode_txt_box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 575px) {
  html body.products_child#musclecare section.mode .mode_txt_box {
    justify-content: space-between;
  }
}
html body.products_child#musclecare section.mode .mode_txt_box .left {
  width: 30%;
}
@media screen and (max-width: 575px) {
  html body.products_child#musclecare section.mode .mode_txt_box .left {
    width: 40%;
  }
}
html body.products_child#musclecare section.mode .mode_txt_box .left p {
  font-weight: 600;
}
html body.products_child#musclecare section.mode .mode_txt_box .right {
  width: 70%;
}
@media screen and (max-width: 575px) {
  html body.products_child#musclecare section.mode .mode_txt_box .right {
    width: 60%;
  }
}
html body.products_child#musclecare section.seen h2 {
  padding: 2rem 0 1rem;
  text-align: left;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.seen h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.seen h2 {
    font-size: calc(2.4rem + ((1vw - 0.992rem) * (0.4830917874)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.seen h2 {
    font-size: calc(2.3rem + ((1vw - 0.768rem) * (0.4484304933)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.seen h2 {
    font-size: calc(2.2rem + ((1vw - 0.576rem) * (0.5235602094)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.seen h2 {
    font-size: calc(2.1rem + ((1vw - 0.421rem) * (0.6493506494)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.seen h2 {
    font-size: calc(2rem + ((1vw - 0.32rem) * (1)));
  }
}
html body.products_child#musclecare section.seen .seen_box {
  position: relative;
}
html body.products_child#musclecare section.seen .seen_box .catch {
  position: absolute;
  margin: auto auto auto 0;
  width: fit-content;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
html body.products_child#musclecare section.seen .seen_box .catch h3 {
  width: 100%;
  color: #fff;
  text-align: left;
}
@media only screen and (min-width: 1200px) {
  html body.products_child#musclecare section.seen .seen_box .catch h3 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.products_child#musclecare section.seen .seen_box .catch h3 {
    font-size: calc(2.04rem + ((1vw - 0.992rem) * (0.7729468599)));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.products_child#musclecare section.seen .seen_box .catch h3 {
    font-size: calc(1.88rem + ((1vw - 0.768rem) * (0.7174887892)));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.products_child#musclecare section.seen .seen_box .catch h3 {
    font-size: calc(1.72rem + ((1vw - 0.576rem) * (0.8376963351)));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.products_child#musclecare section.seen .seen_box .catch h3 {
    font-size: calc(1.56rem + ((1vw - 0.421rem) * (1.038961039)));
  }
}
@media only screen and (max-width: 420px) {
  html body.products_child#musclecare section.seen .seen_box .catch h3 {
    font-size: calc(1.4rem + ((1vw - 0.32rem) * (1.6)));
  }
}
html body.products_child#musclecare section.seen .seen_box:nth-of-type(2) .catch {
  inset: -20% 0 0 5%;
}
html body.products_child#musclecare section.seen .seen_box:nth-of-type(3) .catch {
  inset: 0 5% 0 0;
  margin: auto 0 auto auto;
}
html body.products_child#musclecare section.seen .seen_box:nth-of-type(4) .catch {
  inset: 10% 0 0 5%;
}

/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/

/*# sourceMappingURL=products.css.map */
