@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: 155px;
}
@media screen and (max-width: 1199px) {
  html body .header-wrap {
    height: 190px;
  }
}
@media screen and (max-width: 991px) {
  html body .header-wrap {
    height: 96px;
  }
}
html body header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* ヘッダーの高さ */
  z-index: 100;
  background: rgba(255, 255, 255, 0.5294117647);
  transition: all 0.3s ease; /* 0.3秒かけて滑らかに移動 */
}
@media screen and (max-width: 991px) {
  html body header {
    height: 60px; /* ヘッダーの高さ */
  }
}
@media screen and (max-width: 575px) {
  html body header {
    background: #fff;
  }
}
html body header.active {
  background: #ffffff;
}
html body header.hide {
  transform: translateY(-100%); /* 高きの分だけ上に移動して隠す */
}
html body header .header-inner {
  max-width: 1760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0 9rem;
  z-index: 1;
  height: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1199px) {
  html body header .header-inner {
    padding: 0 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  html body header .header-inner {
    width: 100%;
    padding: 0 0 0 1.5rem;
  }
}
html body header .header-inner .logo-wrapper a {
  display: inline-block;
}
@media screen and (max-width: 1400px) {
  html body header .header-inner .logo-wrapper a img {
    max-width: 200px;
  }
}
@media screen and (max-width: 1199px) {
  html body header .header-inner .logo-wrapper a img {
    width: 100%;
  }
}
@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;
  letter-spacing: 0;
  position: relative;
  transition: color 0.3s ease;
  font-size: 15px;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a {
    font-size: 12px;
  }
}
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;
}
@media screen and (max-width: 1400px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a.btn-onlinestore {
    padding: 0 0 0.5rem 0.8rem;
  }
}
html body header .navigation .pc-nav nav.gloval-nav ul li a.btn-onlinestore:hover {
  color: #ffffff;
}
@media screen and (max-width: 1199px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li a.btn-onlinestore img {
    max-width: 150px;
  }
}
html body header .navigation .pc-nav nav.gloval-nav ul li + li {
  margin-left: 7rem;
}
@media screen and (max-width: 991px) {
  html body header .navigation .pc-nav nav.gloval-nav ul li + li {
    margin-left: 0;
  }
}
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;
  max-width: 1700px;
  margin: 0 auto;
}
@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: #e8e8e8;
  color: #0091DB;
  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: #0091DB;
  color: #ffffff;
}
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 nav ul li {
  opacity: 0;
  transition: 0.6s;
}
html body header .navigation .sp-nav nav ul li a .arrow-icon {
  opacity: 0;
}
html body footer {
  padding: 6rem 0 0;
  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));
  }
}
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-bottom: 2rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  html body footer .follow-subscribe {
    justify-content: center;
  }
}
html body footer .follow-subscribe .sns {
  display: flex;
}
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(4) 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;
  }
}
html body footer .newsletter {
  margin-bottom: 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;
  position: relative;
  text-align: center;
}
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: 1000px;
  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 .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 .bg-color--blue2 {
  background-color: #F2FBFF;
}
html body .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@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-cardwrap {
  border: 2px solid #0091DB;
  border-radius: 16px;
}
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 {
  margin-bottom: 3rem;
}
html body .product-list.u4smartlink_list .product-cardwrap {
  border: 2px solid #8FAD01;
  border-radius: 16px;
}
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.list_lp-set .product-cardwrap {
  border: 2px solid #0091DB;
  border-radius: 16px;
}
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: 0 0 calc((100% - 2rem) / 3);
  padding: 0 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap {
    flex: 1;
    margin-bottom: 1rem;
    padding: 0;
  }
}
html body .product-list .product-cardwrap .product-card {
  padding: 2rem 2rem 0;
  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;
}
@media screen and (max-width: 767px) {
  html body .product-list .product-cardwrap .product__button-buybox {
    margin: 0 1.5rem 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 .usage-table {
  padding-bottom: 1rem;
}
html body .usage-table .usage__title {
  display: none;
  font-weight: 500;
  text-align: center;
}
@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;
  border-top: 2px solid #0091DB;
  border-bottom: 2px solid #0091DB;
}
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%;
}
@media screen and (max-width: 575px) {
  html body .usage-table .usage__tables .usage__table thead th:first-child {
    width: 50%;
  }
}
html body .usage-table .usage__tables .usage__table thead th:not(:first-child) {
  width: 30%;
}
@media screen and (max-width: 575px) {
  html body .usage-table .usage__tables .usage__table thead th:not(:first-child) {
    width: 25%;
  }
}
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:first-child, html body .usage-table .usage__tables .usage__table tbody tr:nth-child(2) {
  background-color: #FFFED6;
}
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;
  font-weight: 500;
}
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 .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 .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));
  }
}

/*▼---.contents-post---------------------------------------*/
/*▲----.contents-post--------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼---.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));
  }
}

.article-main {
  width: 100%;
}
.article-main .post-list {
  margin-bottom: 3rem;
}
.article-main .post-list.post-list-thumbnail {
  width: 100%;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .article-main .post-list.post-list-thumbnail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .article-main .post-list.post-list-thumbnail {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media screen and (max-width: 575px) {
  .article-main .post-list.post-list-thumbnail .post-list-box .post-list-img {
    width: 40%;
  }
}
@media screen and (max-width: 575px) {
  .article-main .post-list.post-list-thumbnail .post-list-box .post-list-info {
    width: 55%;
  }
}
.article-main .post-list.post-list-simple li {
  padding-bottom: 1rem;
}
.article-main .post-list.post-list-simple li:nth-child(n+2) {
  border-top: 1px solid #EAEAEA;
  padding-top: 1rem;
}
.article-main .post-list.post-list-simple .post-list-info {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 575px) {
  .article-main .post-list.post-list-simple .post-list-info {
    display: block;
  }
}
.article-main .post-list.post-list-simple .post-list-info .post-list-data {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.article-main .post-list.post-list-simple .post-list-info .post-list-data .category-tag-list {
  margin-left: 0.5rem;
  white-space: nowrap;
}
.article-main .post-list.post-list-simple .post-list-info .post-list-title {
  min-height: auto;
  flex-shrink: inherit;
}
.article-main .post-list .post-list-box {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .article-main .post-list .post-list-box {
    display: flex;
    justify-content: space-between;
  }
}
.article-main .post-list .post-list-img .bghover {
  padding-top: 66.6%;
  border-radius: 20px;
}
.article-main .post-list .post-list-day {
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  .article-main .post-list .post-list-day {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .article-main .post-list .post-list-day {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .article-main .post-list .post-list-day {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .article-main .post-list .post-list-day {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .article-main .post-list .post-list-day {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  .article-main .post-list .post-list-day {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
.article-main .post-list .post-list-data {
  padding: 0.5rem 0;
  display: block;
  margin-top: auto;
}
.article-main .post-list .category-tag-list {
  display: inline;
  margin-bottom: 5px;
}
.article-main .post-list .category-tag-list li {
  display: inline-block;
  padding: 2px 5px 0px 0;
  line-height: 1.2;
}
.article-main .post-list .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) {
  .article-main .post-list .category-tag-list li span {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .article-main .post-list .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) {
  .article-main .post-list .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) {
  .article-main .post-list .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) {
  .article-main .post-list .category-tag-list li span {
    font-size: calc(1.02rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  .article-main .post-list .category-tag-list li span {
    font-size: calc(1rem + (1vw - 0.32rem) * (0.2));
  }
}
.article-main .post-list .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) {
  .article-main .post-list .post-list-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .article-main .post-list .post-list-title {
    font-size: calc(1.48rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .article-main .post-list .post-list-title {
    font-size: calc(1.46rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .article-main .post-list .post-list-title {
    font-size: calc(1.44rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .article-main .post-list .post-list-title {
    font-size: calc(1.42rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  .article-main .post-list .post-list-title {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0.2));
  }
}
@media screen and (max-width: 575px) {
  .article-main .post-list .post-list-title {
    min-height: auto;
    -webkit-line-clamp: unset;
  }
}
.article-main .article-btn {
  max-width: 300px;
  height: 50px;
  margin: 0 auto;
}
.article-main .article-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333333;
  color: #ffffff;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .article-main .article-btn a {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .article-main .article-btn a {
    font-size: calc(1.36rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .article-main .article-btn a {
    font-size: calc(1.32rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .article-main .article-btn a {
    font-size: calc(1.28rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .article-main .article-btn a {
    font-size: calc(1.24rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  .article-main .article-btn a {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.4));
  }
}
.article-main .article-btn a::after {
  content: "";
  width: 20px;
  height: 10px;
  position: absolute;
  background: url("../../images/lp/icon-arrow.svg") center center no-repeat;
  background-size: contain;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

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

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