@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#all-in-one-power section {
  /*▼ 共通 ------------------------------------------*/
  /*▲ 共通 ------------------------------------------*/
}
html body#all-in-one-power section .basic-title {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section .basic-title {
    padding-top: 3rem;
  }
}
html body#all-in-one-power section .base__block {
  margin-top: 4rem;
}
html body#all-in-one-power section .base__block .base__heading {
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section .base__block .base__heading {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section .base__block .base__heading {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section .base__block .base__heading {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#all-in-one-power section .base__block .base__heading.base__heading--blue {
  text-align: center;
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section .base__block .base__heading.base__heading--blue {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section .base__block .base__heading.base__heading--blue {
    margin-bottom: 1rem;
  }
}
html body#all-in-one-power section .base__block .base__heading.base__heading--blue span {
  display: block;
  margin-top: 1rem;
}
html body#all-in-one-power section .base__block .base__layout {
  display: flex;
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section .base__block .base__layout {
    display: block;
  }
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
html body#all-in-one-power section .base__block .base__layout.base__layout--reverse:nth-child(even) {
  flex-direction: row-reverse;
}
html body#all-in-one-power 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#all-in-one-power section .base__block .base__layout.base__layout--reverse:nth-child(even) .base__content {
    padding-right: 0;
  }
}
html body#all-in-one-power section .base__block .base__layout .base__image {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section .base__block .base__layout .base__image {
    margin-bottom: 0;
    text-align: center;
  }
}
html body#all-in-one-power section .base__block .base__layout .base__image img {
  width: 100%;
  max-width: 375px;
  min-width: 375px;
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section .base__block .base__layout .base__image img {
    min-width: 400px;
  }
}
@media screen and (max-width: 575px) {
  html body#all-in-one-power section .base__block .base__layout .base__image img {
    min-width: 100%;
  }
}
html body#all-in-one-power 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#all-in-one-power section .base__block .base__layout .base__image.base__image--table table {
    min-width: 400px;
  }
}
html body#all-in-one-power section .base__block .base__layout .base__image.base__image--table table tr th, html body#all-in-one-power 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#all-in-one-power section .base__block .base__layout .base__image.base__image--table table tr th {
  color: #0091DB;
  font-weight: 500;
  letter-spacing: 0;
}
html body#all-in-one-power section .base__block .base__layout .base__image.base__image--table table thead th {
  padding: 1rem;
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section .base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section .base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section .base__block .base__layout .base__image .base__sm {
    text-align: left;
  }
}
html body#all-in-one-power section .base__block .base__layout .base__image .base__sm:first-of-type {
  margin-top: 1rem;
}
html body#all-in-one-power section .base__block .base__layout .base__content {
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section .base__block .base__layout .base__content {
    padding-left: 0;
    padding-top: 2rem;
  }
}
html body#all-in-one-power section .base__block .base__layout .base__content .base__content--lead {
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#all-in-one-power section .base__block .base__layout .base__content p {
  letter-spacing: 0.04em;
  line-height: 1.7;
}
html body#all-in-one-power section .base__block .base__layout .base__content p.base__sm {
  display: flex;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section .base__block .base__layout .base__content p.base__sm {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power section .base__block .base__layout .base__content p.base__sm {
    font-size: calc(1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#all-in-one-power section .base__block .base__layout .base__content p.base__sm {
    font-size: calc(1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#all-in-one-power section .base__block .base__layout .base__content p.base__sm {
    font-size: calc(1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#all-in-one-power section .base__block .base__layout .base__content p.base__sm {
    font-size: calc(1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section .base__block .base__layout .base__content p.base__sm {
    font-size: calc(1rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section .base__block .base__layout .base__content p.base__sm {
    text-align: left;
  }
}
html body#all-in-one-power section .base__block .base__layout .base__content p.base__sm span {
  display: block;
}
html body#all-in-one-power section .base__block .base__layout .base__content p.base__sm:first-of-type {
  margin-top: 1rem;
}
html body#all-in-one-power section .base__block .base__layout .base__content .icon-list {
  display: flex;
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section .base__block .base__layout .base__content .icon-list {
    justify-content: center;
  }
}
html body#all-in-one-power section .base__block .base__layout .base__content .icon-list .icon-item {
  text-align: center;
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#all-in-one-power section .base__block .base__layout .base__content--linkbox {
  margin-left: auto;
  margin-top: 0.5rem;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section .base__block .base__layout .base__content--linkbox {
    margin: 0.5rem auto 2.5rem;
  }
}
html body#all-in-one-power section .base__block .base__layout .base__content--linkbox a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem 0;
  border-radius: 10px;
  background-color: #0091DB;
  color: #ffffff;
}
html body#all-in-one-power section .more-btn {
  flex-basis: auto;
  max-width: 500px;
  width: 100%;
  margin: 2rem auto 0;
}
html body#all-in-one-power section .more-btn .more-btn__link::after {
  width: 24px;
  height: 15px;
}
html body#all-in-one-power section .more-btn .more-btn__readmore {
  min-width: 60px;
  min-height: 60px;
  margin-right: 10px;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section .more-btn .more-btn__readmore {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power section .more-btn .more-btn__readmore {
    font-size: calc(1.4rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#all-in-one-power section .more-btn .more-btn__readmore {
    font-size: calc(1.4rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#all-in-one-power section .more-btn .more-btn__readmore {
    font-size: calc(1.4rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#all-in-one-power section .more-btn .more-btn__readmore {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section .more-btn .more-btn__readmore {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section .more-btn .more-btn__readmore {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:first-child {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:first-child {
    font-size: calc(2.32rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:first-child {
    font-size: calc(2.24rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:first-child {
    font-size: calc(2.16rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:first-child {
    font-size: calc(2.08rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:first-child {
    font-size: calc(2rem + (1vw - 0.32rem) * (0.8));
  }
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:last-child {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:last-child {
    font-size: calc(1.28rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:last-child {
    font-size: calc(1.26rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:last-child {
    font-size: calc(1.24rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:last-child {
    font-size: calc(1.22rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section .more-btn .more-btn__title span:last-child {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section.overview-portable-power .name .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem 0;
  }
}
html body#all-in-one-power section.overview-portable-power .name .flex a {
  color: #ffffff;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section.overview-portable-power .name .flex a {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.overview-portable-power .name .flex a {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section.overview-portable-power .name .flex a.product__button-look {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section.overview-portable-power .name .flex a {
    width: 160px;
  }
}
html body#all-in-one-power 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#all-in-one-power section .slash-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section .slash-title {
    font-size: calc(1.76rem + (1vw - 0.421rem) * (0.3896103896));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section .slash-title {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.6));
  }
}
html body#all-in-one-power section .slash-title::before, html body#all-in-one-power 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#all-in-one-power section .slash-title::before, html body#all-in-one-power section .slash-title::after {
    height: 21px;
  }
}
html body#all-in-one-power section .slash-title::before {
  transform: rotate(-35deg);
  margin-right: 3rem;
}
html body#all-in-one-power section .slash-title::after {
  transform: rotate(35deg);
  margin-left: 3rem;
}
html body#all-in-one-power section.mv {
  background-color: #CBEEFF;
  height: 400px;
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section.mv {
    height: auto;
  }
}
html body#all-in-one-power section.mv .wrapper {
  height: 100%;
  padding: 0;
}
html body#all-in-one-power section.mv .mv__inner {
  display: flex;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section.mv .mv__inner {
    display: block;
  }
}
html body#all-in-one-power section.mv .mv__inner .mv__copy {
  max-width: 415px;
  width: 100%;
  height: 100%;
  background-color: #0091DB;
  padding: 6rem 7rem 10rem 5rem;
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section.mv .mv__inner .mv__copy {
    max-width: 100%;
    padding: 4rem 8rem 6rem 4rem;
  }
}
@media screen and (max-width: 575px) {
  html body#all-in-one-power section.mv .mv__inner .mv__copy {
    padding: 4rem 8rem 6rem 2rem;
  }
}
html body#all-in-one-power 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 0 0 2rem;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section.mv .mv__inner .mv__copy h1 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.mv .mv__inner .mv__copy h1 {
    padding: 2rem 0 0 2rem;
  }
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#all-in-one-power section.mv .mv__inner .mv__bg {
  background-image: url(../../images/all-in-one-power/one-power-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#all-in-one-power section.mv .mv__inner .mv__bg {
    height: 300px;
    max-width: 100%;
  }
}
html body#all-in-one-power section.mv .mv__inner .mv__image {
  margin: 1rem auto;
  width: 90%;
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section.mv .mv__inner .mv__image {
    width: 100%;
  }
}
html body#all-in-one-power 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#all-in-one-power section.page-links .page-links__list {
    gap: 0;
  }
}
html body#all-in-one-power section.page-links .page-links__list .page-links__item {
  flex-basis: 33.3333333333%;
  height: 80px;
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section.page-links .page-links__list .page-links__item {
    flex-basis: 32.6666666667%;
  }
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section.page-links .page-links__list .page-links__item {
    margin-bottom: 1rem;
  }
  html body#all-in-one-power 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#all-in-one-power section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  html body#all-in-one-power section.page-links .page-links__list .page-links__item {
    flex-basis: 100%;
    height: auto;
  }
}
html body#all-in-one-power section.page-links .page-links__list .page-links__item .page-links__link {
  margin-right: 1rem;
}
@media screen and (max-width: 575px) {
  html body#all-in-one-power section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 0;
  }
}
html body#all-in-one-power section.page-links .page-links__list .page-links__item:nth-of-type(3) .page-links__link {
  margin-right: 0;
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#all-in-one-power 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#all-in-one-power section.page-links .page-links__list .page-links__item .page-links__link {
    padding: 1rem 0.5rem;
    justify-content: left;
  }
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.page-links .page-links__list .page-links__item .page-links__link br {
    display: none;
  }
}
html body#all-in-one-power section.base__block {
  margin-top: 4rem;
}
html body#all-in-one-power section.base__block .base__heading {
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section.base__block .base__heading {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.base__block .base__heading {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section.base__block .base__heading {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#all-in-one-power section.base__block .base__layout {
  display: flex;
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section.base__block .base__layout {
    display: block;
  }
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
html body#all-in-one-power section.base__block .base__layout.base__layout--reverse:nth-child(even) {
  flex-direction: row-reverse;
}
html body#all-in-one-power 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#all-in-one-power section.base__block .base__layout.base__layout--reverse:nth-child(even) .base__content {
    padding-right: 0;
  }
}
html body#all-in-one-power section.base__block .base__layout .base__image {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section.base__block .base__layout .base__image {
    margin-bottom: 0;
    text-align: center;
  }
}
html body#all-in-one-power section.base__block .base__layout .base__image img {
  width: 100%;
  max-width: 375px;
  min-width: 375px;
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section.base__block .base__layout .base__image img {
    min-width: 400px;
  }
}
@media screen and (max-width: 575px) {
  html body#all-in-one-power section.base__block .base__layout .base__image img {
    min-width: 100%;
  }
}
html body#all-in-one-power 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#all-in-one-power section.base__block .base__layout .base__image.base__image--table table {
    min-width: 400px;
  }
}
html body#all-in-one-power section.base__block .base__layout .base__image.base__image--table table tr th, html body#all-in-one-power 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#all-in-one-power section.base__block .base__layout .base__image.base__image--table table tr th {
  color: #0091DB;
  font-weight: 500;
  letter-spacing: 0;
}
html body#all-in-one-power section.base__block .base__layout .base__image.base__image--table table thead th {
  padding: 1rem;
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#all-in-one-power section.base__block .base__layout .base__content {
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section.base__block .base__layout .base__content {
    padding-left: 0;
    padding-top: 2rem;
  }
}
html body#all-in-one-power section.base__block .base__layout .base__content .base__content--lead {
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#all-in-one-power section.base__block .base__layout .base__content p {
  letter-spacing: 0.04em;
  line-height: 1.7;
}
html body#all-in-one-power section.base__block .base__layout .base__content .icon-list {
  display: flex;
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section.base__block .base__layout .base__content .icon-list {
    justify-content: center;
  }
}
html body#all-in-one-power section.base__block .base__layout .base__content .icon-list .icon-item {
  text-align: center;
}
html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#all-in-one-power section.scenes .basic-title {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section.scenes .basic-title {
    padding-top: 0;
  }
}
html body#all-in-one-power section.scenes .base__block .base__layout {
  margin-bottom: 5rem;
}
html body#all-in-one-power section.battery {
  margin-top: 3rem;
  background-color: #F7F5F5;
  padding: 3rem 0;
}
html body#all-in-one-power section.battery .battery-title {
  text-align: center;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section.battery .battery-title {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power 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#all-in-one-power 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#all-in-one-power 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#all-in-one-power section.battery .battery-title {
    font-size: calc(1.9rem + (1vw - 0.421rem) * (0.6493506494));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section.battery .battery-title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (1));
  }
}
html body#all-in-one-power section.battery .battery-picture {
  max-width: 350px;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
}
html body#all-in-one-power section.battery .battery-picture img {
  max-width: 300px;
}
html body#all-in-one-power section.usage .main-txt {
  letter-spacing: 0.04em;
  line-height: 1.875;
}
html body#all-in-one-power section.usage .usage__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  html body#all-in-one-power section.usage .usage__list {
    justify-content: center;
  }
}
html body#all-in-one-power section.usage .usage__list .icon__item {
  padding-right: 1rem;
}
html body#all-in-one-power section.usage .usage__list .icon__item .icon__item-text {
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  margin: 1rem 0 0;
  line-height: 1.167;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section.usage .usage__list .icon__item .icon__item-text {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power section.usage .usage__list .icon__item .icon__item-text {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#all-in-one-power section.usage .usage__list .icon__item .icon__item-text {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#all-in-one-power section.usage .usage__list .icon__item .icon__item-text {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#all-in-one-power section.usage .usage__list .icon__item .icon__item-text {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section.usage .usage__list .icon__item .icon__item-text {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#all-in-one-power section.usage .usage-table {
  width: 100%;
  border-collapse: collapse;
}
html body#all-in-one-power section.usage .usage-table th, html body#all-in-one-power section.usage .usage-table td {
  border: 1px solid #333333;
}
html body#all-in-one-power section.usage .usage-table .border tr:last-child th, html body#all-in-one-power section.usage .usage-table .border tr:last-child td {
  border-bottom: none;
}
html body#all-in-one-power section.usage .usage-table .border tr th:first-child {
  border-left: none;
}
html body#all-in-one-power section.usage .usage-table .border tr th:last-child {
  border-right: none;
}
html body#all-in-one-power section.usage .usage-table .border tr td:last-child {
  border-right: none;
}
html body#all-in-one-power section.usage .usage-table thead tr th {
  border-top: none;
  padding: 2rem 1rem;
  text-align: center;
  letter-spacing: 0;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section.usage .usage-table thead tr th {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power section.usage .usage-table thead tr th {
    font-size: calc(1.76rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#all-in-one-power section.usage .usage-table thead tr th {
    font-size: calc(1.72rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#all-in-one-power section.usage .usage-table thead tr th {
    font-size: calc(1.68rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#all-in-one-power section.usage .usage-table thead tr th {
    font-size: calc(1.64rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section.usage .usage-table thead tr th {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#all-in-one-power section.usage .usage-table tbody th, html body#all-in-one-power section.usage .usage-table tbody td {
  padding: 1.5rem 1rem;
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 400;
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section.usage .usage-table tbody td {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power section.usage .usage-table tbody td {
    font-size: calc(1.36rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#all-in-one-power section.usage .usage-table tbody td {
    font-size: calc(1.32rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#all-in-one-power section.usage .usage-table tbody td {
    font-size: calc(1.28rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#all-in-one-power section.usage .usage-table tbody td {
    font-size: calc(1.24rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section.usage .usage-table tbody td {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#all-in-one-power section.usage .usage-table tbody .price td {
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section.usage .usage-table tbody .price td {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power section.usage .usage-table tbody .price td {
    font-size: calc(2.32rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#all-in-one-power section.usage .usage-table tbody .price td {
    font-size: calc(2.24rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#all-in-one-power section.usage .usage-table tbody .price td {
    font-size: calc(2.16rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#all-in-one-power section.usage .usage-table tbody .price td {
    font-size: calc(2.08rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section.usage .usage-table tbody .price td {
    font-size: calc(2rem + (1vw - 0.32rem) * (0.8));
  }
}
html body#all-in-one-power section.usage .usage-table tbody .text-left {
  text-align: left;
  display: flex;
  justify-content: center;
}
html body#all-in-one-power section.usage .usage-table tbody .flex {
  display: flex;
  border: none;
  justify-content: center;
}
html body#all-in-one-power section.usage .usage-table tbody .flex span:first-child {
  padding-right: 2rem;
}
html body#all-in-one-power section.usage .usage-table tbody .link td a {
  display: block;
  border-radius: 999px;
  color: #ffffff;
  text-align: center;
  padding: 1rem 2rem;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section.usage .usage-table tbody .link td a {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power section.usage .usage-table tbody .link td a {
    font-size: calc(1.38rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#all-in-one-power section.usage .usage-table tbody .link td a {
    font-size: calc(1.36rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#all-in-one-power section.usage .usage-table tbody .link td a {
    font-size: calc(1.34rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#all-in-one-power section.usage .usage-table tbody .link td a {
    font-size: calc(1.32rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section.usage .usage-table tbody .link td a {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#all-in-one-power section.usage .usage-table tbody .link td a::after {
  content: "＞";
  padding-left: 0.5rem;
}
html body#all-in-one-power section.usage .usage-table tbody .link td a.look {
  background-color: #0091DB;
  margin-right: 1rem;
}
html body#all-in-one-power section.usage .usage-table tbody .link td a.buy {
  background-color: #FFA200;
}
html body#all-in-one-power section.usage .table-description {
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 3rem 0 2rem;
}
@media only screen and (min-width: 1200px) {
  html body#all-in-one-power section.usage .table-description {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#all-in-one-power section.usage .table-description {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#all-in-one-power section.usage .table-description {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#all-in-one-power section.usage .table-description {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#all-in-one-power section.usage .table-description {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#all-in-one-power section.usage .table-description {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#all-in-one-power section.usage .normal-description {
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
  line-height: 1.875;
}
html body#all-in-one-power section.litheli .base__block .base__layout .base__content .base__content--lead {
  letter-spacing: 0;
}
html body#all-in-one-power section.youtube {
  padding: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  html body#all-in-one-power section.youtube {
    padding: 3rem 0;
  }
}
html body#all-in-one-power section.youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 15px;
}

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

/*# sourceMappingURL=all-in-one-power.css.map */
