@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 section {
  /*▼ 共通 ------------------------------------------*/
  /*▲ 共通 ------------------------------------------*/
}
html body section .basic-title {
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  html body section .basic-title {
    padding-top: 3rem;
  }
}
html body section .base__block {
  margin-top: 4rem;
}
html body section .base__block .base__heading {
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body section .base__block .base__heading {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body 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 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 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 section .base__block .base__heading {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body section .base__block .base__heading {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body section .base__block .base__layout {
  display: flex;
}
@media screen and (max-width: 767px) {
  html body section .base__block .base__layout {
    display: block;
  }
}
html body section .base__block .base__layout .base__content p {
  line-height: 1.75;
  padding-bottom: 3rem;
  letter-spacing: -0.01rem;
}
@media only screen and (min-width: 1200px) {
  html body 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 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 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 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 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 section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
html body section .base__block .base__layout .base__content .base__sm {
  display: flex;
}
@media only screen and (min-width: 1200px) {
  html body section .base__block .base__layout .base__content .base__sm {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body section .base__block .base__layout .base__content .base__sm {
    font-size: calc(1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body section .base__block .base__layout .base__content .base__sm {
    font-size: calc(1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body section .base__block .base__layout .base__content .base__sm {
    font-size: calc(1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body section .base__block .base__layout .base__content .base__sm {
    font-size: calc(1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body section .base__block .base__layout .base__content .base__sm {
    font-size: calc(1rem + (1vw - 0.32rem) * (0));
  }
}
html body section .base__block .base__layout .base__content .base__sm span {
  display: block;
}
html body section .base__block .base__layout.base__layout--reverse:nth-child(even) {
  flex-direction: row-reverse;
}
html body 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 section .base__block .base__layout.base__layout--reverse:nth-child(even) .base__content {
    padding-right: 0;
  }
}
html body section .base__block .base__layout .base__image {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  html body section .base__block .base__layout .base__image {
    margin-bottom: 0;
    text-align: center;
  }
}
html body section .base__block .base__layout .base__image img {
  width: 100%;
  max-width: 375px;
  min-width: 375px;
}
@media screen and (max-width: 991px) {
  html body section .base__block .base__layout .base__image img {
    min-width: 400px;
  }
}
@media screen and (max-width: 575px) {
  html body section .base__block .base__layout .base__image img {
    min-width: 100%;
  }
}
html body section .base__block .base__layout .base__content {
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  html body section .base__block .base__layout .base__content {
    padding-left: 0;
    padding-top: 2rem;
  }
}
html body 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 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 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 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 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 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 section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body section .base__block .base__layout .base__content p {
  letter-spacing: 0.04em;
  line-height: 1.7;
}
html body section .base__block .base__layout .base__content .icon-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  html body section .base__block .base__layout .base__content .icon-list {
    justify-content: center;
  }
}
html body section .base__block .base__layout .base__content .icon-list .icon-item {
  flex-basis: 24.75%;
  text-align: center;
}
html body 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 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 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 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 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 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 section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body section .tab__block .tab__buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 575px) {
  html body section .tab__block .tab__buttons {
    margin-bottom: 1rem;
  }
}
html body section .tab__block .tab__buttons.tab__buttons--only {
  justify-content: left;
}
html body section .tab__block .tab__buttons.tab__buttons--only .tab__button {
  width: 190px;
}
html body section .tab__block .tab__buttons.tab__buttons--two .tab__button {
  width: 210px;
}
html body section .tab__block .tab__buttons .tab__button {
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  border-radius: 16px 16px 0 0;
  padding: 1rem;
  width: 100%;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  html body section .tab__block .tab__buttons .tab__button {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body section .tab__block .tab__buttons .tab__button {
    font-size: calc(1.52rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body section .tab__block .tab__buttons .tab__button {
    font-size: calc(1.44rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body section .tab__block .tab__buttons .tab__button {
    font-size: calc(1.36rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body section .tab__block .tab__buttons .tab__button {
    font-size: calc(1.28rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body section .tab__block .tab__buttons .tab__button {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.8));
  }
}
@media screen and (max-width: 575px) {
  html body section .tab__block .tab__buttons .tab__button {
    padding: 1rem 0.2rem;
    border-radius: 6px 6px 0 0;
  }
}
html body section .tab__block .tab__buttons .tab__button.active {
  background-color: #0091DB;
}
html body section .tab__block .tab__buttons .tab__button:nth-child(n+2) {
  margin-left: 1rem;
}
@media screen and (max-width: 575px) {
  html body section .tab__block .tab__buttons .tab__button:nth-child(n+2) {
    margin-left: 0.5rem;
  }
}
html body section .tab__block .tab__box {
  display: none;
}
html body section .tab__block .tab__box.show {
  display: block;
}
html body section .tab__block .tab__box .solar__image {
  max-width: 325px;
  width: 100%;
}
html body section .product-list h2 {
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body section .product-list h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body section .product-list h2 {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body section .product-list h2 {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body section .product-list h2 {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body section .product-list h2 {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body section .product-list h2 {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
@media screen and (max-width: 575px) {
  html body section .visible-sm-ijo {
    display: none;
  }
}
html body section .visible-sm-xs-ika {
  display: none;
}
@media screen and (max-width: 767px) {
  html body section .visible-sm-xs-ika {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  html body section .visible-sm-xs-ika {
    display: none;
  }
}
html body section.merit .basic-title {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  html body section.merit .basic-title {
    padding-top: 0;
  }
}
html body section.u4smartlink {
  margin: 8rem 0 7rem;
}
html body section.u4smartlink .maintitle {
  display: flex;
}
@media screen and (max-width: 575px) {
  html body section.u4smartlink .maintitle {
    display: block;
  }
}
html body section.u4smartlink .maintitle img {
  width: 100%;
  max-width: 114px;
}
@media screen and (max-width: 575px) {
  html body section.u4smartlink .maintitle img {
    display: block;
    margin: 0 auto 1rem;
  }
}
html body section.u4smartlink .maintitle h2 {
  line-height: 1.467;
  letter-spacing: 0.06em;
  margin-left: 3rem;
}
@media only screen and (min-width: 1200px) {
  html body section.u4smartlink .maintitle h2 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body section.u4smartlink .maintitle h2 {
    font-size: calc(2.8rem + (1vw - 0.992rem) * (0.9661835749));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body section.u4smartlink .maintitle h2 {
    font-size: calc(2.6rem + (1vw - 0.768rem) * (0.8968609865));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body section.u4smartlink .maintitle h2 {
    font-size: calc(2.4rem + (1vw - 0.576rem) * (1.0471204188));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body section.u4smartlink .maintitle h2 {
    font-size: calc(2.2rem + (1vw - 0.421rem) * (1.2987012987));
  }
}
@media only screen and (max-width: 420px) {
  html body section.u4smartlink .maintitle h2 {
    font-size: calc(2rem + (1vw - 0.32rem) * (2));
  }
}
@media screen and (max-width: 575px) {
  html body section.u4smartlink .maintitle h2 {
    margin-left: 0;
  }
}
html body section.u4smartlink .technology__block {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
@media screen and (max-width: 1199px) {
  html body section.u4smartlink .technology__block {
    display: block;
  }
}
html body section.u4smartlink .technology__block .technology__case {
  display: flex;
  text-align: center;
}
html body section.u4smartlink .technology__block .technology__case .technology__case--inner:nth-child(n+2) {
  padding-left: 1rem;
}
html body section.u4smartlink .technology__block .technology__case .technology__case--inner:nth-child(2) {
  position: relative;
  padding: 0 10rem;
}
html body section.u4smartlink .technology__block .technology__case .technology__case--inner:nth-child(2)::before, html body section.u4smartlink .technology__block .technology__case .technology__case--inner:nth-child(2)::after {
  content: "";
  background-image: url(../../images/all-in-one-power/universal03-case-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 160px;
  height: 26px;
  position: absolute;
  top: 100px;
  z-index: -1;
}
html body section.u4smartlink .technology__block .technology__case .technology__case--inner:nth-child(2)::before {
  left: 12px;
}
html body section.u4smartlink .technology__block .technology__case .technology__case--inner:nth-child(2)::after {
  right: 0;
}
html body section.u4smartlink .technology__block .technology__case .technology__case--inner img {
  min-height: 237px;
}
@media screen and (max-width: 1199px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner img {
    min-height: auto;
  }
}
html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__label {
  text-align: center;
  color: #0091DB;
  letter-spacing: 0;
  margin-bottom: 3rem;
  position: relative;
  font-weight: 300;
}
@media only screen and (min-width: 1200px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__label {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__label {
    font-size: calc(2.48rem + (1vw - 0.992rem) * (0.5797101449));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__label {
    font-size: calc(2.36rem + (1vw - 0.768rem) * (0.5381165919));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__label {
    font-size: calc(2.24rem + (1vw - 0.576rem) * (0.6282722513));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__label {
    font-size: calc(2.12rem + (1vw - 0.421rem) * (0.7792207792));
  }
}
@media only screen and (max-width: 420px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__label {
    font-size: calc(2rem + (1vw - 0.32rem) * (1.2));
  }
}
html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__label::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #0091DB;
  display: block;
  position: absolute;
  bottom: -2.3rem;
  left: 50%;
  transform: translateX(-50%);
}
html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__desc {
  text-align: center;
  letter-spacing: 0;
  line-height: 1.1;
}
@media only screen and (min-width: 1200px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__desc {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__desc {
    font-size: calc(1.78rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__desc {
    font-size: calc(1.76rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__desc {
    font-size: calc(1.74rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__desc {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body section.u4smartlink .technology__block .technology__case .technology__case--inner .technology__desc {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body section.mv {
  background-color: #CBEEFF;
  height: 330px;
}
@media screen and (max-width: 991px) {
  html body section.mv {
    height: auto;
  }
}
html body section.mv .wrapper {
  height: 100%;
  padding: 0;
}
@media screen and (max-width: 991px) {
  html body section.mv .wrapper {
    height: auto;
  }
}
html body section.mv .mv__inner {
  height: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  html body section.mv .mv__inner {
    display: block;
    height: auto;
  }
}
html body section.mv .mv__inner .mv__copy {
  height: 100%;
  width: 100%;
  max-width: 415px;
  background-color: #0091DB;
  padding: 5rem 3rem 1rem;
  display: flex;
}
@media screen and (max-width: 991px) {
  html body section.mv .mv__inner .mv__copy {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 575px) {
  html body section.mv .mv__inner .mv__copy {
    padding: 2rem;
  }
}
html body section.mv .mv__inner .mv__copy h1 {
  width: 100%;
}
html body section.mv .mv__inner .mv__copy h1 .mv__title {
  color: #0091DB;
  letter-spacing: 0;
  position: relative;
  display: block;
  z-index: 1;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__title {
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__title {
    font-size: calc(1.88rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__title {
    font-size: calc(1.86rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__title {
    font-size: calc(1.84rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__title {
    font-size: calc(1.82rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.2));
  }
}
@media screen and (max-width: 575px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__title {
    margin-bottom: 1rem;
  }
}
html body section.mv .mv__inner .mv__copy h1 .mv__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #ffffff;
  transform: skewX(-25deg);
}
html body section.mv .mv__inner .mv__copy h1 .mv__description {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.857;
}
@media only screen and (min-width: 1200px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__description {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__description {
    font-size: calc(1.92rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__description {
    font-size: calc(1.84rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__description {
    font-size: calc(1.76rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__description {
    font-size: calc(1.68rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body section.mv .mv__inner .mv__copy h1 .mv__description {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.8));
  }
}
html body section.mv .mv__inner .mv__bg {
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 415px;
}
@media screen and (max-width: 991px) {
  html body section.mv .mv__inner .mv__bg {
    height: 300px;
    max-width: 100%;
  }
}
html body 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 section.page-links .page-links__list {
    gap: 0;
  }
}
html body section.page-links .page-links__list .page-links__item {
  flex-basis: 33.3333333333%;
  height: 80px;
}
@media screen and (max-width: 991px) {
  html body section.page-links .page-links__list .page-links__item {
    flex-basis: 32.6666666667%;
  }
}
@media screen and (max-width: 767px) {
  html body section.page-links .page-links__list .page-links__item {
    margin-bottom: 1rem;
  }
  html body 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 section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  html body section.page-links .page-links__list .page-links__item {
    flex-basis: 100%;
    height: auto;
  }
}
html body section.page-links .page-links__list .page-links__item .page-links__link {
  margin-right: 1rem;
}
@media screen and (max-width: 575px) {
  html body section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 0;
  }
}
html body section.page-links .page-links__list .page-links__item:nth-of-type(3) .page-links__link {
  margin-right: 0;
}
html body 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 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 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 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 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 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 section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1rem + (1vw - 0.32rem) * (0.8));
  }
}
@media screen and (max-width: 575px) {
  html body section.page-links .page-links__list .page-links__item .page-links__link {
    text-align: left;
  }
}
@media only screen and (max-width: 575px) and (min-width: 1200px) {
  html body 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 section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.18rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (max-width: 575px) and (min-width: 768px) and (max-width: 991px) {
  html body section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.16rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (max-width: 575px) and (min-width: 576px) and (max-width: 767px) {
  html body section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.14rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (max-width: 575px) and (min-width: 421px) and (max-width: 575px) {
  html body section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.12rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 575px) and (max-width: 420px) {
  html body section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.1rem + (1vw - 0.32rem) * (0.2));
  }
}
html body 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 section.page-links .page-links__list .page-links__item .page-links__link {
    padding: 1rem 0.5rem;
    justify-content: left;
  }
}
html body 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 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 section.page-links .page-links__list .page-links__item .page-links__link br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  html body section.reason .base__block .base__layout {
    display: flex;
    flex-direction: column-reverse;
  }
}
html body section.reason .base__block .base__layout .base__content {
  padding-left: 0;
  padding-right: 4rem;
}
@media screen and (max-width: 767px) {
  html body section.reason .base__block .base__layout .base__content {
    padding-right: 0;
  }
}
html body section.reason .base__block .base__layout .base__content p + p {
  margin-top: -1rem;
  margin-bottom: 2rem;
}
html body section.reason .base__block .base__layout .base__content .base__link {
  max-width: 330px;
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background-color: #0091DB;
  border-radius: 5px;
}
@media screen and (max-width: 991px) {
  html body section.reason .base__block .base__layout .base__content .base__link {
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  html body section.reason .base__block .base__layout .base__content .base__link {
    margin: 0 auto 1rem;
    padding: 1rem 2rem;
  }
}
html body section.reason .base__block .base__layout .base__content .base__link a {
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body section.reason .base__block .base__layout .base__content .base__link a {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body section.reason .base__block .base__layout .base__content .base__link a {
    font-size: calc(1.28rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body section.reason .base__block .base__layout .base__content .base__link a {
    font-size: calc(1.26rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body section.reason .base__block .base__layout .base__content .base__link a {
    font-size: calc(1.24rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body section.reason .base__block .base__layout .base__content .base__link a {
    font-size: calc(1.22rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body section.reason .base__block .base__layout .base__content .base__link a {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
html body section.reason .base__block .base__layout .base__image img {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  html body section.reason .base__block .base__layout .base__image img {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  html body section.reason .base__block .base__layout .base__image.base__image--caption img {
    margin-bottom: 4rem;
  }
}
html body section.reason .base__block .base__layout .base__image .base__half {
  display: flex;
  max-width: 450px;
  width: 100%;
  margin: -4rem auto 0;
}
@media screen and (max-width: 767px) {
  html body section.reason .base__block .base__layout .base__image .base__half {
    max-width: 400px;
    margin-top: -4rem;
  }
}
html body section.reason .base__block .base__layout .base__image .base__half p {
  width: 50%;
  text-align: right;
}
html body section.youtube {
  padding: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  html body section.youtube {
    padding: 3rem 0;
  }
}
html body section.youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 15px;
}
html body section.contents-post-thumbnail {
  padding-bottom: 5rem;
}
@media screen and (max-width: 991px) {
  html body section.contents-post-thumbnail {
    padding-bottom: 3rem;
  }
}
html body section.contents-post-thumbnail .basic-title {
  padding-top: 0;
}
html body section.contents-post-thumbnail .more {
  text-align: center;
  margin-top: 3rem;
}
html body section.contents-post-thumbnail .more a {
  background-color: #0091DB;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 4px;
  padding: 1rem 3rem;
}
@media only screen and (min-width: 1200px) {
  html body section.contents-post-thumbnail .more a {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body section.contents-post-thumbnail .more a {
    font-size: calc(1.38rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body section.contents-post-thumbnail .more a {
    font-size: calc(1.36rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body section.contents-post-thumbnail .more a {
    font-size: calc(1.34rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body section.contents-post-thumbnail .more a {
    font-size: calc(1.32rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body section.contents-post-thumbnail .more a {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#outdoor-camp section.mv .mv__inner .mv__bg {
  background-image: url(../../images/common-scene/outdoor-camp/mv-outdoor-camp.webp);
}
html body#outdoor-diy section.mv .mv__inner .mv__bg {
  background-image: url(../../images/common-scene/outdoor-diy/mv-outdoor-diy.webp);
}
html body#carlife-car-camping section.mv .mv__inner .mv__bg {
  background-image: url(../../images/common-scene/carlife-car-camping/mv-carlife-car-camping.webp);
}
html body#bousai-home section.mv .mv__inner .mv__bg {
  background-image: url(../../images/common-scene/bousai-home/mv-bousai-home.webp);
}
html body#bousai-office section.mv .mv__inner .mv__bg {
  background-image: url(../../images/common-scene/bousai-office/mv-bousai-office.webp);
}
html body#dailylife-remotework section.mv .mv__inner .mv__bg {
  background-image: url(../../images/common-scene/dailylife-remotework/mv-dailylife-remotework.webp);
}
html body#dailylife-entertainment section.mv .mv__inner .mv__bg {
  background-image: url(../../images/common-scene/dailylife-entertainment/mv-dailylife-entertainment.webp);
}
html body#dailylife-emergency-powersupply section.mv .mv__inner .mv__bg {
  background-image: url(../../images/common-scene/dailylife-emergency-powersupply/mv-dailylife-emergency-powersupply.webp);
}

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

/*# sourceMappingURL=common-scene.css.map */
