@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#portable-power-guide section {
  /*▼ 共通 ------------------------------------------*/
  /*▲ 共通 ------------------------------------------*/
}
html body#portable-power-guide section .basic-title {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section .basic-title {
    padding-top: 3rem;
  }
}
html body#portable-power-guide section .base__block {
  margin-top: 4rem;
}
html body#portable-power-guide section .base__block .base__heading {
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section .base__block .base__heading {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section .base__block .base__heading {
    font-size: calc(1.78rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section .base__block .base__heading {
    font-size: calc(1.76rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section .base__block .base__heading {
    font-size: calc(1.74rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section .base__block .base__heading {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section .base__block .base__heading {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section .base__block .base__heading.base__heading--blue {
  text-align: center;
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section .base__block .base__heading.base__heading--blue {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section .base__block .base__heading.base__heading--blue {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section .base__block .base__heading.base__heading--blue {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section .base__block .base__heading.base__heading--blue {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section .base__block .base__heading.base__heading--blue {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section .base__block .base__heading.base__heading--blue {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section .base__block .base__heading.base__heading--blue {
    margin-bottom: 1rem;
  }
}
html body#portable-power-guide section .base__block .base__heading.base__heading--blue span {
  display: block;
  margin-top: 1rem;
}
html body#portable-power-guide section .base__block .base__layout {
  display: flex;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section .base__block .base__layout {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section .base__block .base__layout + .base__layout {
    margin-top: 3rem;
  }
}
html body#portable-power-guide section .base__block .base__layout .base__content p {
  line-height: 1.75;
  padding-bottom: 1rem;
  letter-spacing: -0.01rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section .base__block .base__layout .base__content p {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide section .base__block .base__layout.base__layout--reverse:nth-child(even) {
  flex-direction: row-reverse;
}
html body#portable-power-guide section .base__block .base__layout.base__layout--reverse:nth-child(even) .base__content {
  padding-left: 0;
  padding-right: 3rem;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section .base__block .base__layout.base__layout--reverse:nth-child(even) .base__content {
    padding-right: 0;
  }
}
html body#portable-power-guide section .base__block .base__layout .base__image {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section .base__block .base__layout .base__image {
    margin-bottom: 0;
    text-align: center;
  }
}
html body#portable-power-guide section .base__block .base__layout .base__image img {
  width: 100%;
  max-width: 375px;
  min-width: 375px;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section .base__block .base__layout .base__image img {
    min-width: 400px;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section .base__block .base__layout .base__image img {
    min-width: 100%;
  }
}
html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table {
  width: 100%;
  min-width: 375px;
  border: 2px solid #0091DB;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table {
    min-width: auto;
  }
}
html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tr th, html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tr td {
  border: 1px solid #0091DB;
  text-align: center;
  vertical-align: middle;
}
html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tr th {
  color: #0091DB;
  font-weight: 500;
  letter-spacing: 0;
}
html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table thead th {
  padding: 1rem;
}
html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tbody th {
  line-height: 1.4;
  padding: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table 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#portable-power-guide section .base__block .base__layout .base__image.base__image--table 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#portable-power-guide section .base__block .base__layout .base__image.base__image--table 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#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tbody td {
  letter-spacing: 0.04em;
  padding: 1rem 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table 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#portable-power-guide section .base__block .base__layout .base__image.base__image--table 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#portable-power-guide section .base__block .base__layout .base__image.base__image--table 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#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section .base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide section .base__block .base__layout .base__content {
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section .base__block .base__layout .base__content {
    padding-left: 0;
    padding-top: 2rem;
  }
}
html body#portable-power-guide section .base__block .base__layout .base__content .base__content--lead {
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .base__content--lead {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.78rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.76rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.74rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section .base__block .base__layout .base__content p {
  letter-spacing: 0.04em;
  line-height: 1.7;
}
html body#portable-power-guide section .base__block .base__layout .base__content .icon-list {
  display: flex;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .icon-list {
    justify-content: center;
  }
}
html body#portable-power-guide section .base__block .base__layout .base__content .icon-list .icon-item {
  text-align: center;
}
html body#portable-power-guide section .base__block .base__layout .base__content .icon-list .icon-item p {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.overview-portable-power .name .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem 0;
  }
}
html body#portable-power-guide section.overview-portable-power .name .flex a {
  color: #ffffff;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.overview-portable-power .name .flex a {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.overview-portable-power .name .flex a {
    font-size: calc(1.4rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.overview-portable-power .name .flex a {
    font-size: calc(1.4rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.overview-portable-power .name .flex a {
    font-size: calc(1.4rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.overview-portable-power .name .flex a {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.overview-portable-power .name .flex a {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.overview-portable-power .name .flex a.product__button-look {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.overview-portable-power .name .flex a {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section .visible-sm-ijo {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section .visible-xs-ijo {
    display: none;
  }
}
html body#portable-power-guide section .slash-title {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding: 1rem 0 1.5rem;
  line-height: 1.5;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section .slash-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section .slash-title {
    font-size: calc(1.94rem + (1vw - 0.992rem) * (0.2898550725));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section .slash-title {
    font-size: calc(1.88rem + (1vw - 0.768rem) * (0.269058296));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section .slash-title {
    font-size: calc(1.82rem + (1vw - 0.576rem) * (0.3141361257));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section .slash-title {
    font-size: calc(1.76rem + (1vw - 0.421rem) * (0.3896103896));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section .slash-title {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.6));
  }
}
html body#portable-power-guide section .slash-title::before, html body#portable-power-guide section .slash-title::after {
  content: "";
  position: relative;
  display: inline-block;
  background: #333333;
  width: 2px;
  height: 21px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section .slash-title::before, html body#portable-power-guide section .slash-title::after {
    height: 21px;
  }
}
html body#portable-power-guide section .slash-title::before {
  transform: rotate(-35deg);
  margin-right: 3rem;
}
html body#portable-power-guide section .slash-title::after {
  transform: rotate(35deg);
  margin-left: 3rem;
}
html body#portable-power-guide section.mv {
  background-color: #CBEEFF;
  height: 400px;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section.mv {
    height: auto;
  }
}
html body#portable-power-guide section.mv .wrapper {
  height: 100%;
  padding: 0;
}
html body#portable-power-guide section.mv .mv__inner {
  display: flex;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section.mv .mv__inner {
    display: block;
  }
}
html body#portable-power-guide 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#portable-power-guide section.mv .mv__inner .mv__copy {
    max-width: 100%;
    padding: 4rem 8rem 6rem 4rem;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.mv .mv__inner .mv__copy {
    padding: 4rem 8rem 6rem 2rem;
  }
}
html body#portable-power-guide 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 2rem;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.mv .mv__inner .mv__copy h1 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.mv .mv__inner .mv__copy h1 {
    padding: 2rem;
  }
}
html body#portable-power-guide 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 only screen and (min-width: 1200px) {
  html body#portable-power-guide section.mv .mv__inner .mv__copy h1 span {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.76rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.72rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.68rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.64rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.mv .mv__inner .mv__bg {
  background-image: url(../../images/portable-power-guide/portable-power-guide-mv.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  max-width: 415px;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section.mv .mv__inner .mv__bg {
    height: 300px;
    max-width: 100%;
  }
}
html body#portable-power-guide section.page-links .page-links__list {
  max-width: 830px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 4rem 0 5rem;
  gap: 1rem 0;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.page-links .page-links__list {
    gap: 0;
  }
}
html body#portable-power-guide section.page-links .page-links__list .page-links__item {
  flex-basis: 33.3333333333%;
  height: 80px;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item {
    flex-basis: 32.6666666667%;
  }
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item {
    margin-bottom: 1rem;
  }
  html body#portable-power-guide 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#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item {
    flex-basis: 100%;
    height: auto;
  }
}
html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
  margin-right: 1rem;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 0;
  }
}
html body#portable-power-guide section.page-links .page-links__list .page-links__item:nth-of-type(3) .page-links__link {
  margin-right: 0;
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.32rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.24rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.16rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.08rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1rem + (1vw - 0.32rem) * (0.8));
  }
}
@media only screen and (max-width: 575px) and (min-width: 1200px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 575px) and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (max-width: 575px) and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (max-width: 575px) and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (max-width: 575px) and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 575px) and (max-width: 420px) {
  html body#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide 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#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link {
    padding: 1rem 0.5rem;
    justify-content: left;
  }
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.page-links .page-links__list .page-links__item .page-links__link br {
    display: none;
  }
}
html body#portable-power-guide section.solution-section .basic-title {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.solution-section .basic-title {
    padding-top: 0;
  }
}
html body#portable-power-guide section.introduction .checklist li {
  letter-spacing: 0.04em;
  padding-left: 2.2rem;
  text-indent: -2.2rem;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.introduction .checklist li {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.introduction .checklist li {
    font-size: calc(1.76rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.introduction .checklist li {
    font-size: calc(1.72rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.introduction .checklist li {
    font-size: calc(1.68rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.introduction .checklist li {
    font-size: calc(1.64rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.introduction .checklist li {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.introduction .checklist li::before {
  content: "";
  background-image: url(../../images/portable-power-guide/icon-check.svg);
  background-size: contain;
  display: inline-block;
  width: 17.4px;
  height: 13px;
  margin-right: 0.5rem;
}
html body#portable-power-guide section.introduction .spoken {
  color: #0091DB;
  font-weight: 500;
  line-height: 1.75;
  padding-top: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.introduction .spoken {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.introduction .spoken {
    font-size: calc(2.22rem + (1vw - 0.992rem) * (0.8695652174));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.introduction .spoken {
    font-size: calc(2.04rem + (1vw - 0.768rem) * (0.8071748879));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.introduction .spoken {
    font-size: calc(1.86rem + (1vw - 0.576rem) * (0.942408377));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.introduction .spoken {
    font-size: calc(1.68rem + (1vw - 0.421rem) * (1.1688311688));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.introduction .spoken {
    font-size: calc(1.5rem + (1vw - 0.32rem) * (1.8));
  }
}
html body#portable-power-guide section.introduction .toc {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 4rem 5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.introduction .toc {
    padding: 2.5rem 2rem;
  }
}
html body#portable-power-guide section.introduction .toc .toc-title {
  font-weight: 500;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.introduction .toc .toc-title {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.introduction .toc .toc-title {
    font-size: calc(2.2rem + (1vw - 0.992rem) * (0.4830917874));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.introduction .toc .toc-title {
    font-size: calc(2.1rem + (1vw - 0.768rem) * (0.4484304933));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.introduction .toc .toc-title {
    font-size: calc(2rem + (1vw - 0.576rem) * (0.5235602094));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.introduction .toc .toc-title {
    font-size: calc(1.9rem + (1vw - 0.421rem) * (0.6493506494));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.introduction .toc .toc-title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (1));
  }
}
html body#portable-power-guide section.introduction .toc .toc-link {
  display: block;
  letter-spacing: 0.04em;
  border-bottom: 1px solid;
  padding: 1rem 0;
}
html body#portable-power-guide section.introduction .basic-title {
  margin-bottom: 0;
}
html body#portable-power-guide section.step .step__heading {
  padding: 5rem 0 4rem;
  position: relative;
}
@media screen and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__heading {
    padding: 5rem 0 3rem;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__heading {
    padding: 3rem 0 1rem;
  }
}
html body#portable-power-guide section.step .step__heading .step__title {
  text-align: center;
  font-weight: 600;
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__heading .step__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__heading .step__title {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__heading .step__title {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__heading .step__title {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__heading .step__title {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__heading .step__title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.step .step__heading .step__border {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  position: absolute;
  bottom: -3rem;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__heading .step__border {
    bottom: -4rem;
  }
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section.step .step__heading .step__border {
    bottom: -3.5rem;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__heading .step__border {
    bottom: -2.5rem;
    gap: 0 0.5rem;
  }
}
html body#portable-power-guide section.step .step__heading .step__border .step__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #0091DB;
  border-radius: 50%;
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num {
    width: 60px;
    height: 60px;
    margin-top: -2rem;
  }
}
html body#portable-power-guide section.step .step__heading .step__border .step__num p {
  text-align: center;
}
html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__label {
  line-height: 1.5;
  letter-spacing: 0.72px;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__label {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__label {
    font-size: calc(1.88rem + (1vw - 0.992rem) * (0.5797101449));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__label {
    font-size: calc(1.76rem + (1vw - 0.768rem) * (0.5381165919));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__label {
    font-size: calc(1.64rem + (1vw - 0.576rem) * (0.6282722513));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__label {
    font-size: calc(1.52rem + (1vw - 0.421rem) * (0.7792207792));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__label {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (1.2));
  }
}
html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__number {
  line-height: 1;
  letter-spacing: 1.32px;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__number {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__number {
    font-size: calc(2.6rem + (1vw - 0.992rem) * (0.9661835749));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__number {
    font-size: calc(2.4rem + (1vw - 0.768rem) * (0.8968609865));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__number {
    font-size: calc(2.2rem + (1vw - 0.576rem) * (1.0471204188));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__number {
    font-size: calc(2rem + (1vw - 0.421rem) * (1.2987012987));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__num p.step__number {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (2));
  }
}
html body#portable-power-guide section.step .step__heading .step__border .step__line {
  width: 100%;
  height: 1px;
  border-bottom: 2px dotted #0091DB;
  margin-top: -1px;
  flex: 1;
}
html body#portable-power-guide section.step .step__heading .step__border .step__icon {
  max-width: 100px;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__icon {
    max-width: 90px;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__heading .step__border .step__icon {
    max-width: 70px;
    margin-top: -3rem;
  }
}
html body#portable-power-guide section.step .step__heading + .step__description-box {
  margin-top: -1rem;
}
html body#portable-power-guide section.step .bg-color-r {
  display: flex;
  justify-content: center;
  background-color: #F7F7F7;
  padding: 2rem 1rem;
  border-radius: 16px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section.step .bg-color-r {
    display: block;
  }
}
html body#portable-power-guide section.step .step__description-box h3 {
  padding: 0 10rem 1rem;
  font-weight: 700;
  color: #0091DB;
  font-size: 1.7rem;
}
html body#portable-power-guide section.step .step__description-box .step__description {
  margin-top: 0;
}
html body#portable-power-guide section.step .step__description {
  letter-spacing: 0.04em;
  margin-top: -1rem;
  margin-bottom: 3rem;
  padding: 0 10rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__description {
    margin-top: 0;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__description {
    padding: 4rem 0 0;
  }
}
html body#portable-power-guide section.step .step__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 4rem;
  margin-bottom: 3rem;
  border-bottom: 1px dotted #0091DB;
}
html body#portable-power-guide section.step .step__gallery .step__item {
  flex-basis: 32%;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__gallery .step__item {
    flex-basis: 48%;
  }
}
html body#portable-power-guide section.step .step__gallery .step__item:nth-child(n+4) {
  margin-top: 2rem;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__gallery .step__item:nth-child(n+3) {
    margin-top: 2rem;
  }
}
html body#portable-power-guide section.step .step__gallery .step__item img {
  width: 100%;
  max-width: 372px;
}
html body#portable-power-guide section.step .step__gallery .step__item .step__label {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
  padding-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__gallery .step__item .step__label {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__gallery .step__item .step__label {
    font-size: calc(1.38rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__gallery .step__item .step__label {
    font-size: calc(1.36rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__gallery .step__item .step__label {
    font-size: calc(1.34rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__gallery .step__item .step__label {
    font-size: calc(1.32rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__gallery .step__item .step__label {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-title {
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__formula .step__formula-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__formula .step__formula-title {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__formula .step__formula-title {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__formula .step__formula-title {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-title {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__formula .step__formula-title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-box {
  margin: 2rem 0;
  display: flex;
  align-items: center;
}
html body#portable-power-guide section.step .step__formula .step__formula-box p {
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.222;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p {
    font-size: calc(1.52rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p {
    font-size: calc(1.44rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p {
    font-size: calc(1.36rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p {
    font-size: calc(1.28rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.8));
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-equal {
  padding-right: 1rem;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-equal {
    padding-right: 0;
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-sign {
  padding: 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-sign {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-sign {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-sign {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-sign {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-sign {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-sign {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-sign {
    padding: 0;
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img {
  color: #0091DB;
  position: relative;
}
html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img::before {
    left: 0;
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img.step__formula--bolt {
  padding-left: 51px;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img.step__formula--bolt {
    padding-left: 2rem;
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img.step__formula--bolt::before {
  background-image: url(../../images/portable-power-guide/icon-bolt.svg);
  width: 31px;
  height: 50px;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img.step__formula--bolt::before {
    width: 15px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img.step__formula--time {
  padding-left: 74px;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img.step__formula--time {
    padding-left: 2rem;
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img.step__formula--time::before {
  background-image: url(../../images/portable-power-guide/icon-time.svg);
  width: 54px;
  height: 54px;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-img.step__formula--time::before {
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-item {
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-item span {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-item span {
    font-size: calc(2.28rem + (1vw - 0.992rem) * (0.5797101449));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-item span {
    font-size: calc(2.16rem + (1vw - 0.768rem) * (0.5381165919));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-item span {
    font-size: calc(2.04rem + (1vw - 0.576rem) * (0.6282722513));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-item span {
    font-size: calc(1.92rem + (1vw - 0.421rem) * (0.7792207792));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__formula .step__formula-box p.step__formula-item span {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (1.2));
  }
}
html body#portable-power-guide section.step .step__formula .step__formula-note {
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__formula .step__formula-note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__formula .step__formula-note {
    font-size: calc(1.18rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__formula .step__formula-note {
    font-size: calc(1.16rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__formula .step__formula-note {
    font-size: calc(1.14rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__formula .step__formula-note {
    font-size: calc(1.12rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__formula .step__formula-note {
    font-size: calc(1.1rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section.step .step__blocks {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__blocks {
    display: block;
  }
}
html body#portable-power-guide section.step .step__blocks .step__block {
  flex-basis: 47.5%;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__blocks .step__block + .step__block .step__block-title {
    margin-top: 2rem;
  }
}
html body#portable-power-guide section.step .step__blocks .step__block .step__block-title {
  font-weight: 500;
  border-bottom: 1px solid #0091DB;
  padding-bottom: 1rem;
  margin: 0 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.step .step__blocks .step__block .step__block-title sup {
  font-size: 60%;
}
html body#portable-power-guide section.step .step__blocks .step__block .step__block-title.step__block-title-recommend span {
  color: #ffffff;
  background-color: #0091DB;
  border-radius: 999px;
  letter-spacing: 0;
  padding: 0.5rem 1.5rem;
  line-height: 1;
  margin-left: 1rem;
  vertical-align: middle;
  display: inline-block;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title.step__block-title-recommend span {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title.step__block-title-recommend span {
    font-size: calc(1.28rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title.step__block-title-recommend span {
    font-size: calc(1.26rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title.step__block-title-recommend span {
    font-size: calc(1.24rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title.step__block-title-recommend span {
    font-size: calc(1.22rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-title.step__block-title-recommend span {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section.step .step__blocks .step__block .step__block-title.step__block-title-recommend::after {
  content: url(../../images/portable-power-guide/icon-star.svg);
  vertical-align: middle;
  margin-left: 1rem;
}
html body#portable-power-guide section.step .step__blocks .step__block .step__block-subtitle {
  color: #0091DB;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 1.5rem 0 0.5rem;
}
html body#portable-power-guide section.step .step__blocks .step__block .step__block-layout {
  display: flex;
  justify-content: space-between;
}
html body#portable-power-guide section.step .step__blocks .step__block .step__block-text {
  line-height: 1.875;
  letter-spacing: 0.04em;
}
html body#portable-power-guide section.step .step__blocks .step__block .step__block-bluetxt {
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.875;
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-bluetxt {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-bluetxt {
    font-size: calc(1.76rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-bluetxt {
    font-size: calc(1.72rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-bluetxt {
    font-size: calc(1.68rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-bluetxt {
    font-size: calc(1.64rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__blocks .step__block .step__block-bluetxt {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.step .step__list li {
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__list li {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__list li {
    font-size: calc(1.28rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__list li {
    font-size: calc(1.26rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__list li {
    font-size: calc(1.24rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__list li {
    font-size: calc(1.22rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__list li {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section.step .step__list li::before {
  content: "・";
  color: #0091DB;
}
html body#portable-power-guide section.step .step__dl {
  display: flex;
}
html body#portable-power-guide section.step .step__dl + .step__dl {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 0.5px solid #333333;
}
html body#portable-power-guide section.step .step__dl.step__dl--third {
  min-height: 65px;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__dl.step__dl--third {
    min-height: auto;
  }
}
html body#portable-power-guide section.step .step__dl dt {
  font-weight: 600;
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__dl dt {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__dl dt {
    font-size: calc(1.28rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__dl dt {
    font-size: calc(1.26rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__dl dt {
    font-size: calc(1.24rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__dl dt {
    font-size: calc(1.22rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__dl dt {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section.step .step__dl dd {
  padding-left: 1rem;
  box-sizing: border-box;
  flex: 1;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__dl dd {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__dl dd {
    font-size: calc(1.28rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__dl dd {
    font-size: calc(1.26rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__dl dd {
    font-size: calc(1.24rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__dl dd {
    font-size: calc(1.22rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__dl dd {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section.step .step__table-title {
  text-align: center;
  border-top: 1px solid;
  border-bottom: 1px solid;
  font-weight: 500;
  margin: 3rem 0;
  padding: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__table-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__table-title {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__table-title {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__table-title {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__table-title {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__table-title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.step .step__table {
  width: 100%;
  border: 2px solid #0091DB;
}
html body#portable-power-guide section.step .step__table th, html body#portable-power-guide section.step .step__table td {
  border: 1px solid #0091DB;
  vertical-align: middle;
  padding: 0.5rem;
}
html body#portable-power-guide section.step .step__table th {
  color: #0091DB;
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__table th {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__table th {
    font-size: calc(1.68rem + (1vw - 0.992rem) * (0.5797101449));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__table th {
    font-size: calc(1.56rem + (1vw - 0.768rem) * (0.5381165919));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__table th {
    font-size: calc(1.44rem + (1vw - 0.576rem) * (0.6282722513));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__table th {
    font-size: calc(1.32rem + (1vw - 0.421rem) * (0.7792207792));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__table th {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (1.2));
  }
}
html body#portable-power-guide section.step .step__table thead tr th {
  text-align: center;
  width: 23.3333333333%;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__table thead tr th {
    width: auto;
  }
}
html body#portable-power-guide section.step .step__table thead tr th:first-child {
  text-align: left;
  width: 30%;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__table thead tr th:first-child {
    width: auto;
  }
}
html body#portable-power-guide section.step .step__table tbody th {
  text-align: left;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}
html body#portable-power-guide section.step .step__table tbody td {
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__table tbody td {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__table tbody td {
    font-size: calc(1.32rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__table tbody td {
    font-size: calc(1.24rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__table tbody td {
    font-size: calc(1.16rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__table tbody td {
    font-size: calc(1.08rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__table tbody td {
    font-size: calc(1rem + (1vw - 0.32rem) * (0.8));
  }
}
html body#portable-power-guide section.step .step__question {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section.step .step__question {
    display: block;
  }
}
html body#portable-power-guide section.step .step__question .step__question-title {
  font-weight: 500;
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__question .step__question-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__question .step__question-title {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__question .step__question-title {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__question .step__question-title {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__question .step__question-title {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__question .step__question-title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.step .step__question .step__question-text {
  font-weight: 700;
  letter-spacing: 0;
  padding-left: 5rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__question .step__question-text {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__question .step__question-text {
    font-size: calc(1.56rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__question .step__question-text {
    font-size: calc(1.52rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__question .step__question-text {
    font-size: calc(1.48rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__question .step__question-text {
    font-size: calc(1.44rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__question .step__question-text {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.4));
  }
}
@media screen and (max-width: 991px) {
  html body#portable-power-guide section.step .step__question .step__question-text {
    padding: 1rem 0 0 0;
  }
}
html body#portable-power-guide section.step .step__po-power {
  display: flex;
  justify-content: space-evenly;
  margin-top: 2.5rem;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__po-power {
    display: block;
    text-align: center;
  }
}
html body#portable-power-guide section.step .step__po-power .step__po-power-item:last-child {
  margin-left: 1rem;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item:last-child {
    margin: 2rem 0 0 0;
  }
}
html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-name {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.222;
  margin-top: 3rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-name {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-name {
    font-size: calc(1.76rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-name {
    font-size: calc(1.72rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-name {
    font-size: calc(1.68rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-name {
    font-size: calc(1.64rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-name {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-name {
    margin-top: 1rem;
  }
}
html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-note {
  line-height: 2.143;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-note {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-note {
    font-size: calc(1.38rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-note {
    font-size: calc(1.36rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-note {
    font-size: calc(1.34rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-note {
    font-size: calc(1.32rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-note {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0.2));
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-note {
    margin-bottom: 1rem;
  }
}
html body#portable-power-guide section.step .step__po-power .step__po-power-item .step__po-power-buttons {
  display: flex;
  justify-content: center;
}
html body#portable-power-guide section.step .step__features {
  display: flex;
  flex-wrap: wrap;
}
html body#portable-power-guide section.step .step__features .step__feature {
  text-align: center;
  flex-basis: 33.3333333333%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__features .step__feature {
    flex-basis: 50%;
  }
}
html body#portable-power-guide section.step .step__features .step__feature img {
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  background-color: #F4F4F4;
  border-radius: 20px;
}
html body#portable-power-guide section.step .step__features .step__feature .step__feature-title {
  font-weight: 500;
  margin: 1rem 0;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__features .step__feature .step__feature-title {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__features .step__feature .step__feature-title {
    font-size: calc(1.76rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__features .step__feature .step__feature-title {
    font-size: calc(1.72rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__features .step__feature .step__feature-title {
    font-size: calc(1.68rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__features .step__feature .step__feature-title {
    font-size: calc(1.64rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__features .step__feature .step__feature-title {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.step .step__models {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__models {
    display: block;
  }
}
html body#portable-power-guide section.step .step__models .step__model {
  background-color: #E3F5FF;
  padding: 2rem;
  box-sizing: border-box;
  flex-basis: 32.6666666667%;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__models .step__model + .step__model {
    margin-top: 1rem;
  }
}
html body#portable-power-guide section.step .step__models .step__model .step__model-title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 1rem;
  border-radius: 20px;
  color: #0091DB;
  background-color: #ffffff;
  padding: 0.5rem 0;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-title {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-title {
    font-size: calc(1.56rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-title {
    font-size: calc(1.52rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-title {
    font-size: calc(1.48rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-title {
    font-size: calc(1.44rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-title {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.step .step__models .step__model .step__model-price {
  text-align: center;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #333333;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-price {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-price {
    font-size: calc(1.56rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-price {
    font-size: calc(1.52rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-price {
    font-size: calc(1.48rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-price {
    font-size: calc(1.44rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__models .step__model .step__model-price {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.step .step__small {
  font-weight: 300;
  display: flex;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step .step__small {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step .step__small {
    font-size: calc(1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step .step__small {
    font-size: calc(1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step .step__small {
    font-size: calc(1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step .step__small {
    font-size: calc(1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step .step__small {
    font-size: calc(1rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide section.step .step__small span {
  display: block;
}
html body#portable-power-guide section.step .step__small.step__small-top {
  margin-top: 3rem;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step .step__small {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step1 .step__description-box h3 {
    padding: 4rem 0 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step1 .step__description-box .step__description {
    padding-top: 0;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step1 .step__gallery {
    margin-bottom: 0;
  }
}
html body#portable-power-guide section.step5 .step5__blocks {
  margin-bottom: 1rem;
}
html body#portable-power-guide section.step5 .step5__blocks .step__list {
  margin-bottom: 1rem;
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step5 .step5__blocks .step__list {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step5 .step5__blocks .step__block--second {
    margin-bottom: 1rem;
  }
}
html body#portable-power-guide section.step5 .step5__blocks .step__block-box {
  background-color: #F5F5F5;
  border-radius: 20px;
  padding: 1rem 2rem;
  box-sizing: border-box;
  display: flex;
  gap: 0 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.step5 .step5__blocks .step__block-box {
    padding: 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.step5 .step5__blocks .step__block-box {
    margin-bottom: 2rem;
  }
}
html body#portable-power-guide section.step5 .step5__blocks .step__block-box img {
  max-width: 30px;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.step5 .step5__blocks .step__block-box p {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.step5 .step5__blocks .step__block-box p {
    font-size: calc(1.28rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.step5 .step5__blocks .step__block-box p {
    font-size: calc(1.26rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.step5 .step5__blocks .step__block-box p {
    font-size: calc(1.24rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.step5 .step5__blocks .step__block-box p {
    font-size: calc(1.22rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.step5 .step5__blocks .step__block-box p {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section.solution__product {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.solution__product {
    margin-bottom: 3rem;
  }
}
html body#portable-power-guide section.solution__product .wrapper {
  padding: 0;
}
html body#portable-power-guide section.solution__product .solution__product--title {
  text-align: center;
  font-weight: bold;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.solution__product .solution__product--title {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.solution__product .solution__product--title {
    font-size: calc(2.64rem + (1vw - 0.992rem) * (0.7729468599));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.solution__product .solution__product--title {
    font-size: calc(2.48rem + (1vw - 0.768rem) * (0.7174887892));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.solution__product .solution__product--title {
    font-size: calc(2.32rem + (1vw - 0.576rem) * (0.8376963351));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.solution__product .solution__product--title {
    font-size: calc(2.16rem + (1vw - 0.421rem) * (1.038961039));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.solution__product .solution__product--title {
    font-size: calc(2rem + (1vw - 0.32rem) * (1.6));
  }
}
html body#portable-power-guide section.cta {
  padding: 5rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.cta {
    padding: 3rem 0;
  }
}
html body#portable-power-guide 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#portable-power-guide section.cta .cta__inner {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.cta .cta__inner {
    display: block;
  }
}
html body#portable-power-guide section.cta .cta__inner .cta__image {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.cta .cta__inner .cta__image {
    width: 100%;
  }
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__image .product-card__badge span {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__image .product-card__badge span::after {
    font-size: calc(0.8rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide section.cta .cta__inner .cta__image img {
  padding-right: 1rem;
}
html body#portable-power-guide section.cta .cta__inner .cta__info {
  width: 50%;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.cta .cta__inner .cta__info {
    width: 100%;
  }
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__info .cta__title {
    margin: 2rem 0 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__info .cta__title span {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section.cta .cta__inner .cta__info .cta__normal_price {
  letter-spacing: 0;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__info .cta__normal_price {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__info .cta__normal_price span {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__info .cta__normal_price span.tax::after {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__info .cta__price {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide section.cta .cta__inner .cta__info .cta__price.cta__price_single {
  margin-top: 25px;
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__info .cta__price span {
    font-size: calc(2.4rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#portable-power-guide section.cta .cta__inner .cta__info .cta__price span.yen::before {
  content: "¥";
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__info .cta__price span.yen::before {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide section.cta .cta__inner .cta__info .cta__price span.tax::after {
  content: "(税込)";
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__inner .cta__info .cta__price span.tax::after {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#portable-power-guide 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#portable-power-guide section.cta .cta__cart-list {
    flex-direction: column;
    gap: 1rem 0;
  }
}
html body#portable-power-guide section.cta .cta__cart-list:first-of-type {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.cta .cta__cart-list:first-of-type {
    margin-top: 2rem;
  }
}
html body#portable-power-guide section.cta .cta__cart-list .cta__cart-item {
  flex: 0 0 calc((100% - 25px) / 2);
}
@media screen and (max-width: 575px) {
  html body#portable-power-guide section.cta .cta__cart-list .cta__cart-item {
    flex: 1;
  }
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__cart-list .cta__cart-item .cta__cart-btn {
    font-size: calc(1.5rem + (1vw - 0.32rem) * (0));
  }
}
html body#portable-power-guide section.cta .cta__cart-list .cta__cart-item .cta__cart-btn:hover {
  background-color: #FFA200;
  color: #ffffff;
}
html body#portable-power-guide section.cta .cta__cart-list .cta__cart-item .cta__cart-btn:hover::before {
  background-image: url(../../images/products/icon-cart.svg);
}
html body#portable-power-guide 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#portable-power-guide section.cta .cta__cart-list .cta__cart-item .cta__cart-btn-iconless::before {
  content: "";
  background-image: none;
  width: 0;
}
html body#portable-power-guide section.cta .cta__cart-list.cta__cart-list-warranty {
  gap: 20px 10px;
}
@media screen and (max-width: 767px) {
  html body#portable-power-guide section.cta .cta__cart-list.cta__cart-list-warranty {
    gap: 15px 10px;
  }
}
html body#portable-power-guide section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item {
  position: relative;
}
html body#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide 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#portable-power-guide section.cta .cta__cart-list.cta__cart-list-warranty .cta__cart-item:first-child::after {
    bottom: -10px;
  }
}
html body#portable-power-guide section.battery {
  margin-top: 3rem;
  background-color: #F7F5F5;
  padding: 3rem 0;
}
html body#portable-power-guide section.battery .battery-title {
  text-align: center;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body#portable-power-guide section.battery .battery-title {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#portable-power-guide section.battery .battery-title {
    font-size: calc(2.2rem + (1vw - 0.992rem) * (0.4830917874));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#portable-power-guide section.battery .battery-title {
    font-size: calc(2.1rem + (1vw - 0.768rem) * (0.4484304933));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#portable-power-guide section.battery .battery-title {
    font-size: calc(2rem + (1vw - 0.576rem) * (0.5235602094));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#portable-power-guide section.battery .battery-title {
    font-size: calc(1.9rem + (1vw - 0.421rem) * (0.6493506494));
  }
}
@media only screen and (max-width: 420px) {
  html body#portable-power-guide section.battery .battery-title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (1));
  }
}
html body#portable-power-guide section.battery .battery-picture {
  max-width: 350px;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
}
html body#portable-power-guide section.battery .battery-picture img {
  max-width: 300px;
}
html body#portable-power-guide section.overview .po-overview {
  padding: 0 1.5rem 2rem;
}
html body#portable-power-guide section.overview .po-overview h2 {
  padding: 2rem 0;
}

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

/*# sourceMappingURL=portable-power-guide.css.map */
