@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 {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-size: 62.5%;
  color: #333333;
  background-color: #fff;
}
html body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  /* フォントの字形を等幅・ライニング（高さ揃え）に固定 */
  font-variant-numeric: tabular-nums lining-nums;
  /* Webkit系（Safari）向けの指定 */
  -webkit-font-feature-settings: "pnum" 0, "lnum" 1;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.5;
  /*layout-------------------------------------------*/
}
@media only screen and (min-width: 1200px) {
  html body {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body {
    font-size: calc(1.48rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body {
    font-size: calc(1.46rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body {
    font-size: calc(1.44rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body {
    font-size: calc(1.42rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.2));
  }
}
@media screen and (max-width: 767px) {
  html body {
    line-height: 1.3;
  }
}
html body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
html body.menu-open-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
html body.menu-open-fixed .header-inner {
  background-color: #ffffff;
}
html body .oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
html body .noto_serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
html body .jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
html body .header-wrap {
  position: relative;
  height: 120px;
}
@media screen and (max-width: 1199px) {
  html body .header-wrap {
    height: 140px;
  }
}
@media screen and (max-width: 991px) {
  html body .header-wrap {
    height: 96px;
  }
}
html body header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px; /* ヘッダーの高さ */
  z-index: 100;
  background: #fff;
  transition: transform 0.3s ease; /* 0.3秒かけて滑らかに移動 */
}
@media screen and (max-width: 991px) {
  html body header {
    height: 60px; /* ヘッダーの高さ */
  }
}
html body header.hide {
  transform: translateY(-100%); /* 高きの分だけ上に移動して隠す */
}
html body header .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  padding: 0.5rem 1.5rem;
}
@media screen and (max-width: 991px) {
  html body header .header-inner {
    height: 50px;
    width: 100%;
    padding: 2rem 0 0.5rem 1.5rem;
  }
}
html body header .header-inner .logo-wrapper a {
  display: inline-block;
}
@media screen and (max-width: 1199px) {
  html body header .header-inner .logo-wrapper a img {
    width: 100%;
    max-width: 200px;
  }
}
@media screen and (max-width: 991px) {
  html body header .navigation {
    padding-bottom: 1rem;
  }
}
html body header .navigation .pc-nav {
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 991px) {
  html body header .navigation .pc-nav {
    display: none;
  }
}
html body header .navigation .pc-nav nav.gloval-nav ul {
  display: flex;
  align-items: center;
}
html body header .navigation .pc-nav nav.gloval-nav ul li {
  position: relative;
}
html body header .navigation .pc-nav nav.gloval-nav ul li a {
  display: inline-block;
  padding: 1.25rem 1rem;
  letter-spacing: 0;
  position: relative;
  transition: color 0.3s ease;
  font-size: 15px;
}
@media screen and (max-width: 1199px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a {
    padding: 1.25rem 1rem 1.25rem 0;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 1200px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) and (max-width: 1199px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a {
    font-size: calc(1.38rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (max-width: 1199px) and (min-width: 768px) and (max-width: 991px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a {
    font-size: calc(1.36rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (max-width: 1199px) and (min-width: 576px) and (max-width: 767px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a {
    font-size: calc(1.34rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (max-width: 1199px) and (min-width: 421px) and (max-width: 575px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a {
    font-size: calc(1.32rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 1199px) and (max-width: 420px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0.2));
  }
}
html body header .navigation .pc-nav nav.gloval-nav ul li a:hover {
  color: #0091DB;
}
html body header .navigation .pc-nav nav.gloval-nav ul li a.current-menu-item::after, html body header .navigation .pc-nav nav.gloval-nav ul li a.current-page-item::after, html body header .navigation .pc-nav nav.gloval-nav ul li a.current::after, html body header .navigation .pc-nav nav.gloval-nav ul li a.active::after {
  width: calc(100% - 4rem);
}
@media screen and (max-width: 1199px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a.current-menu-item::after, html body header .navigation .pc-nav nav.gloval-nav ul li a.current-page-item::after, html body header .navigation .pc-nav nav.gloval-nav ul li a.current::after, html body header .navigation .pc-nav nav.gloval-nav ul li a.active::after {
    width: calc(100% - 2.5rem);
  }
}
html body header .navigation .pc-nav nav.gloval-nav ul li a.btn-onlinestore {
  padding: 0 1rem 0.5rem;
}
html body header .navigation .pc-nav nav.gloval-nav ul li a.btn-onlinestore:hover {
  color: #ffffff;
}
html body header .navigation .pc-nav nav.category-nav {
  background-color: #333333;
}
@media screen and (max-width: 991px) {
  html body header .navigation .pc-nav nav.category-nav {
    display: none;
  }
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list {
  display: flex;
  justify-content: center;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.blue {
  background-color: #0091DB;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.blue.blue_last a::after {
  margin: 0;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item a {
  display: block;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0;
}
@media only screen and (max-width: 1199px) and (min-width: 1200px) {
  html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item a {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) and (max-width: 1199px) {
  html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item a {
    font-size: calc(1.3rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (max-width: 1199px) and (min-width: 768px) and (max-width: 991px) {
  html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item a {
    font-size: calc(1.3rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (max-width: 1199px) and (min-width: 576px) and (max-width: 767px) {
  html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item a {
    font-size: calc(1.3rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (max-width: 1199px) and (min-width: 421px) and (max-width: 575px) {
  html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item a {
    font-size: calc(1.3rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 1199px) and (max-width: 420px) {
  html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item a {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0));
  }
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item:not(:last-child) a::after {
  content: "";
  color: #ffffff;
  background: #ffffff;
  width: 1px;
  height: 80%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child {
  position: relative;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child a .arrow-icon {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-block;
  transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  margin-left: 5px;
  will-change: transform;
  background-color: #ffffff;
  border-radius: 99px;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child a .arrow-icon::before, html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  background: #0091DB;
  display: block;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child a .arrow-icon::before {
  width: 9px;
  height: 2px;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child a .arrow-icon::after {
  width: 2px;
  height: 9px;
  transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
  background-color: #0091DB;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child a .arrow-icon:hover {
  transform: scale(0.92);
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child a .arrow-icon.open::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child .nav-child {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 105px;
  padding: 0 1rem 1rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child .nav-child li:not(html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child .nav-child li:last-child) {
  border-bottom: 1px solid #ffffff;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child .nav-child.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child .nav-child ul {
  display: block;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child .nav-child ul li a {
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
html body header .navigation .pc-nav nav.category-nav .category-nav__list .category-nav__item.has-child .nav-child ul li a:hover {
  background-color: #f8f9fa;
}
html body header .navigation .pc-nav nav.sub-category-nav {
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 991px) {
  html body header .navigation .pc-nav nav.sub-category-nav {
    display: none;
  }
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item {
  width: 15.9%;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item:first-child {
  margin-left: 1rem;
}
@media screen and (max-width: 1400px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item:first-child {
    margin-left: 0.5rem;
  }
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item:last-child {
  margin-right: 1rem;
}
@media screen and (max-width: 1400px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item:last-child {
    margin-right: 0.5rem;
  }
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item > a {
  background-color: #0091DB;
  color: #ffffff;
  border-radius: 0 0 10px 10px;
  padding: 0.5rem 1rem;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1400px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item > a {
    line-height: 1.5;
    padding: 0.5rem;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1200px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item > a {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 992px) and (max-width: 1199px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item > a {
    font-size: calc(1.38rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (max-width: 1400px) and (min-width: 768px) and (max-width: 991px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item > a {
    font-size: calc(1.36rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (max-width: 1400px) and (min-width: 576px) and (max-width: 767px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item > a {
    font-size: calc(1.34rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (max-width: 1400px) and (min-width: 421px) and (max-width: 575px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item > a {
    font-size: calc(1.32rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 1400px) and (max-width: 420px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item > a {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0.2));
  }
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item > a:hover, html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item > a.open {
  background-color: #eaeaea;
  color: #0091DB;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .has-mega__link .js-megaIcon {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-block;
  transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  margin-left: 5px;
  will-change: transform;
  background-color: #ffffff;
  border-radius: 99px;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .has-mega__link .js-megaIcon::before, html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .has-mega__link .js-megaIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  background: #0091DB;
  display: block;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .has-mega__link .js-megaIcon::before {
  width: 9px;
  height: 2px;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .has-mega__link .js-megaIcon::after {
  width: 2px;
  height: 9px;
  transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
  background-color: #0091DB;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .has-mega__link .js-megaIcon:hover {
  transform: scale(0.92);
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .has-mega__link .js-megaIcon.open::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .has-mega__link.show {
  background-color: #eaeaea;
  color: #0091DB;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav {
  visibility: hidden;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  display: none;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: #ffffff;
  padding: 8rem 0 5rem 20rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item {
  display: flex;
  justify-content: left;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__link {
  padding-right: 15rem;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__link .mega-nav__link-parent {
  display: inline-block;
  margin-bottom: 2rem;
  border-bottom: 2px solid #ffffff;
  font-weight: 700;
  letter-spacing: 0;
  color: #505050;
  white-space: nowrap;
}
@media only screen and (min-width: 1200px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__link .mega-nav__link-parent {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__link .mega-nav__link-parent {
    font-size: calc(1.78rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__link .mega-nav__link-parent {
    font-size: calc(1.76rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__link .mega-nav__link-parent {
    font-size: calc(1.74rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__link .mega-nav__link-parent {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__link .mega-nav__link-parent {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__link .mega-nav__link-parent:hover, html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__link .mega-nav__link-parent.current {
  border-bottom: 2px solid #0091DB;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap {
  position: relative;
  width: 100%;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap .mega-nav__item-pic {
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  position: absolute;
  left: 0;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap .mega-nav__item-pic.show {
  opacity: 1;
  visibility: visible;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap .mega-nav__item-pic .mega-nav__link-child:not(:last-child) {
  margin-right: 7rem;
}
html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap .mega-nav__item-pic .mega-nav__link-child p {
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 1200px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap .mega-nav__item-pic .mega-nav__link-child p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap .mega-nav__item-pic .mega-nav__link-child p {
    font-size: calc(1.98rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap .mega-nav__item-pic .mega-nav__link-child p {
    font-size: calc(1.96rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap .mega-nav__item-pic .mega-nav__link-child p {
    font-size: calc(1.94rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap .mega-nav__item-pic .mega-nav__link-child p {
    font-size: calc(1.92rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body header .navigation .pc-nav nav.sub-category-nav .sub-category-nav__list .sub-category-nav__item.has-mega .mega-nav .mega-nav__item .mega-nav__item-pic-wrap .mega-nav__item-pic .mega-nav__link-child p {
    font-size: calc(1.9rem + (1vw - 0.32rem) * (0.2));
  }
}
html body header .navigation .menu-button-wrapper {
  margin-left: auto;
  z-index: 101;
  display: none;
  position: relative;
}
@media screen and (max-width: 991px) {
  html body header .navigation .menu-button-wrapper {
    display: block;
    position: fixed;
    top: 5px;
    right: 1.5rem;
  }
}
html body header .navigation .menu-button-wrapper #menuButton {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  padding: 12px 12px;
  width: 50px;
  height: 50px;
  background-color: #000;
  z-index: 1;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 999px;
}
html body header .navigation .menu-button-wrapper #menuButton span {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s;
}
html body header .navigation .menu-button-wrapper #menuButton span::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  opacity: 1;
  transition: 0.4s;
}
html body header .navigation .menu-button-wrapper #menuButton span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s;
}
html body header .navigation .menu-button-wrapper.menu-open #menuButton span {
  animation: none;
  width: 24px;
  transition: 0.4s;
  transform: translate(0, 2px) rotate(45deg);
}
html body header .navigation .menu-button-wrapper.menu-open #menuButton span::before {
  transition: 0.4s;
  opacity: 0;
}
html body header .navigation .menu-button-wrapper.menu-open #menuButton span::after {
  animation: none;
  width: 24px;
  transition: 0.4s;
  transform: translate(0px, -8px) rotate(90deg);
}
html body header .navigation .sp-nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 0;
  opacity: 0;
  background-color: #ffffff;
  transition: 0.4s ease-in;
  z-index: 99;
  pointer-events: none;
  padding: 50px 0;
}
html body header .navigation .sp-nav.menu-open {
  opacity: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transition: 0.4s ease-in;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}
html body header .navigation .sp-nav.menu-open nav {
  padding: 0;
  overflow-y: auto;
  padding: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  position: relative;
  width: 100%;
  background: #ffffff;
  min-height: calc(100vh - 100px);
  min-height: calc(100dvh - 100px);
}
html body header .navigation .sp-nav.menu-open nav > ul > li {
  border-bottom: 1px solid #bfbfbf;
}
html body header .navigation .sp-nav.menu-open nav > ul > li:last-child {
  border-bottom: 0;
}
html body header .navigation .sp-nav.menu-open nav > ul > li > a {
  padding: 1.1rem 0 1.1rem 1rem;
}
@media only screen and (min-width: 1200px) {
  html body header .navigation .sp-nav.menu-open nav > ul > li > a {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body header .navigation .sp-nav.menu-open nav > ul > li > a {
    font-size: calc(1.68rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body header .navigation .sp-nav.menu-open nav > ul > li > a {
    font-size: calc(1.66rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body header .navigation .sp-nav.menu-open nav > ul > li > a {
    font-size: calc(1.64rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body header .navigation .sp-nav.menu-open nav > ul > li > a {
    font-size: calc(1.62rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body header .navigation .sp-nav.menu-open nav > ul > li > a {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.2));
  }
}
html body header .navigation .sp-nav.menu-open nav ul li {
  padding: 0 1rem;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  html body header .navigation .sp-nav.menu-open nav ul li {
    padding: 0;
  }
}
html body header .navigation .sp-nav.menu-open nav ul li.has-child .nav-child {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}
html body header .navigation .sp-nav.menu-open nav ul li.has-child .nav-child > ul {
  display: block;
}
html body header .navigation .sp-nav.menu-open nav ul li.has-child .nav-child > ul li a {
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}
html body header .navigation .sp-nav.menu-open nav ul li.has-child.open > .nav-child {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}
html body header .navigation .sp-nav.menu-open nav ul li a {
  position: relative;
  display: flex;
  padding: 1rem 0;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
  html body header .navigation .sp-nav.menu-open nav ul li a {
    padding: 1rem;
  }
}
@media screen and (max-width: 991px) {
  html body header .navigation .sp-nav.menu-open nav ul li a.btn-onlinestore {
    padding: 1rem 2rem;
    max-width: 230px;
    margin: 2rem auto 0;
  }
}
html body header .navigation .sp-nav.menu-open nav ul li a .arrow-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin: 3px 0 0 auto;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  opacity: 1;
}
html body header .navigation .sp-nav.menu-open nav ul li a .arrow-icon::before, html body header .navigation .sp-nav.menu-open nav ul li a .arrow-icon::after {
  content: "";
  position: absolute;
  background-color: #2e2e2e;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
html body header .navigation .sp-nav.menu-open nav ul li a .arrow-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
html body header .navigation .sp-nav.menu-open nav ul li a .arrow-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  right: auto;
  height: auto;
}
html body header .navigation .sp-nav.menu-open nav ul li a .arrow-icon.open {
  transform: rotate(180deg);
}
html body header .navigation .sp-nav.menu-open nav ul li a .arrow-icon.open::before {
  transform: translateY(-50%);
}
html body header .navigation .sp-nav.menu-open nav ul li a .arrow-icon.open::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
html body header .navigation .sp-nav.menu-open nav ul li .nav-child a {
  padding: 0.5rem 2rem 0.5rem 5rem;
}
html body header .navigation .sp-nav.menu-open nav ul li .nav-child .nav-child a {
  padding: 0.5rem 3rem 0.5rem 6rem;
}
html body header .navigation .sp-nav.menu-open nav ul li ul.mago li ul {
  padding: 0 0 1rem 3rem;
  display: flex;
  flex-wrap: wrap;
}
html body header .navigation .sp-nav.menu-open nav ul li ul.mago li ul li {
  flex-basis: 50%;
  padding: 0;
}
html body header .navigation .sp-nav.menu-open nav ul li ul.mago li ul li a {
  padding: 0.5rem 0.5rem 1rem 0;
  display: block;
}
html body header .navigation .sp-nav.menu-open nav ul li ul.mago li ul li a p {
  padding-bottom: 0.5rem;
  font-size: 13px;
}
html body header .navigation .sp-nav.menu-open nav ul li ul.mago li ul li a img {
  display: block;
}
html body header .navigation .sp-nav nav ul li {
  opacity: 0;
  transition: 0.6s;
}
html body header .navigation .sp-nav nav ul li a .arrow-icon {
  opacity: 0;
}
html body .search-container {
  max-width: 200px;
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  border: 1px solid #707070;
  border-radius: 50px;
  padding: 0 1rem;
  box-sizing: border-box;
  background: #ffffff;
  /* inputを記入した状態、または自動補完時に背景を白にする */
  /* 自動補完後のカーソル（キャレット）の色も黒系に合わせる */
  /* 検索ボタン（アイコン） */
  /* 入力欄 */
}
html body .search-container input:-webkit-autofill {
  /* 0 0 0 1000px の後の色を white (#fff) に変更します */
  box-shadow: 0 0 0 1000px #fff inset !important;
  /* 文字色は読みやすいように黒系 (#333など) に変更 */
  -webkit-text-fill-color: #333 !important;
}
html body .search-container input:-webkit-autofill:focus {
  caret-color: #333 !important;
}
html body .search-container .search-submit {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
html body .search-container .search-submit .search-icon {
  width: 20px;
  height: auto;
  opacity: 0.6;
}
html body .search-container .search-field {
  border: none;
  outline: none;
  background: transparent;
  padding: 0 0.5rem;
  box-sizing: border-box;
  font-size: 14px;
  width: 100%; /* コンテナ内で広げる */
}
html body .search-container input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none; /* 一度リセット */
  appearance: none;
  height: 16px;
  width: 16px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: contain;
  cursor: pointer;
}
html body footer {
  padding: 6rem 0 0;
  background-color: #F7F7F7;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  html body footer {
    margin-top: 3rem;
  }
}
html body footer .wrapper {
  max-width: 1200px;
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child a {
    margin: 0;
    padding-bottom: 1rem;
  }
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child a .arrow-icon {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-block;
  transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  margin-left: 5px;
  will-change: transform;
  background-color: #333333;
  border-radius: 99px;
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child a .arrow-icon::before, html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  background: #ffffff;
  display: block;
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child a .arrow-icon::before {
  width: 9px;
  height: 2px;
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child a .arrow-icon::after {
  width: 2px;
  height: 9px;
  transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
  background-color: #ffffff;
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child a .arrow-icon:hover {
  transform: scale(0.92);
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child a .arrow-icon.open::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child .nav-child {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child .nav-child li.child-list {
    margin-top: 2rem;
  }
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child .nav-child > ul {
  display: block;
  margin-bottom: 2rem;
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child .nav-child > ul li a {
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child .nav-child li {
  margin: 1rem 0;
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child .nav-child li:first-child {
  margin-top: 0;
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child .nav-child li:first-child a {
  margin-top: 0;
}
html body footer .visible-md-ika .footer-link .footer-link-wrap li.has-child.open > .nav-child {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}
html body footer .footer-link {
  display: flex;
}
@media screen and (max-width: 991px) {
  html body footer .footer-link {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link.footer-link-top {
    margin-top: 3rem;
  }
}
html body footer .footer-link.footer-link-bottom {
  padding-left: 8rem;
}
@media screen and (max-width: 1400px) {
  html body footer .footer-link.footer-link-bottom {
    padding-left: 6rem;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link.footer-link-bottom {
    padding-left: 0;
  }
}
html body footer .footer-link.footer-link-bottom .footer-link-wrap {
  width: 100%;
}
html body footer .footer-link.footer-link-bottom .footer-link-wrap .footer-link-flex .footer-link-flexitem {
  width: 25%;
}
@media screen and (max-width: 991px) {
  html body footer .footer-link.footer-link-bottom .footer-link-wrap .footer-link-flex .footer-link-flexitem {
    width: 100%;
  }
}
html body footer .footer-link.footer-link-bottom .footer-link-wrap .footer-link-flex .footer-link-flexitem:not(:last-child) p,
html body footer .footer-link.footer-link-bottom .footer-link-wrap .footer-link-flex .footer-link-flexitem:not(:last-child) ul {
  padding-right: 6rem;
}
html body footer .footer-link .footer-link-wrap:not(:last-child) {
  padding-right: 4.5rem;
}
@media screen and (max-width: 1400px) {
  html body footer .footer-link .footer-link-wrap:not(:last-child) {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap:not(:last-child) {
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap > li {
    border-top: 1px solid #EAEAEA;
    padding: 0 1rem;
  }
}
html body footer .footer-link .footer-link-wrap a {
  letter-spacing: 0;
}
html body footer .footer-link .footer-link-wrap a.footer-link-item {
  font-weight: 700;
  color: #505050;
  margin-bottom: 1.2rem;
  display: inline-block;
}
@media only screen and (min-width: 1200px) {
  html body footer .footer-link .footer-link-wrap a.footer-link-item {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body footer .footer-link .footer-link-wrap a.footer-link-item {
    font-size: calc(1.5rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap a.footer-link-item {
    font-size: calc(1.5rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body footer .footer-link .footer-link-wrap a.footer-link-item {
    font-size: calc(1.5rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body footer .footer-link .footer-link-wrap a.footer-link-item {
    font-size: calc(1.5rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body footer .footer-link .footer-link-wrap a.footer-link-item {
    font-size: calc(1.5rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap a.footer-link-item {
    margin-bottom: 0;
    padding: 1rem 0;
  }
}
html body footer .footer-link .footer-link-wrap p {
  letter-spacing: 0;
}
html body footer .footer-link .footer-link-wrap p.footer-link-title {
  font-weight: 700;
  color: #505050;
  margin-bottom: 1.2rem;
}
@media only screen and (min-width: 1200px) {
  html body footer .footer-link .footer-link-wrap p.footer-link-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body footer .footer-link .footer-link-wrap p.footer-link-title {
    font-size: calc(1.5rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap p.footer-link-title {
    font-size: calc(1.5rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body footer .footer-link .footer-link-wrap p.footer-link-title {
    font-size: calc(1.5rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body footer .footer-link .footer-link-wrap p.footer-link-title {
    font-size: calc(1.5rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body footer .footer-link .footer-link-wrap p.footer-link-title {
    font-size: calc(1.5rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap p.footer-link-title {
    margin-bottom: 0;
    padding: 1rem 0;
  }
}
html body footer .footer-link .footer-link-wrap .footer-link-subtitle {
  font-weight: 700;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body footer .footer-link .footer-link-wrap .footer-link-subtitle {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body footer .footer-link .footer-link-wrap .footer-link-subtitle {
    font-size: calc(1.4rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-link-subtitle {
    font-size: calc(1.4rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body footer .footer-link .footer-link-wrap .footer-link-subtitle {
    font-size: calc(1.4rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body footer .footer-link .footer-link-wrap .footer-link-subtitle {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body footer .footer-link .footer-link-wrap .footer-link-subtitle {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-link-subtitle {
    margin-bottom: 0;
  }
}
html body footer .footer-link .footer-link-wrap .footer-iconlist {
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist {
    margin-bottom: 0;
  }
}
html body footer .footer-link .footer-link-wrap .footer-iconlist.linelist li {
  border-left: 1px solid #505050;
  padding-left: 1.5rem;
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist.linelist li {
    border: none;
    padding-left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li {
    font-size: calc(1.4rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li {
    font-size: calc(1.4rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li {
    font-size: calc(1.4rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
html body footer .footer-link .footer-link-wrap .footer-iconlist li:not(:last-child) {
  padding-bottom: 0.8rem;
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li:not(:last-child) {
    padding-bottom: 0;
  }
}
html body footer .footer-link .footer-link-wrap .footer-iconlist li.disabled {
  display: none;
}
html body footer .footer-link .footer-link-wrap .footer-iconlist li a {
  position: relative;
  display: block;
  color: #505050;
}
@media only screen and (min-width: 1200px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li a {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li a {
    font-size: calc(1.4rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li a {
    font-size: calc(1.4rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li a {
    font-size: calc(1.4rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li a {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body footer .footer-link .footer-link-wrap .footer-iconlist li a {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
html body footer .footer-link .footer-link-wrap .footer-iconlist li a:not(.footer-link-subtitle) {
  padding-left: 1.2rem;
}
html body footer .footer-link .footer-link-wrap .footer-iconlist li a:not(.footer-link-subtitle)::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  border: 6px solid transparent;
  border-left: 8px solid #0091DB;
}
html body footer .footer-link .footer-link-wrap .sidebar-collections {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .sidebar-collections {
    display: block;
  }
}
html body footer .footer-link .footer-link-wrap .sidebar-collections .collection-block {
  width: 25%;
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .sidebar-collections .collection-block {
    width: 100%;
  }
}
html body footer .footer-link .footer-link-wrap .footer-link-flex {
  display: flex;
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-link-flex {
    display: block;
  }
}
@media screen and (max-width: 1400px) {
  html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem:not(:last-child) {
    border-bottom: 1px solid #EAEAEA;
  }
}
html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem:not(:last-child) p,
html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem:not(:last-child) ul {
  padding-right: 2.2rem;
}
@media screen and (max-width: 1400px) {
  html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem:not(:last-child) p,
  html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem:not(:last-child) ul {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem:not(:last-child) p,
  html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem:not(:last-child) ul {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem ul {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 1400px) {
  html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem:nth-child(even) p,
  html body footer .footer-link .footer-link-wrap .footer-link-flex .footer-link-flexitem:nth-child(even) ul {
    padding-right: 0;
  }
}
html body footer .follow-subscribe {
  padding: 1rem 0 5rem 8rem;
  display: flex;
}
@media screen and (max-width: 1400px) {
  html body footer .follow-subscribe {
    padding: 1rem 0 5rem 6rem;
  }
}
@media screen and (max-width: 991px) {
  html body footer .follow-subscribe {
    padding: 5rem 0;
    justify-content: center;
  }
}
html body footer .follow-subscribe .sns {
  display: flex;
  padding-right: 16.5rem;
}
@media screen and (max-width: 991px) {
  html body footer .follow-subscribe .sns {
    padding-right: 0;
  }
}
html body footer .follow-subscribe .sns .sns-item {
  padding-right: 2rem;
}
html body footer .follow-subscribe .sns .sns-item:last-child {
  padding-right: 0;
}
html body footer .follow-subscribe .sns .sns-item:nth-child(2) a img, html body footer .follow-subscribe .sns .sns-item:nth-child(5) a img {
  max-width: 28px;
  width: 100%;
  margin-top: 1px;
}
html body footer .follow-subscribe .sns .sns-item a {
  display: block;
}
html body footer .copyright {
  background-color: #333333;
  color: #ffffff;
  padding: 3rem 0;
}
@media screen and (max-width: 991px) {
  html body footer .copyright {
    padding: 3rem 0 1rem;
  }
}
html body footer .copyright .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 991px) {
  html body footer .copyright .wrapper {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  html body footer .copyright .wrapper .logo a img {
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  html body footer .copyright .wrapper p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body footer .copyright .wrapper p {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body footer .copyright .wrapper p {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body footer .copyright .wrapper p {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body footer .copyright .wrapper p {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body footer .copyright .wrapper p {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 991px) {
  html body footer .copyright .wrapper p {
    text-align: center;
    padding-top: 2rem;
  }
}
@media screen and (max-width: 991px) {
  html body footer .newsletter {
    text-align: center;
  }
}
html body footer .newsletter a {
  display: inline-block;
  background-color: #0091DB;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 4rem 1rem 2rem;
  position: relative;
}
html body footer .newsletter a::after {
  content: "";
  position: absolute;
  top: 50%; /* 縦軸をセンタリングする */
  right: 5px;
  transform: translateY(-50%); /* 縦軸をセンタリングする */
  border: 5px solid transparent;
  border-left: 8px solid #ffffff; /* 好みで色を変えてください */
}
html body .contents-breadcrumb {
  background-color: #ffffff;
  padding: 1rem 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
  height: 100px;
}
@media screen and (max-width: 991px) {
  html body .contents-breadcrumb {
    height: 80px;
  }
}
html body .contents-breadcrumb.single-breadcrumb {
  margin-top: 86px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 991px) {
  html body .contents-breadcrumb.single-breadcrumb {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  html body .contents-breadcrumb .breadcrumb {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .contents-breadcrumb .breadcrumb {
    font-size: calc(1.18rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .contents-breadcrumb .breadcrumb {
    font-size: calc(1.16rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .contents-breadcrumb .breadcrumb {
    font-size: calc(1.14rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .contents-breadcrumb .breadcrumb {
    font-size: calc(1.12rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .contents-breadcrumb .breadcrumb {
    font-size: calc(1.1rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .contents-breadcrumb .breadcrumb a {
  border-bottom: 1px solid #555;
}
html body .contents-breadcrumb .breadcrumb span.bread-list {
  padding: 0 0.625rem;
}
html body .contents-breadcrumb .breadcrumb span.bread-nolink {
  padding: 0 0.625rem;
}
html body .contents-breadcrumb .breadcrumb span.current-item {
  padding: 0 0.625rem;
}
html body .pagetop {
  position: fixed;
  z-index: 8;
  right: 20px;
  bottom: 60px;
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background-color: #333333;
  text-align: center;
}
@media screen and (max-width: 575px) {
  html body .pagetop {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 40px;
  }
}
html body .pagetop:hover {
  cursor: pointer;
}
html body .pagetop .oswald {
  color: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  display: block;
}
@media only screen and (min-width: 1200px) {
  html body .pagetop .oswald {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .pagetop .oswald {
    font-size: calc(1.38rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .pagetop .oswald {
    font-size: calc(1.36rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .pagetop .oswald {
    font-size: calc(1.34rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .pagetop .oswald {
    font-size: calc(1.32rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .pagetop .oswald {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .pagetop .oswald::before {
  content: "";
  background-image: url(../../images/common/pagetop.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 10px;
  height: 16px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -14px;
}
html body .wrapper {
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
html body img {
  height: auto;
  max-width: 100%;
}
html body .cf::before, html body .cf::after {
  display: table;
  clear: both;
  content: "";
}
html body .alpha {
  transition: opacity 250ms;
}
html body .alpha:hover {
  opacity: 0.75;
}
html body .base__block {
  margin-top: 8rem;
}
html body .base__block .base__heading {
  font-weight: 500;
  margin-bottom: 4.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .base__block .base__heading {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .base__block .base__heading {
    font-size: calc(2.6rem + (1vw - 0.992rem) * (0.9661835749));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .base__block .base__heading {
    font-size: calc(2.4rem + (1vw - 0.768rem) * (0.8968609865));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .base__block .base__heading {
    font-size: calc(2.2rem + (1vw - 0.576rem) * (1.0471204188));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .base__block .base__heading {
    font-size: calc(2rem + (1vw - 0.421rem) * (1.2987012987));
  }
}
@media only screen and (max-width: 420px) {
  html body .base__block .base__heading {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (2));
  }
}
@media screen and (max-width: 767px) {
  html body .base__block .base__heading {
    margin-bottom: 2.5rem;
  }
}
html body .base__block .base__layout {
  display: flex;
}
@media screen and (max-width: 767px) {
  html body .base__block .base__layout {
    display: block;
  }
}
html body .base__block .base__layout.base__layout--reverse:nth-child(even) {
  flex-direction: row-reverse;
}
html body .base__block .base__layout.base__layout--reverse:nth-child(even) .base__content {
  padding-left: 0;
  padding-right: 10rem;
}
html body .base__block .base__layout.base__layout--reverse + .base__layout--reverse {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  html body .base__block .base__layout .base__image {
    text-align: center;
  }
}
html body .base__block .base__layout .base__image img {
  width: 100%;
  max-width: 450px;
  min-width: 450px;
}
@media screen and (max-width: 991px) {
  html body .base__block .base__layout .base__image img {
    min-width: 400px;
  }
}
@media screen and (max-width: 575px) {
  html body .base__block .base__layout .base__image img {
    min-width: 100%;
  }
}
html body .base__block .base__layout .base__content {
  padding-left: 10rem;
}
@media screen and (max-width: 1199px) {
  html body .base__block .base__layout .base__content {
    padding-left: 5rem;
  }
}
@media screen and (max-width: 991px) {
  html body .base__block .base__layout .base__content {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 767px) {
  html body .base__block .base__layout .base__content {
    padding-left: 0;
    padding-top: 2rem;
  }
}
html body .base__block .base__layout .base__content .base__content--lead {
  font-weight: 500;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1200px) {
  html body .base__block .base__layout .base__content .base__content--lead {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(2.6rem + (1vw - 0.992rem) * (0.9661835749));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(2.4rem + (1vw - 0.768rem) * (0.8968609865));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(2.2rem + (1vw - 0.576rem) * (1.0471204188));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(2rem + (1vw - 0.421rem) * (1.2987012987));
  }
}
@media only screen and (max-width: 420px) {
  html body .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (2));
  }
}
@media screen and (max-width: 991px) {
  html body .base__block .base__layout .base__content .base__content--lead {
    margin-bottom: 2rem;
  }
}
html body .base__block .base__layout .base__content p {
  letter-spacing: 0.04em;
  line-height: 1.875;
}
html body .page-links .page-links__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin-top: 6rem;
}
html body .page-links .page-links__list .page-links__item {
  flex-basis: 19.6%;
}
@media screen and (max-width: 767px) {
  html body .page-links .page-links__list .page-links__item {
    flex-basis: 32.6666666667%;
    margin-bottom: 1rem;
  }
  html body .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 .page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  html body .page-links .page-links__list .page-links__item {
    flex-basis: 100%;
  }
}
html body .page-links .page-links__list .page-links__item:not(:last-child) .page-links__link {
  margin-right: 1rem;
}
@media screen and (max-width: 575px) {
  html body .page-links .page-links__list .page-links__item:not(:last-child) .page-links__link {
    margin-right: 0;
  }
}
html body .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 .page-links .page-links__list .page-links__item .page-links__link {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.48rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.46rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.44rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.42rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .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 .page-links .page-links__list .page-links__item .page-links__link {
    justify-content: left;
    padding: 1rem 2rem 1rem 0.5rem;
    text-align: left;
  }
}
html body .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 .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 .page-links .page-links__list .page-links__item .page-links__link br {
    display: none;
  }
}
html body .more-btn .more-btn__link {
  display: flex;
  align-items: center;
  background-color: #0091DB;
  color: #ffffff;
  border-radius: 15px;
  padding: 1.5rem 1rem;
  max-width: 670px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 575px) {
  html body .more-btn .more-btn__link {
    max-width: 350px;
  }
}
html body .more-btn .more-btn__link::after {
  content: "";
  background-image: url(../../images/common/arrow-more.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 18px;
  height: 12px;
  position: absolute;
  right: 1rem;
}
@media screen and (max-width: 575px) {
  html body .more-btn .more-btn__link::after {
    bottom: 2rem;
  }
}
html body .more-btn .more-btn__link .more-btn__readmore {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background-color: #ffffff;
  color: #0091DB;
  letter-spacing: 0.02em;
  font-weight: 500;
  border-radius: 999px;
  text-align: center;
  line-height: 1.25;
}
@media only screen and (min-width: 1200px) {
  html body .more-btn .more-btn__link .more-btn__readmore {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .more-btn .more-btn__link .more-btn__readmore {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .more-btn .more-btn__link .more-btn__readmore {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .more-btn .more-btn__link .more-btn__readmore {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .more-btn .more-btn__link .more-btn__readmore {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .more-btn .more-btn__link .more-btn__readmore {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body .more-btn .more-btn__link .more-btn__readmore {
    min-width: 62px;
    min-height: 62px;
  }
}
html body .more-btn .more-btn__link .more-btn__content {
  padding: 0 1rem 0 0.5rem;
}
html body .more-btn .more-btn__link .more-btn__content .more-btn__title {
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
@media only screen and (min-width: 1200px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__title {
    font-size: calc(1.5rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__title {
    font-size: calc(1.5rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__title {
    font-size: calc(1.5rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__title {
    font-size: calc(1.5rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__title {
    font-size: calc(1.5rem + (1vw - 0.32rem) * (0));
  }
}
html body .more-btn .more-btn__link .more-btn__content .more-btn__desc {
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 1200px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__desc {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__desc {
    font-size: calc(1.56rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__desc {
    font-size: calc(1.52rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__desc {
    font-size: calc(1.48rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__desc {
    font-size: calc(1.44rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__desc {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.4));
  }
}
@media screen and (max-width: 767px) {
  html body .more-btn .more-btn__link .more-btn__content .more-btn__desc {
    position: absolute;
    left: 2rem;
    bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  html body .scroll {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
html body .basic-title {
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 4rem;
  position: relative;
  line-height: 1.7;
}
@media only screen and (min-width: 1200px) {
  html body .basic-title {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .basic-title {
    font-size: calc(2.2rem + (1vw - 0.992rem) * (0.4830917874));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .basic-title {
    font-size: calc(2.1rem + (1vw - 0.768rem) * (0.4484304933));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .basic-title {
    font-size: calc(2rem + (1vw - 0.576rem) * (0.5235602094));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .basic-title {
    font-size: calc(1.9rem + (1vw - 0.421rem) * (0.6493506494));
  }
}
@media only screen and (max-width: 420px) {
  html body .basic-title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (1));
  }
}
html body .basic-title::after {
  content: "";
  width: 96px;
  height: 3px;
  background-color: #0091DB;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1rem;
}
html body .section-title {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  html body .section-title {
    display: block;
    text-align: center;
  }
}
html body .section-title span {
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  html body .section-title span {
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  html body .section-title span.jp {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .section-title span.jp {
    font-size: calc(2.6rem + (1vw - 0.992rem) * (0.9661835749));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .section-title span.jp {
    font-size: calc(2.4rem + (1vw - 0.768rem) * (0.8968609865));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .section-title span.jp {
    font-size: calc(2.2rem + (1vw - 0.576rem) * (1.0471204188));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .section-title span.jp {
    font-size: calc(2rem + (1vw - 0.421rem) * (1.2987012987));
  }
}
@media only screen and (max-width: 420px) {
  html body .section-title span.jp {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (2));
  }
}
html body .section-title span.oswald {
  font-weight: 300;
  position: relative;
  padding-left: 1.5rem;
  margin-left: 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .section-title span.oswald {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .section-title span.oswald {
    font-size: calc(2.4rem + (1vw - 0.992rem) * (0.9661835749));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .section-title span.oswald {
    font-size: calc(2.2rem + (1vw - 0.768rem) * (0.8968609865));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .section-title span.oswald {
    font-size: calc(2rem + (1vw - 0.576rem) * (1.0471204188));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .section-title span.oswald {
    font-size: calc(1.8rem + (1vw - 0.421rem) * (1.2987012987));
  }
}
@media only screen and (max-width: 420px) {
  html body .section-title span.oswald {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (2));
  }
}
@media screen and (max-width: 767px) {
  html body .section-title span.oswald {
    padding-left: 0;
    margin-left: 0;
    margin-top: 2rem;
  }
}
html body .section-title span.oswald::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 1px;
  height: 80%;
  background: #bababa;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  html body .section-title span.oswald::before {
    left: 50%;
    top: -17px;
    height: 70%;
    transform: translateX(-50%) rotate(25deg);
  }
}
html body .section-sub-title {
  letter-spacing: 0.03em;
  margin: 3rem 0 2rem;
}
@media only screen and (min-width: 1200px) {
  html body .section-sub-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .section-sub-title {
    font-size: calc(1.92rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .section-sub-title {
    font-size: calc(1.84rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .section-sub-title {
    font-size: calc(1.76rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .section-sub-title {
    font-size: calc(1.68rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body .section-sub-title {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.8));
  }
}
@media screen and (max-width: 767px) {
  html body .section-sub-title {
    margin: 3rem 0 1rem;
  }
}
html body .bg-color {
  background-color: #F7F7F7;
}
html body .bg-color .basic-title {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  html body .bg-color .basic-title {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 991px) {
  html body .bg-color .product-list .inner {
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  html body .bg-color .product-list {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
html body .bg-color .product-list .product-card {
  background-color: #ffffff;
}
html body .bg-color--blue2 {
  background-color: #CBEEFF;
}
html body .how-use .how-use__category {
  display: flex;
  padding-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  html body .how-use .how-use__category {
    margin-top: 5rem;
    position: relative;
  }
}
@media screen and (max-width: 991px) {
  html body .how-use .how-use__category:first-of-type {
    margin-top: 10rem;
  }
}
html body .how-use .how-use__category .how-use__category-info {
  padding-right: 4rem;
  min-width: 200px;
}
@media screen and (max-width: 991px) {
  html body .how-use .how-use__category .how-use__category-info {
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  html body .how-use .how-use__category .how-use__category-info {
    padding-right: 2rem;
  }
}
html body .how-use .how-use__category .how-use__category-info .how-use__category-title .jp {
  letter-spacing: 0.03em;
  line-height: 1.45;
}
@media only screen and (min-width: 1200px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .jp {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .jp {
    font-size: calc(2.2rem + (1vw - 0.992rem) * (0.4830917874));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .jp {
    font-size: calc(2.1rem + (1vw - 0.768rem) * (0.4484304933));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .jp {
    font-size: calc(2rem + (1vw - 0.576rem) * (0.5235602094));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .jp {
    font-size: calc(1.9rem + (1vw - 0.421rem) * (0.6493506494));
  }
}
@media only screen and (max-width: 420px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .jp {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (1));
  }
}
@media screen and (max-width: 991px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .jp {
    position: absolute;
    top: -60px;
    left: 0;
  }
}
html body .how-use .how-use__category .how-use__category-info .how-use__category-title .oswald {
  font-weight: 200;
  letter-spacing: 0.03em;
  color: #0091DB;
  line-height: 1.5;
}
@media only screen and (min-width: 1200px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .oswald {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .oswald {
    font-size: calc(2.3rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .oswald {
    font-size: calc(2.3rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .oswald {
    font-size: calc(2.3rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .oswald {
    font-size: calc(2.3rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .oswald {
    font-size: calc(2.3rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 991px) {
  html body .how-use .how-use__category .how-use__category-info .how-use__category-title .oswald {
    writing-mode: vertical-rl;
  }
}
html body .how-use .how-use__category .how-use__items {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  html body .how-use .how-use__category .how-use__items {
    max-width: 600px;
    width: 100%;
    gap: 0 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  html body .how-use .how-use__category .how-use__items {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  html body .how-use .how-use__category .how-use__items .how-use__item {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}
html body .how-use .how-use__category .how-use__items .how-use__item:not(:last-child) {
  margin-right: 4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  html body .how-use .how-use__category .how-use__items .how-use__item:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  html body .how-use .how-use__category .how-use__items .how-use__item:not(:last-child) {
    margin: 0 0 3rem 0;
  }
}
html body .how-use .how-use__category .how-use__items .how-use__item .how-use__link {
  display: block;
}
html body .how-use .how-use__category .how-use__items .how-use__item .how-use__link .how-use__label {
  letter-spacing: 0.03em;
  padding-top: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body .how-use .how-use__category .how-use__items .how-use__item .how-use__link .how-use__label {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .how-use .how-use__category .how-use__items .how-use__item .how-use__link .how-use__label {
    font-size: calc(1.56rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .how-use .how-use__category .how-use__items .how-use__item .how-use__link .how-use__label {
    font-size: calc(1.52rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .how-use .how-use__category .how-use__items .how-use__item .how-use__link .how-use__label {
    font-size: calc(1.48rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .how-use .how-use__category .how-use__items .how-use__item .how-use__link .how-use__label {
    font-size: calc(1.44rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .how-use .how-use__category .how-use__items .how-use__item .how-use__link .how-use__label {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .overview-portable-power {
  padding-bottom: 7rem;
}
html body .overview-portable-power .overview-table {
  width: 100%;
  border-collapse: collapse;
}
html body .overview-portable-power .overview-table th,
html body .overview-portable-power .overview-table td {
  border: 1px solid #333333;
}
html body .overview-portable-power .overview-table .border tr.images th {
  border-top: none;
}
html body .overview-portable-power .overview-table .border tr:last-child th,
html body .overview-portable-power .overview-table .border tr:last-child td {
  border-bottom: none;
}
html body .overview-portable-power .overview-table .border tr th:first-child {
  border-left: none;
}
html body .overview-portable-power .overview-table .border tr th:last-child {
  border-right: none;
}
html body .overview-portable-power .overview-table .border tr td:last-child {
  border-right: none;
}
html body .overview-portable-power .overview-table thead th {
  padding: 2rem 1rem;
  text-align: center;
  letter-spacing: 0;
  font-weight: 400;
}
html body .overview-portable-power .overview-table thead .images th img {
  width: 100%;
  max-width: 200px;
}
@media only screen and (min-width: 1200px) {
  html body .overview-portable-power .overview-table thead .images th p {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .overview-portable-power .overview-table thead .images th p {
    font-size: calc(1.76rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .overview-portable-power .overview-table thead .images th p {
    font-size: calc(1.72rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .overview-portable-power .overview-table thead .images th p {
    font-size: calc(1.68rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .overview-portable-power .overview-table thead .images th p {
    font-size: calc(1.64rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .overview-portable-power .overview-table thead .images th p {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .overview-portable-power .overview-table thead .name p {
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .overview-portable-power .overview-table thead .name p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .overview-portable-power .overview-table thead .name p {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .overview-portable-power .overview-table thead .name p {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .overview-portable-power .overview-table thead .name p {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .overview-portable-power .overview-table thead .name p {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .overview-portable-power .overview-table thead .name p {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .overview-portable-power .overview-table thead .name a {
  color: #0091DB;
  border-bottom: 1px solid;
}
@media only screen and (min-width: 1200px) {
  html body .overview-portable-power .overview-table thead .name a {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .overview-portable-power .overview-table thead .name a {
    font-size: calc(1.68rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .overview-portable-power .overview-table thead .name a {
    font-size: calc(1.66rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .overview-portable-power .overview-table thead .name a {
    font-size: calc(1.64rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .overview-portable-power .overview-table thead .name a {
    font-size: calc(1.62rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .overview-portable-power .overview-table thead .name a {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .overview-portable-power .overview-table tbody th,
html body .overview-portable-power .overview-table tbody td {
  padding: 3rem 1rem;
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 400;
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  html body .overview-portable-power .overview-table tbody th,
  html body .overview-portable-power .overview-table tbody td {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .overview-portable-power .overview-table tbody th,
  html body .overview-portable-power .overview-table tbody td {
    font-size: calc(1.4rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .overview-portable-power .overview-table tbody th,
  html body .overview-portable-power .overview-table tbody td {
    font-size: calc(1.4rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .overview-portable-power .overview-table tbody th,
  html body .overview-portable-power .overview-table tbody td {
    font-size: calc(1.4rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .overview-portable-power .overview-table tbody th,
  html body .overview-portable-power .overview-table tbody td {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .overview-portable-power .overview-table tbody th,
  html body .overview-portable-power .overview-table tbody td {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
html body .overview-portable-power .overview-table tbody .price td {
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body .overview-portable-power .overview-table tbody .price td {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .overview-portable-power .overview-table tbody .price td {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .overview-portable-power .overview-table tbody .price td {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .overview-portable-power .overview-table tbody .price td {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .overview-portable-power .overview-table tbody .price td {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .overview-portable-power .overview-table tbody .price td {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
@media only screen and (min-width: 1200px) {
  html body .overview-portable-power .overview-table tbody .price td span {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .overview-portable-power .overview-table tbody .price td span {
    font-size: calc(1.16rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .overview-portable-power .overview-table tbody .price td span {
    font-size: calc(1.12rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .overview-portable-power .overview-table tbody .price td span {
    font-size: calc(1.08rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .overview-portable-power .overview-table tbody .price td span {
    font-size: calc(1.04rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .overview-portable-power .overview-table tbody .price td span {
    font-size: calc(1rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .overview-portable-power .overview-table tbody .text-left {
  text-align: left;
  display: flex;
  justify-content: center;
}
html body .overview-portable-power .overview-table tbody .flex {
  display: flex;
  border: none;
  justify-content: center;
}
html body .overview-portable-power .overview-table tbody .flex span:first-child {
  padding-right: 2rem;
}
html body .overview-portable-power .overview-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 .overview-portable-power .overview-table tbody .link td a {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .overview-portable-power .overview-table tbody .link td a {
    font-size: calc(1.3rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .overview-portable-power .overview-table tbody .link td a {
    font-size: calc(1.3rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .overview-portable-power .overview-table tbody .link td a {
    font-size: calc(1.3rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .overview-portable-power .overview-table tbody .link td a {
    font-size: calc(1.3rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .overview-portable-power .overview-table tbody .link td a {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0));
  }
}
html body .overview-portable-power .overview-table tbody .link td a::after {
  content: "＞";
  padding-left: 0.5rem;
}
html body .overview-portable-power .overview-table tbody .link td a.look {
  background-color: #0091DB;
  margin-right: 1rem;
}
html body .overview-portable-power .overview-table tbody .link td a.buy {
  background-color: #FFA200;
}
html body .product-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  html body .product-list {
    display: block;
    padding: 0;
    box-sizing: border-box;
  }
}
html body .product-list.product-list-basic {
  margin-bottom: 3rem;
}
html body .product-list.product-list-basic .product-card__title br {
  display: none;
}
@media screen and (max-width: 767px) {
  html body .product-list.product-list-basic .product-card__title br {
    display: block;
  }
}
html body .product-list.u4smartlink_list .product__button-look {
  background-color: #8FAD01;
  border-color: #8FAD01;
}
html body .product-list.u4smartlink_list .product__button-look:hover {
  color: #8FAD01;
}
html body .product-list .product-title {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-title {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-title {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-title {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-title {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .product-list .inner {
  max-width: 830px;
  margin: 0 auto;
}
html body .product-list .product-cardwrap {
  flex-basis: 33.3333333333%;
  padding: 0 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap {
    margin-bottom: 1rem;
    padding: 0;
  }
}
html body .product-list .product-cardwrap .product-card {
  padding: 2rem;
  border-radius: 15px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card {
    padding: 1.5rem;
  }
}
html body .product-list .product-cardwrap .product-card .product-card__image {
  position: relative;
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__image {
    float: left;
    width: 50%;
  }
}
html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge {
  background-color: #FF0000;
  border-radius: 999px;
  width: 60px;
  height: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0;
  display: block;
  line-height: 1.25;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span {
    font-size: calc(1.8rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span {
    font-size: calc(1.8rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span {
    font-size: calc(1.8rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span {
    font-size: calc(1.8rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0));
  }
}
html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span::after {
  content: "ポイント\aバック";
  white-space: pre-wrap;
  display: block;
  line-height: 1.1;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span::after {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span::after {
    font-size: calc(0.8rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span::after {
    font-size: calc(0.8rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span::after {
    font-size: calc(0.8rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span::after {
    font-size: calc(0.8rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__image .product-card__badge span::after {
    font-size: calc(0.8rem + (1vw - 0.32rem) * (0));
  }
}
html body .product-list .product-cardwrap .product-card .product-card__image img {
  display: block;
  width: 100%;
  max-width: 359px;
  margin: 0 auto;
}
html body .product-list .product-cardwrap .product-card .product-card__title {
  font-weight: 700;
  letter-spacing: 0;
  margin: 1rem 0;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__title {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__title {
    font-size: calc(1.56rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__title {
    font-size: calc(1.52rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__title {
    font-size: calc(1.48rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__title {
    font-size: calc(1.44rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__title {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.4));
  }
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__title {
    float: left;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__price {
    float: left;
    width: 50%;
  }
}
html body .product-list .product-cardwrap .product-card .product-card__price p {
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before {
    font-size: calc(1.3rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before {
    font-size: calc(1.3rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before {
    font-size: calc(1.3rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before {
    font-size: calc(1.3rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0));
  }
}
html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span {
  letter-spacing: 0;
  font-weight: 500;
  margin-left: 0.5rem;
  text-decoration: line-through;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span {
    font-size: calc(1.56rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span {
    font-size: calc(1.52rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span {
    font-size: calc(1.48rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span {
    font-size: calc(1.44rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span.tax::after {
  content: "(税込)";
  display: inline-block;
  text-decoration: none;
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span.tax::after {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span.tax::after {
    font-size: calc(1.16rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span.tax::after {
    font-size: calc(1.12rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span.tax::after {
    font-size: calc(1.08rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span.tax::after {
    font-size: calc(1.04rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--before span.tax::after {
    font-size: calc(1rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after {
  text-align: right;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after {
    font-size: calc(1.3rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after {
    font-size: calc(1.3rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after {
    font-size: calc(1.3rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after {
    font-size: calc(1.3rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after {
    margin-top: 0.8rem;
  }
}
html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span {
  letter-spacing: 0;
  font-weight: 500;
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
@media screen and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span {
    margin-left: 0;
  }
}
html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.yen::before {
  content: "¥";
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.yen::before {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.yen::before {
    font-size: calc(1.16rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.yen::before {
    font-size: calc(1.12rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.yen::before {
    font-size: calc(1.08rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.yen::before {
    font-size: calc(1.04rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.yen::before {
    font-size: calc(1rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.tax::after {
  content: "(税込)";
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.tax::after {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.tax::after {
    font-size: calc(1.16rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.tax::after {
    font-size: calc(1.12rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.tax::after {
    font-size: calc(1.08rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.tax::after {
    font-size: calc(1.04rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--after span.tax::after {
    font-size: calc(1rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--nosale {
  color: #333333;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__price p.product-card__price--nosale {
    margin-top: 0;
  }
}
@media screen and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__price .product-card__price--textbox {
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__price .product-card__price--textbox p.product-card__price--after {
    text-align: left;
  }
}
html body .product-list .product-cardwrap .product-card .product-card__actions {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__actions {
    clear: both;
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product-card .product-card__actions .product__button {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product-card .product-card__actions .product__button {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product-card .product-card__actions .product__button {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product-card .product-card__actions .product__button {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product-card .product-card__actions .product__button {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product-card .product-card__actions .product__button {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body .product-list .product-cardwrap .product__button-buybox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 3rem;
}
html body .product-list .product-cardwrap .product__button-buybox .product__button {
  flex-basis: 48%;
  margin: 1rem 1% 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.3rem;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: calc(0.8rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: calc(0.8rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: calc(0.8rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: calc(0.8rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: calc(0.8rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    max-width: 100%;
    height: auto;
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: calc(1.1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: calc(1.1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: calc(1.1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: calc(1.1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  html body .product-list .product-cardwrap .product__button-buybox .product__button {
    font-size: calc(1.1rem + (1vw - 0.32rem) * (0));
  }
}
html body .product-list .product-cardwrap .product__button-buybox.product__button-buybox-warranty .product__button-buy {
  margin: 1.25rem 0.5% 0;
}
html body .product-list .product-cardwrap .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty {
  position: relative;
}
html body .product-list .product-cardwrap .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
  content: "3年保証";
  position: absolute;
  background-color: #FF0000;
  padding: 0.25rem 1rem;
  box-sizing: border-box;
  border-radius: 50px;
  color: #ffffff;
  right: -5px;
  bottom: -10px;
}
@media only screen and (min-width: 1200px) {
  html body .product-list .product-cardwrap .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product-list .product-cardwrap .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product-list .product-cardwrap .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product-list .product-cardwrap .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product-list .product-cardwrap .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .product-list .product-cardwrap .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(1rem + (1vw - 0.32rem) * (0));
  }
}
html body .spec {
  margin-top: 5rem;
}
html body .spec .spec__table-title {
  text-align: center;
  letter-spacing: 0.06em;
  margin: 4rem 0 1rem;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body .spec .spec__table-title {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .spec .spec__table-title {
    font-size: calc(1.78rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .spec .spec__table-title {
    font-size: calc(1.76rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .spec .spec__table-title {
    font-size: calc(1.74rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .spec .spec__table-title {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .spec .spec__table-title {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .spec .spec__table-title.spec__table-title--mobile {
  margin-top: 8rem;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  html body .spec .spec__table-title.spec__table-title--mobile {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .spec .spec__table-title.spec__table-title--mobile {
    font-size: calc(1.76rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .spec .spec__table-title.spec__table-title--mobile {
    font-size: calc(1.72rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .spec .spec__table-title.spec__table-title--mobile {
    font-size: calc(1.68rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .spec .spec__table-title.spec__table-title--mobile {
    font-size: calc(1.64rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .spec .spec__table-title.spec__table-title--mobile {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .spec .spec__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #333333;
}
html body .spec .spec__table th,
html body .spec .spec__table td {
  border: 1px solid #333333;
  text-align: center;
  padding: 1rem;
  vertical-align: middle;
  font-weight: 400;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body .spec .spec__table th,
  html body .spec .spec__table td {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .spec .spec__table th,
  html body .spec .spec__table td {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .spec .spec__table th,
  html body .spec .spec__table td {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .spec .spec__table th,
  html body .spec .spec__table td {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .spec .spec__table th,
  html body .spec .spec__table td {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .spec .spec__table th,
  html body .spec .spec__table td {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body .spec .spec__table th {
  background-color: #dddddd;
}
html body .spec .spec__note {
  line-height: 1.417;
  letter-spacing: 0;
  padding-top: 1.2rem;
}
@media only screen and (min-width: 1200px) {
  html body .spec .spec__note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .spec .spec__note {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .spec .spec__note {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .spec .spec__note {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .spec .spec__note {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .spec .spec__note {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body .spec.spec_410 tr td:last-child {
  display: none;
}
html body .spec.spec_230 tr td:nth-child(2) {
  display: none;
}
html body .spec__attention {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  html body .spec__attention {
    margin-top: 3rem;
  }
}
html body .spec__attention .spec__attention-title {
  letter-spacing: 0;
  border-bottom: 1px solid;
  padding-bottom: 1rem;
  margin: 10rem 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body .spec__attention .spec__attention-title {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .spec__attention .spec__attention-title {
    font-size: calc(1.38rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .spec__attention .spec__attention-title {
    font-size: calc(1.36rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .spec__attention .spec__attention-title {
    font-size: calc(1.34rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .spec__attention .spec__attention-title {
    font-size: calc(1.32rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .spec__attention .spec__attention-title {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .spec__attention .spec__attention-list li {
  text-indent: -1.2rem;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .spec__attention .spec__attention-list li {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .spec__attention .spec__attention-list li {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .spec__attention .spec__attention-list li {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .spec__attention .spec__attention-list li {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .spec__attention .spec__attention-list li {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .spec__attention .spec__attention-list li {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body .spec__attention .spec__attention-list li::before {
  content: "●";
}
html body .comfort__comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 3px solid #0091DB;
  table-layout: fixed;
}
@media screen and (max-width: 991px) {
  html body .comfort__comparison-table {
    table-layout: auto;
  }
}
html body .comfort__comparison-table th,
html body .comfort__comparison-table td {
  border: 2px solid #0091DB;
  text-align: center;
  padding: 2rem 0.5rem;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
  html body .comfort__comparison-table th:not(:first-child),
  html body .comfort__comparison-table td:not(:first-child) {
    min-width: 150px;
    max-width: 150px;
    white-space: normal;
  }
}
html body .comfort__comparison-table th {
  font-weight: 500;
}
html body .comfort__comparison-table th img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 195px;
  padding-top: 1.5rem;
}
html body .comfort__comparison-table td {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%;
}
@media only screen and (min-width: 1200px) {
  html body .comfort__comparison-table td {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .comfort__comparison-table td {
    font-size: calc(1.48rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .comfort__comparison-table td {
    font-size: calc(1.46rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .comfort__comparison-table td {
    font-size: calc(1.44rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .comfort__comparison-table td {
    font-size: calc(1.42rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .comfort__comparison-table td {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.2));
  }
}
@media screen and (max-width: 575px) {
  html body .comfort__comparison-table td {
    background-size: 50%;
  }
}
html body .comfort__comparison-table .bg-color--blue {
  background-color: rgba(0, 145, 219, 0.12);
}
html body .comfort__comparison-table .mark_circle {
  background-image: url(../../images/about-jvc-litheli/mark-circle.svg);
}
html body .comfort__comparison-table .mark_cross {
  background-image: url(../../images/about-jvc-litheli/mark-cross.svg);
}
html body .solar__table-heading {
  text-align: center;
  font-weight: 500;
  margin: 3rem 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body .solar__table-heading {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .solar__table-heading {
    font-size: calc(2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .solar__table-heading {
    font-size: calc(2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .solar__table-heading {
    font-size: calc(2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .solar__table-heading {
    font-size: calc(2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .solar__table-heading {
    font-size: calc(2rem + (1vw - 0.32rem) * (0));
  }
}
html body .solar__table {
  width: 100%;
  border-collapse: collapse;
  border: 3px solid #0091DB;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  html body .solar__table {
    table-layout: auto;
  }
}
html body .solar__table th,
html body .solar__table td {
  border: 3px solid #0091DB;
  text-align: center;
  padding: 0.8rem 0.5rem;
  vertical-align: middle;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body .solar__table th,
  html body .solar__table td {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .solar__table th,
  html body .solar__table td {
    font-size: calc(1.3rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .solar__table th,
  html body .solar__table td {
    font-size: calc(1.3rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .solar__table th,
  html body .solar__table td {
    font-size: calc(1.3rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .solar__table th,
  html body .solar__table td {
    font-size: calc(1.3rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .solar__table th,
  html body .solar__table td {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0));
  }
}
html body .solar__table th {
  color: #0091DB;
  line-height: 1.222;
  font-weight: 600;
}
html body .solar__table th:nth-child(3), html body .solar__table th:nth-child(4), html body .solar__table th:nth-child(5) {
  width: 20%;
}
html body .solar__table th img {
  display: block;
  margin: 0.5rem auto 0;
  max-width: 40px;
}
html body .usage-table {
  padding-bottom: 1rem;
}
html body .usage-table .usage__title {
  font-weight: 500;
  text-align: center;
  margin: 4rem 0 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .usage-table .usage__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .usage-table .usage__title {
    font-size: calc(2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .usage-table .usage__title {
    font-size: calc(2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .usage-table .usage__title {
    font-size: calc(2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .usage-table .usage__title {
    font-size: calc(2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .usage-table .usage__title {
    font-size: calc(2rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body .usage-table .usage__tables {
    display: block;
  }
}
html body .usage-table .usage__tables .scroll {
  width: 100%;
  flex-basis: 49%;
}
html body .usage-table .usage__tables .usage__table {
  width: 100%;
  border-collapse: collapse;
}
html body .usage-table .usage__tables .usage__table th,
html body .usage-table .usage__tables .usage__table td {
  padding: 1rem 0.5rem;
  text-align: center;
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  html body .usage-table .usage__tables .usage__table th,
  html body .usage-table .usage__tables .usage__table td {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .usage-table .usage__tables .usage__table th,
  html body .usage-table .usage__tables .usage__table td {
    font-size: calc(1.44rem + (1vw - 0.992rem) * (0.2898550725));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .usage-table .usage__tables .usage__table th,
  html body .usage-table .usage__tables .usage__table td {
    font-size: calc(1.38rem + (1vw - 0.768rem) * (0.269058296));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .usage-table .usage__tables .usage__table th,
  html body .usage-table .usage__tables .usage__table td {
    font-size: calc(1.32rem + (1vw - 0.576rem) * (0.3141361257));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .usage-table .usage__tables .usage__table th,
  html body .usage-table .usage__tables .usage__table td {
    font-size: calc(1.26rem + (1vw - 0.421rem) * (0.3896103896));
  }
}
@media only screen and (max-width: 420px) {
  html body .usage-table .usage__tables .usage__table th,
  html body .usage-table .usage__tables .usage__table td {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.6));
  }
}
html body .usage-table .usage__tables .usage__table th {
  font-weight: 500;
}
html body .usage-table .usage__tables .usage__table thead {
  border-bottom: 2px solid #0091DB;
  color: #0091DB;
}
html body .usage-table .usage__tables .usage__table thead th {
  border-left: 1px solid #0091DB;
  border-right: 1px solid #0091DB;
}
html body .usage-table .usage__tables .usage__table thead th:first-child {
  border-left: none;
  width: 40%;
}
html body .usage-table .usage__tables .usage__table thead th :not(:first-child) {
  width: 30%;
}
html body .usage-table .usage__tables .usage__table thead th:last-child {
  border-right: none;
}
html body .usage-table .usage__tables .usage__table tbody tr:last-child th,
html body .usage-table .usage__tables .usage__table tbody tr:last-child td {
  border-bottom: none;
}
html body .usage-table .usage__tables .usage__table tbody th {
  border-bottom: 1px solid #0091DB;
}
html body .usage-table .usage__tables .usage__table tbody th:first-child {
  border-left: none;
}
html body .usage-table .usage__tables .usage__table tbody th .usage__item-th {
  display: flex;
  align-items: center;
  justify-content: center;
}
html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-img img {
  min-width: 24px;
}
html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label {
  padding-left: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70%;
}
html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-name {
  color: #0091DB;
  display: block;
}
html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-watt {
  border: 1px solid;
  display: inline-block;
  padding: 0rem 0.5rem;
  margin: 0.2rem 0;
}
@media only screen and (min-width: 1200px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-watt {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-watt {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-watt {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-watt {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-watt {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-watt {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-unit {
  display: block;
}
@media only screen and (min-width: 1200px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-unit {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-unit {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-unit {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-unit {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-unit {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .usage-table .usage__tables .usage__table tbody th .usage__item-th .usage__item-label > span.usage__item-unit {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body .usage-table .usage__tables .usage__table tbody td {
  border: 1px solid #0091DB;
}
html body .usage-table .usage__tables .usage__table tbody td:last-child {
  border-right: none;
}
html body .usage-table .usage__notes {
  margin-top: 3rem;
}
html body .usage-table .usage__notes .usage__note {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1200px) {
  html body .usage-table .usage__notes .usage__note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .usage-table .usage__notes .usage__note {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .usage-table .usage__notes .usage__note {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .usage-table .usage__notes .usage__note {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .usage-table .usage__notes .usage__note {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .usage-table .usage__notes .usage__note {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body .smartlink {
  padding: 4rem 1rem 1rem;
}
html body .smartlink.smartlink__grey {
  background-color: transparent;
}
@media screen and (max-width: 991px) {
  html body .smartlink {
    padding: 2.5rem 1rem 0.1rem;
  }
}
html body .smartlink .smartlink__inner {
  max-width: 920px;
}
html body .smartlink .smartlink__intro {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 1rem 2rem 0;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  html body .smartlink .smartlink__intro {
    padding: 3rem 1rem 0;
  }
}
html body .smartlink .smartlink__intro .smartlink__lead {
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
}
@media only screen and (min-width: 1200px) {
  html body .smartlink .smartlink__intro .smartlink__lead {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .smartlink .smartlink__intro .smartlink__lead {
    font-size: calc(1.5rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .smartlink .smartlink__intro .smartlink__lead {
    font-size: calc(1.5rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .smartlink .smartlink__intro .smartlink__lead {
    font-size: calc(1.5rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .smartlink .smartlink__intro .smartlink__lead {
    font-size: calc(1.5rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .smartlink .smartlink__intro .smartlink__lead {
    font-size: calc(1.5rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body .smartlink .smartlink__intro .smartlink__lead {
    letter-spacing: 0;
  }
}
html body .smartlink .smartlink__intro .smartlink__title {
  text-align: center;
  font-weight: 500;
  color: #0091DB;
  margin: 1rem 0;
  line-height: 1.5;
}
@media only screen and (min-width: 1200px) {
  html body .smartlink .smartlink__intro .smartlink__title {
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .smartlink .smartlink__intro .smartlink__title {
    font-size: calc(1.9rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .smartlink .smartlink__intro .smartlink__title {
    font-size: calc(1.9rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .smartlink .smartlink__intro .smartlink__title {
    font-size: calc(1.9rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .smartlink .smartlink__intro .smartlink__title {
    font-size: calc(1.9rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .smartlink .smartlink__intro .smartlink__title {
    font-size: calc(1.9rem + (1vw - 0.32rem) * (0));
  }
}
html body .smartlink .smartlink__intro .smartlink__title .smartlink__title_black {
  color: #333333;
}
html body .smartlink .smartlink__intro .smartlink__line {
  width: 96px;
  height: 3px;
  margin: 0 auto 10px;
  background-color: #0091DB;
}
html body .smartlink .smartlink__intro .smartlink__image_logo {
  max-width: 200px;
  display: flex;
  justify-content: center;
  margin: 0 auto 10px;
}
html body .smartlink .smartlink__intro .smartlink__image_main {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
html body .smartlink .smartlink__intro .smartlink__detail {
  display: flex;
  align-items: end;
  padding-top: 0rem;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  html body .smartlink .smartlink__intro .smartlink__detail {
    margin-top: -10px;
  }
}
@media screen and (max-width: 575px) {
  html body .smartlink .smartlink__intro .smartlink__detail {
    padding-top: 1rem;
    margin-top: 0;
    display: block;
  }
}
html body .smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap {
  padding-right: 1rem;
}
html body .smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.01rem;
}
@media only screen and (min-width: 1200px) {
  html body .smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: calc(1.4rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: calc(1.4rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: calc(1.4rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .smartlink .smartlink__intro .smartlink__detail .smartlink__textwrap .smartlink__text {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
html body .smartlink .smartlink__intro .smartlink__detail .smartlink__image img {
  min-width: 110px;
  max-width: 110px;
}
@media screen and (max-width: 575px) {
  html body .smartlink .smartlink__intro .smartlink__detail .smartlink__image img {
    margin: 0 auto;
    display: block;
  }
}
html body .smartlink .smartlink__intro .smartlink__subtitle {
  margin-bottom: 10px;
  background-color: #0091DB;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body .smartlink .smartlink__intro .smartlink__subtitle {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .smartlink .smartlink__intro .smartlink__subtitle {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .smartlink .smartlink__intro .smartlink__subtitle {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .smartlink .smartlink__intro .smartlink__subtitle {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .smartlink .smartlink__intro .smartlink__subtitle {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .smartlink .smartlink__intro .smartlink__subtitle {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .smartlink .smartlink__intro .smartlink__info {
  margin-bottom: 10px;
  text-align: center;
  color: #333333;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body .smartlink .smartlink__intro .smartlink__info {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .smartlink .smartlink__intro .smartlink__info {
    font-size: calc(1.56rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .smartlink .smartlink__intro .smartlink__info {
    font-size: calc(1.52rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .smartlink .smartlink__intro .smartlink__info {
    font-size: calc(1.48rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .smartlink .smartlink__intro .smartlink__info {
    font-size: calc(1.44rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .smartlink .smartlink__intro .smartlink__info {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .smartlink .smartlink__intro .smartlink__list {
  display: flex;
  gap: 10px;
  padding-bottom: 40px;
}
@media screen and (max-width: 991px) {
  html body .smartlink .smartlink__intro .smartlink__list {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  html body .smartlink .smartlink__intro .smartlink__list {
    max-width: 375px;
  }
}
html body .smartlink .smartlink__intro .smartlink__list .smartlink__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 991px) {
  html body .smartlink .smartlink__intro .smartlink__list .smartlink__item {
    flex: 0 0 calc((100% - 20px) / 3);
  }
}
html body .smartlink .smartlink__intro .smartlink__list .smartlink__item p {
  margin-top: 12px;
  text-align: center;
  color: #333333;
}
@media only screen and (min-width: 1200px) {
  html body .smartlink .smartlink__intro .smartlink__list .smartlink__item p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .smartlink .smartlink__intro .smartlink__list .smartlink__item p {
    font-size: calc(1.14rem + (1vw - 0.992rem) * (0.2898550725));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .smartlink .smartlink__intro .smartlink__list .smartlink__item p {
    font-size: calc(1.08rem + (1vw - 0.768rem) * (0.269058296));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .smartlink .smartlink__intro .smartlink__list .smartlink__item p {
    font-size: calc(1.02rem + (1vw - 0.576rem) * (0.3141361257));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .smartlink .smartlink__intro .smartlink__list .smartlink__item p {
    font-size: calc(0.96rem + (1vw - 0.421rem) * (0.3896103896));
  }
}
@media only screen and (max-width: 420px) {
  html body .smartlink .smartlink__intro .smartlink__list .smartlink__item p {
    font-size: calc(0.9rem + (1vw - 0.32rem) * (0.6));
  }
}
html body .smartlink .smartlink__buttons {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  html body .smartlink .smartlink__buttons {
    display: block;
  }
}
html body .smartlink .smartlink__buttons .smartlink__button {
  flex-basis: 49%;
}
html body .smartlink .smartlink__buttons .smartlink__button .more-btn__link:last-child {
  margin-bottom: 1rem;
}
html body .emergency .wrapper {
  margin: 1rem auto 0;
  padding: 0;
}
html body .emergency .emergency__heading {
  background-image: url(../../images/about-jvc-litheli/emergency-bg-pc.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 850px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  html body .emergency .emergency__heading {
    background-image: url(../../images/about-jvc-litheli/emergency-bg-sp.webp);
    background-size: contain;
    height: 700px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 575px) {
  html body .emergency .emergency__heading {
    height: 450px;
    margin-bottom: 0;
  }
}
html body .emergency .emergency__heading .emergency__title {
  color: #ffffff;
  writing-mode: vertical-rl;
  font-weight: 500;
  margin: 0 auto;
  padding-top: 6rem;
  letter-spacing: 0.2em;
}
@media only screen and (min-width: 1200px) {
  html body .emergency .emergency__heading .emergency__title {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .emergency .emergency__heading .emergency__title {
    font-size: calc(2.68rem + (1vw - 0.992rem) * (1.5458937198));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .emergency .emergency__heading .emergency__title {
    font-size: calc(2.36rem + (1vw - 0.768rem) * (1.4349775785));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .emergency .emergency__heading .emergency__title {
    font-size: calc(2.04rem + (1vw - 0.576rem) * (1.6753926702));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .emergency .emergency__heading .emergency__title {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (2.0779220779));
  }
}
@media only screen and (max-width: 420px) {
  html body .emergency .emergency__heading .emergency__title {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (3.2));
  }
}
html body .emergency .emergency__lead {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.6;
  padding: 0 2rem 3rem;
}
@media only screen and (min-width: 1200px) {
  html body .emergency .emergency__lead {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .emergency .emergency__lead {
    font-size: calc(1.92rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .emergency .emergency__lead {
    font-size: calc(1.84rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .emergency .emergency__lead {
    font-size: calc(1.76rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .emergency .emergency__lead {
    font-size: calc(1.68rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body .emergency .emergency__lead {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.8));
  }
}
html body#portable-powersupply-410 .emergency .emergency__heading {
  background-image: url(../../images/about-jvc-litheli/emergency_bg-410.webp);
  height: 626px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  html body#portable-powersupply-410 .emergency .emergency__heading {
    background-image: url(../../images/about-jvc-litheli/emergency_bg-410-sp.webp);
  }
}
@media screen and (max-width: 575px) {
  html body#portable-powersupply-410 .emergency .emergency__heading {
    height: 450px;
    margin-bottom: 0;
  }
}
html body#portable-powersupply-230 .emergency .emergency__heading {
  height: 626px;
}
@media screen and (max-width: 575px) {
  html body#portable-powersupply-230 .emergency .emergency__heading {
    height: 450px;
    margin-bottom: 0;
  }
}
html body.error404 main {
  text-align: center;
}
html body.error404 main h1 {
  font-weight: 600;
  padding: 4rem 0 2rem;
}
@media only screen and (min-width: 1200px) {
  html body.error404 main h1 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.error404 main h1 {
    font-size: calc(2.32rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.error404 main h1 {
    font-size: calc(2.24rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.error404 main h1 {
    font-size: calc(2.16rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.error404 main h1 {
    font-size: calc(2.08rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body.error404 main h1 {
    font-size: calc(2rem + (1vw - 0.32rem) * (0.8));
  }
}
html body.error404 main h2 {
  font-weight: 500;
  padding: 0 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body.error404 main h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body.error404 main h2 {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body.error404 main h2 {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body.error404 main h2 {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body.error404 main h2 {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body.error404 main h2 {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body.error404 main .more-btn {
  margin-top: 2rem;
}
html body.error404 main .more-btn a {
  max-width: 250px;
}
html body .product__button {
  color: #ffffff;
  border-radius: 999px;
  text-align: center;
  padding: 0;
  display: block;
  width: 80%;
  letter-spacing: 0;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  html body .product__button {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product__button {
    font-size: calc(1.4rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product__button {
    font-size: calc(1.4rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product__button {
    font-size: calc(1.4rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product__button {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .product__button {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 1199px) {
  html body .product__button {
    display: block;
    max-width: 160px;
    margin: 0 auto 1rem;
  }
}
@media screen and (max-width: 767px) {
  html body .product__button {
    margin: 0;
  }
}
html body .product__button.product__button-look {
  background-color: #0091DB;
  border: 2px solid #0091DB;
  margin-right: 1rem;
  padding: 0.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
html body .product__button.product__button-look:hover {
  background-color: #ffffff;
  color: #0091DB;
}
@media screen and (max-width: 1199px) {
  html body .product__button.product__button-look {
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  html body .product__button.product__button-look {
    margin: 0;
    width: 100%;
  }
}
html body .product__button.product__button-look::after {
  content: "＞";
  padding-left: 0.6rem;
}
html body .product__button.product__button-buy {
  background-color: #ffffff;
  border: 2px solid #FFA200;
  color: #333333;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media only screen and (min-width: 1200px) {
  html body .product__button.product__button-buy {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product__button.product__button-buy {
    font-size: calc(1.28rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product__button.product__button-buy {
    font-size: calc(1.26rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product__button.product__button-buy {
    font-size: calc(1.24rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product__button.product__button-buy {
    font-size: calc(1.22rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .product__button.product__button-buy {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .product__button.product__button-buy:hover {
  background-color: #FFA200;
  color: #ffffff;
}
html body .recommend-products {
  padding-bottom: 4rem;
}
html body .situation__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
@media screen and (max-width: 991px) {
  html body .situation__list {
    gap: 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body .situation__list {
    justify-content: center;
  }
}
html body .situation__list .situation__item {
  flex: 0 0 calc((100% - 3rem) / 4);
}
@media screen and (max-width: 991px) {
  html body .situation__list .situation__item {
    flex: 0 0 calc((100% - 2rem) / 3);
  }
}
@media screen and (max-width: 767px) {
  html body .situation__list .situation__item {
    flex: 0 0 calc((100% - 1rem) / 2);
  }
}
@media screen and (max-width: 575px) {
  html body .situation__list .situation__item {
    flex: auto;
    max-width: 100%;
    width: 100%;
  }
}
html body .situation__list .situation__item img {
  max-width: 40px;
  width: 100%;
}
html body .situation__list .situation__item:nth-child(n+5) {
  margin-top: 1rem;
}
@media screen and (max-width: 991px) {
  html body .situation__list .situation__item:nth-child(n+5) {
    margin-top: 0;
  }
}
html body .situation__list .situation__item .situation__link {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 1rem;
  width: 100%;
  height: 100%;
  max-height: 60px;
  position: relative;
}
html body .situation__list .situation__item .situation__link::after {
  content: "";
  background-image: url(../../images/index/icon-arrow.svg);
  background-size: contain;
  display: inline-block;
  width: 16px;
  height: 10px;
  position: absolute;
  right: 1rem;
}
html body .situation__list .situation__item .situation__link .situation__text {
  letter-spacing: 0.03em;
  line-height: 1.5;
  padding: 0 1rem;
}
@media only screen and (min-width: 1200px) {
  html body .situation__list .situation__item .situation__link .situation__text {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .situation__list .situation__item .situation__link .situation__text {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .situation__list .situation__item .situation__link .situation__text {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .situation__list .situation__item .situation__link .situation__text {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .situation__list .situation__item .situation__link .situation__text {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .situation__list .situation__item .situation__link .situation__text {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body .situations-page .situation__list .situation__link {
  background-color: #F7F7F7;
}
html body .usage__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}
@media screen and (max-width: 575px) {
  html body .usage__list {
    justify-content: center;
  }
}
html body .usage__list .usage__item {
  padding-right: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 575px) {
  html body .usage__list .usage__item {
    flex-basis: 33.3333333333%;
  }
}
html body .usage__list .usage__item .usage__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 .usage__list .usage__item .usage__item-text {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .usage__list .usage__item .usage__item-text {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .usage__list .usage__item .usage__item-text {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .usage__list .usage__item .usage__item-text {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .usage__list .usage__item .usage__item-text {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .usage__list .usage__item .usage__item-text {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body .feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  html body .feature-list {
    display: block;
  }
}
html body .feature-list .feature-card {
  flex-basis: 49%;
}
html body .feature-list .feature-card:nth-child(1) a {
  background-image: url(../../images/index/feature01.webp);
  margin-bottom: 2rem;
}
html body .feature-list .feature-card:nth-child(2) a {
  background-image: url(../../images/index/feature02.webp);
  margin-bottom: 2rem;
}
html body .feature-list .feature-card:nth-child(3) a {
  background-image: url(../../images/index/feature03.webp);
}
@media screen and (max-width: 767px) {
  html body .feature-list .feature-card:nth-child(3) a {
    margin-bottom: 2rem;
  }
}
html body .feature-list .feature-card:nth-child(4) a {
  background-image: url(../../images/index/feature04.webp);
}
html body .feature-list .feature-card .feature-card__link {
  display: block;
  border-radius: 15px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding: 2.5rem;
  height: 295px;
}
@media screen and (max-width: 767px) {
  html body .feature-list .feature-card .feature-card__link {
    padding: 1.5rem;
    background-position: right bottom;
    height: 195px;
  }
}
html body .feature-list .feature-card .feature-card__link .feature-card__label {
  color: #ffffff;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 1200px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__label {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__label {
    font-size: calc(1.72rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__label {
    font-size: calc(1.64rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__label {
    font-size: calc(1.56rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__label {
    font-size: calc(1.48rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__label {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.8));
  }
}
html body .feature-list .feature-card .feature-card__link .feature-card__title {
  color: #ffffff;
  line-height: 1.471;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 1200px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__title {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__title {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__title {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__title {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .feature-list .feature-card .feature-card__link .feature-card__title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .contents {
  padding: 4rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body .contents {
    padding: 3.75rem 0;
  }
}
html body .contents h2 {
  letter-spacing: 0.1em;
  line-height: 1.6em;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1200px) {
  html body .contents h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .contents h2 {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .contents h2 {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .contents h2 {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .contents h2 {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .contents h2 {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
@media screen and (max-width: 1199px) {
  html body .contents h2 {
    margin-bottom: 20px;
  }
}
html body .contents h2 span {
  display: block;
  font-family: "Noto Sans JP";
  position: relative;
  margin-top: 15px;
}
@media only screen and (min-width: 1200px) {
  html body .contents h2 span {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .contents h2 span {
    font-size: calc(1.58rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .contents h2 span {
    font-size: calc(1.56rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .contents h2 span {
    font-size: calc(1.54rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .contents h2 span {
    font-size: calc(1.52rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .contents h2 span {
    font-size: calc(1.5rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .contents h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 20px;
  height: 1px;
  background-color: #555;
}
html body .contents .more a {
  color: #0091DB;
  display: inline-block;
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  html body .contents .more a {
    margin-top: 40px;
  }
}
html body .contents .more a:hover::after {
  width: 0;
  transition: 0.6s;
}
html body .contents .more a::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -22px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent transparent #0091DB transparent;
}
html body .contents .more a::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  height: 1px;
  width: calc(100% + 20px);
  background-color: #0091DB;
  transition: 0.6s;
}
html body .po-overview {
  background-color: #f1efe9;
  padding-bottom: 4rem;
}
html body .po-overview h2 {
  text-align: center;
  padding: 4rem 0 1.5rem;
  font-weight: 500;
  margin: 0;
}
@media only screen and (min-width: 1200px) {
  html body .po-overview h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .po-overview h2 {
    font-size: calc(2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .po-overview h2 {
    font-size: calc(2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .po-overview h2 {
    font-size: calc(2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .po-overview h2 {
    font-size: calc(2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .po-overview h2 {
    font-size: calc(2rem + (1vw - 0.32rem) * (0));
  }
}
html body .po-overview table.overview-table {
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .po-overview table.overview-table {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .po-overview table.overview-table {
    font-size: calc(1.18rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .po-overview table.overview-table {
    font-size: calc(1.16rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .po-overview table.overview-table {
    font-size: calc(1.14rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .po-overview table.overview-table {
    font-size: calc(1.12rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .po-overview table.overview-table {
    font-size: calc(1.1rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .po-overview table.overview-table tbody tr th {
  white-space: nowrap;
}
html body .po-overview table.overview-table tr th,
html body .po-overview table.overview-table tr td {
  border-bottom: #333 solid 1px;
  padding: 1rem;
}
html body .po-overview table.overview-table tr th {
  vertical-align: middle;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body .po-overview table.overview-table tr th {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .po-overview table.overview-table tr th {
    font-size: calc(1.3rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .po-overview table.overview-table tr th {
    font-size: calc(1.3rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .po-overview table.overview-table tr th {
    font-size: calc(1.3rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .po-overview table.overview-table tr th {
    font-size: calc(1.3rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .po-overview table.overview-table tr th {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0));
  }
}
html body .po-overview table.overview-table tr td {
  border-left: 1px solid #333333;
  letter-spacing: 0;
}
html body .po-overview table.overview-table tr td .flex {
  display: flex;
  gap: 8%;
}
html body .po-overview table.overview-table tr td .flex span {
  letter-spacing: 0;
}
html body .po-overview table.overview-table tr.images th {
  border-left: 1px solid #333333;
  text-align: center;
}
html body .po-overview table.overview-table tr.images th p {
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body .po-overview table.overview-table tr.images th p {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .po-overview table.overview-table tr.images th p {
    font-size: calc(1.26rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .po-overview table.overview-table tr.images th p {
    font-size: calc(1.22rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .po-overview table.overview-table tr.images th p {
    font-size: calc(1.18rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .po-overview table.overview-table tr.images th p {
    font-size: calc(1.14rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .po-overview table.overview-table tr.images th p {
    font-size: calc(1.1rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .po-overview table.overview-table tr.images th:first-child {
  border-left: none;
}
html body .po-overview table.overview-table tr.name th {
  border-left: 1px solid #333333;
  text-align: center;
  padding: 1rem 0.5rem;
}
html body .po-overview table.overview-table tr.name th p {
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  html body .po-overview table.overview-table tr.name th p {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .po-overview table.overview-table tr.name th p {
    font-size: calc(1.56rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .po-overview table.overview-table tr.name th p {
    font-size: calc(1.52rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .po-overview table.overview-table tr.name th p {
    font-size: calc(1.48rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .po-overview table.overview-table tr.name th p {
    font-size: calc(1.44rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .po-overview table.overview-table tr.name th p {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.4));
  }
}
html body .po-overview table.overview-table tr.name th a {
  border-radius: 999px;
  padding: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body .po-overview table.overview-table tr.name th a {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .po-overview table.overview-table tr.name th a {
    font-size: calc(1.18rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .po-overview table.overview-table tr.name th a {
    font-size: calc(1.16rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .po-overview table.overview-table tr.name th a {
    font-size: calc(1.14rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .po-overview table.overview-table tr.name th a {
    font-size: calc(1.12rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .po-overview table.overview-table tr.name th a {
    font-size: calc(1.1rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .po-overview table.overview-table tr.name th a.look {
  background-color: #0091DB;
  color: #ffffff;
  border: 2px solid #0091DB;
  display: block;
  margin: 1rem auto 0;
  width: 55%;
  padding: 0.5rem;
}
html body .po-overview table.overview-table tr.name th a.look::after {
  content: "＞";
}
html body .po-overview table.overview-table tr.name th a.look:hover {
  background-color: #ffffff;
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body .po-overview table.overview-table tr.name th a.product__button-buy {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .po-overview table.overview-table tr.name th a.product__button-buy {
    font-size: calc(1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .po-overview table.overview-table tr.name th a.product__button-buy {
    font-size: calc(1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .po-overview table.overview-table tr.name th a.product__button-buy {
    font-size: calc(1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .po-overview table.overview-table tr.name th a.product__button-buy {
    font-size: calc(1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .po-overview table.overview-table tr.name th a.product__button-buy {
    font-size: calc(1rem + (1vw - 0.32rem) * (0));
  }
}
html body .po-overview table.overview-table tr.name th:first-child {
  border-left: none;
}
html body .po-overview table.overview-table tr.price td {
  text-align: center;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body .po-overview table.overview-table tr.price td {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .po-overview table.overview-table tr.price td {
    font-size: calc(1.76rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .po-overview table.overview-table tr.price td {
    font-size: calc(1.72rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .po-overview table.overview-table tr.price td {
    font-size: calc(1.68rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .po-overview table.overview-table tr.price td {
    font-size: calc(1.64rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body .po-overview table.overview-table tr.price td {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
@media only screen and (min-width: 1200px) {
  html body .po-overview table.overview-table tr.price td span {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .po-overview table.overview-table tr.price td span {
    font-size: calc(1.18rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .po-overview table.overview-table tr.price td span {
    font-size: calc(1.16rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .po-overview table.overview-table tr.price td span {
    font-size: calc(1.14rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .po-overview table.overview-table tr.price td span {
    font-size: calc(1.12rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body .po-overview table.overview-table tr.price td span {
    font-size: calc(1.1rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .po-overview table.overview-table tbody tr:last-child th,
html body .po-overview table.overview-table tbody tr:last-child td {
  border-bottom: none;
}
html body .product__button-buybox {
  display: flex;
  flex-wrap: wrap;
}
html body .product__button-buybox .product__button-buy {
  margin: 1rem 0.5% 0;
  flex-basis: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 0.3rem;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  html body .product__button-buybox .product__button-buy {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product__button-buybox .product__button-buy {
    font-size: calc(1.1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product__button-buybox .product__button-buy {
    font-size: calc(1.1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product__button-buybox .product__button-buy {
    font-size: calc(1.1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product__button-buybox .product__button-buy {
    font-size: calc(1.1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .product__button-buybox .product__button-buy {
    font-size: calc(1.1rem + (1vw - 0.32rem) * (0));
  }
}
html body .product__button-buybox.product__button-buybox-warranty .product__button-buy {
  margin: 1.25rem 0.5% 0;
}
html body .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty {
  position: relative;
}
html body .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
  content: "3年保証";
  position: absolute;
  background-color: #FF0000;
  padding: 0.25rem 1rem;
  box-sizing: border-box;
  border-radius: 50px;
  color: #ffffff;
  right: -5px;
  bottom: -10px;
}
@media only screen and (min-width: 1200px) {
  html body .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(0.8rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(0.8rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(0.8rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(0.8rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .product__button-buybox.product__button-buybox-warranty .product__button-buy-warranty::after {
    font-size: calc(0.8rem + (1vw - 0.32rem) * (0));
  }
}
html body .smartlink__case .inner {
  padding: 5rem 4rem;
  box-sizing: border-box;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  html body .smartlink__case .inner {
    padding: 3rem 1rem;
  }
}
html body .smartlink__case .smartlink__case-heading {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  html body .smartlink__case .smartlink__case-heading {
    flex-direction: column;
    gap: 15px 0;
    margin-bottom: 2rem;
  }
}
html body .smartlink__case .smartlink__case-heading .smartlink__case-title {
  line-height: 1.8;
  color: #333333;
}
@media only screen and (min-width: 1200px) {
  html body .smartlink__case .smartlink__case-heading .smartlink__case-title {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .smartlink__case .smartlink__case-heading .smartlink__case-title {
    font-size: calc(2.12rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body .smartlink__case .smartlink__case-heading .smartlink__case-title {
    font-size: calc(2.04rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body .smartlink__case .smartlink__case-heading .smartlink__case-title {
    font-size: calc(1.96rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body .smartlink__case .smartlink__case-heading .smartlink__case-title {
    font-size: calc(1.88rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body .smartlink__case .smartlink__case-heading .smartlink__case-title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.8));
  }
}
html body .smartlink__case .smartlink__case-img {
  display: flex;
  justify-content: center;
  margin: 0 auto 36px;
}
html body .smartlink__case .smartlink__buttons {
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
}
html body .smartlink__case .smartlink__buttons .smartlink__button.more-btn {
  flex-basis: auto;
  max-width: 500px;
  width: 100%;
}
html body .smartlink__case .smartlink__buttons .smartlink__button .more-btn__link::after {
  width: 24px;
  height: 15px;
}
html body .smartlink__case .smartlink__buttons .smartlink__button .more-btn__readmore {
  min-width: 60px;
  min-height: 60px;
  margin-right: 10px;
}
@media only screen and (min-width: 1200px) {
  html body .smartlink__case .smartlink__buttons .smartlink__button .more-btn__readmore {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .more-btn__readmore {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body .smartlink__case .smartlink__buttons .smartlink__button .more-btn__readmore {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 991px) {
  html body .smartlink__case .smartlink__buttons .smartlink__button .more-btn__readmore {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  html body .smartlink__case .smartlink__buttons .smartlink__button .more-btn__title span:first-child {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .more-btn__title span:first-child {
    font-size: calc(2rem + (1vw - 0.32rem) * (0.8));
  }
}
@media only screen and (min-width: 1200px) {
  html body .smartlink__case .smartlink__buttons .smartlink__button .more-btn__title span:last-child {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .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 .smartlink__case .smartlink__buttons .smartlink__button .more-btn__title span:last-child {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
html body .slider {
  padding-top: 35px;
  padding-bottom: 50px;
}
@media screen and (max-width: 991px) {
  html body .slider {
    padding: 20px 0;
  }
}
html body .slider .swiper {
  padding-bottom: 35px;
}
html body .slider .swiper .swiper-pagination-bullet:nth-child(n+3) {
  display: none !important;
}
html body .slider .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
  opacity: 1;
}
html body .slider .swiper .swiper-button-prev,
html body .slider .swiper .swiper-button-next {
  width: 45px;
  height: 45px;
  background-color: #000000;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  html body .slider .swiper .swiper-button-prev,
  html body .slider .swiper .swiper-button-next {
    width: 25px;
    height: 25px;
  }
}
html body .slider .swiper .swiper-button-prev .swiper-button-arrow,
html body .slider .swiper .swiper-button-next .swiper-button-arrow {
  width: 13px;
  height: 13px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body .slider .swiper .swiper-button-prev .swiper-button-arrow,
  html body .slider .swiper .swiper-button-next .swiper-button-arrow {
    width: 7px;
    height: 7px;
  }
}
html body .slider .swiper .swiper-button-prev .swiper-button-arrow::before,
html body .slider .swiper .swiper-button-next .swiper-button-arrow::before {
  content: "";
  height: 1.5px;
  position: absolute;
  background: #ffffff;
  border-radius: 1px;
  top: 0;
  right: 0;
  left: 0;
}
html body .slider .swiper .swiper-button-prev .swiper-button-arrow::after,
html body .slider .swiper .swiper-button-next .swiper-button-arrow::after {
  content: "";
  width: 1.5px;
  position: absolute;
  background: #ffffff;
  border-radius: 1px;
  top: 0;
  right: 0;
  bottom: 0;
}
html body .slider .swiper .swiper-button-prev svg,
html body .slider .swiper .swiper-button-next svg {
  display: none;
  opacity: 0;
  visibility: hidden;
}
html body .slider .swiper .swiper-button-prev {
  padding-left: 5px;
}
html body .slider .swiper .swiper-button-prev .swiper-button-arrow {
  transform: rotate(225deg);
}
html body .slider .swiper .swiper-button-next {
  padding-right: 5px;
}
html body .slider .swiper .swiper-button-next .swiper-button-arrow {
  transform: rotate(45deg);
}
html body .slider .swiper .swiper-pagination {
  bottom: 0;
}
html body .slider .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 991px) {
  html body .slider .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

/*▼---.contents-post---------------------------------------*/
.contents-post .label-wrapper {
  margin-bottom: 15px;
}
.contents-post .label-wrapper .post-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  height: 100%;
  width: 100%;
  gap: 10px;
  line-height: 1.5;
}
.contents-post .label-wrapper .post-list .post-time {
  min-width: 88px;
}
.contents-post .label-wrapper .post-list .post-category span {
  display: inline-block;
  margin: 0 2px;
  color: #ffffff;
  padding: 0 5px;
}
@media only screen and (min-width: 1200px) {
  .contents-post .label-wrapper .post-list .post-category span {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contents-post .label-wrapper .post-list .post-category span {
    font-size: calc(1.3rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contents-post .label-wrapper .post-list .post-category span {
    font-size: calc(1.3rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contents-post .label-wrapper .post-list .post-category span {
    font-size: calc(1.3rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .contents-post .label-wrapper .post-list .post-category span {
    font-size: calc(1.3rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  .contents-post .label-wrapper .post-list .post-category span {
    font-size: calc(1.3rem + (1vw - 0.32rem) * (0));
  }
}

.contents-post-thumbnail,
.single-column-thumbnail {
  width: 100%;
}
.contents-post-thumbnail .post-list-thumbnail,
.single-column-thumbnail .post-list-thumbnail {
  width: 100%;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .contents-post-thumbnail .post-list-thumbnail,
  .single-column-thumbnail .post-list-thumbnail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .contents-post-thumbnail .post-list-thumbnail,
  .single-column-thumbnail .post-list-thumbnail {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.contents-post-thumbnail .post-list-thumbnail .post-list-box,
.single-column-thumbnail .post-list-thumbnail .post-list-box {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-box,
  .single-column-thumbnail .post-list-thumbnail .post-list-box {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 575px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-box .post-list-img,
  .single-column-thumbnail .post-list-thumbnail .post-list-box .post-list-img {
    width: 40%;
  }
}
@media screen and (max-width: 575px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-box .post-list-info,
  .single-column-thumbnail .post-list-thumbnail .post-list-box .post-list-info {
    width: 55%;
  }
}
.contents-post-thumbnail .post-list-thumbnail .post-list-img .bghover,
.single-column-thumbnail .post-list-thumbnail .post-list-img .bghover {
  padding-top: 66.6%;
  border-radius: 20px;
}
.contents-post-thumbnail .post-list-thumbnail .post-list-day,
.single-column-thumbnail .post-list-thumbnail .post-list-day {
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-day,
  .single-column-thumbnail .post-list-thumbnail .post-list-day {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-day,
  .single-column-thumbnail .post-list-thumbnail .post-list-day {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-day,
  .single-column-thumbnail .post-list-thumbnail .post-list-day {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-day,
  .single-column-thumbnail .post-list-thumbnail .post-list-day {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-day,
  .single-column-thumbnail .post-list-thumbnail .post-list-day {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-day,
  .single-column-thumbnail .post-list-thumbnail .post-list-day {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
.contents-post-thumbnail .post-list-thumbnail .post-list-data,
.single-column-thumbnail .post-list-thumbnail .post-list-data {
  padding: 0.5rem 0;
  display: block;
  margin-top: auto;
}
.contents-post-thumbnail .post-list-thumbnail .category-tag-list,
.single-column-thumbnail .post-list-thumbnail .category-tag-list {
  display: inline;
  margin-bottom: 5px;
}
.contents-post-thumbnail .post-list-thumbnail .category-tag-list li,
.single-column-thumbnail .post-list-thumbnail .category-tag-list li {
  display: inline-block;
  padding: 2px 5px 0px 0;
  line-height: 1.2;
}
.contents-post-thumbnail .post-list-thumbnail .category-tag-list li span,
.single-column-thumbnail .post-list-thumbnail .category-tag-list li span {
  color: #ffffff;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0;
  display: inline-block;
  line-height: 1.2;
}
@media only screen and (min-width: 1200px) {
  .contents-post-thumbnail .post-list-thumbnail .category-tag-list li span,
  .single-column-thumbnail .post-list-thumbnail .category-tag-list li span {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contents-post-thumbnail .post-list-thumbnail .category-tag-list li span,
  .single-column-thumbnail .post-list-thumbnail .category-tag-list li span {
    font-size: calc(1.08rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contents-post-thumbnail .post-list-thumbnail .category-tag-list li span,
  .single-column-thumbnail .post-list-thumbnail .category-tag-list li span {
    font-size: calc(1.06rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contents-post-thumbnail .post-list-thumbnail .category-tag-list li span,
  .single-column-thumbnail .post-list-thumbnail .category-tag-list li span {
    font-size: calc(1.04rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .contents-post-thumbnail .post-list-thumbnail .category-tag-list li span,
  .single-column-thumbnail .post-list-thumbnail .category-tag-list li span {
    font-size: calc(1.02rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  .contents-post-thumbnail .post-list-thumbnail .category-tag-list li span,
  .single-column-thumbnail .post-list-thumbnail .category-tag-list li span {
    font-size: calc(1rem + (1vw - 0.32rem) * (0.2));
  }
}
.contents-post-thumbnail .post-list-thumbnail .post-list-title,
.single-column-thumbnail .post-list-thumbnail .post-list-title {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  flex-shrink: 0;
  min-height: 4.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-title,
  .single-column-thumbnail .post-list-thumbnail .post-list-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-title,
  .single-column-thumbnail .post-list-thumbnail .post-list-title {
    font-size: calc(1.48rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-title,
  .single-column-thumbnail .post-list-thumbnail .post-list-title {
    font-size: calc(1.46rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-title,
  .single-column-thumbnail .post-list-thumbnail .post-list-title {
    font-size: calc(1.44rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-title,
  .single-column-thumbnail .post-list-thumbnail .post-list-title {
    font-size: calc(1.42rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-title,
  .single-column-thumbnail .post-list-thumbnail .post-list-title {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.2));
  }
}
@media screen and (max-width: 575px) {
  .contents-post-thumbnail .post-list-thumbnail .post-list-title,
  .single-column-thumbnail .post-list-thumbnail .post-list-title {
    min-height: auto;
    -webkit-line-clamp: unset;
  }
}

/*▲----.contents-post--------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/

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