<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*reset*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/*base*/
html {
  font-size: 100%;
}

body {
  position: relative;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: rem(16);
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
  overflow-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

.pc {
  display: none;
}
@media screen and (min-width: 950px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 950px) {
  .sp {
    display: none;
  }
}

.heading-title--lv2 {
  padding: 0.562rem 1.375rem 0.5rem 1.375rem;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: #e6e7e9;
  border-radius: 100vh;
}

.text-link {
  padding-left: 1.125rem;
  position: relative;
  transition: 0.3s -webkit-text-decoration ease-in;
  transition: 0.3s text-decoration ease-in;
  transition: 0.3s text-decoration ease-in, 0.3s -webkit-text-decoration ease-in;
}
@media screen and (min-width: 950px) {
  .text-link:hover {
    text-decoration: underline;
    transition: 0.3s -webkit-text-decoration ease-in;
    transition: 0.3s text-decoration ease-in;
    transition: 0.3s text-decoration ease-in, 0.3s -webkit-text-decoration ease-in;
  }
}
.text-link::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  display: block;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  position: absolute;
  top: 0.5rem;
  left: 0;
  transform: rotate(-45deg);
}
.text-link__item {
  position: relative;
}
.text-link__item .text-link {
  display: block;
}
.text-link__item:not(:first-child) {
  margin-top: 1.875rem;
}

.btn-area {
  margin-top: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-more {
  display: block;
  width: 86%;
  max-width: 286px;
  background-color: white;
  border: 1px solid #000;
  padding: 0.937rem 2.125rem 0.875rem;
  color: #000;
  box-sizing: border-box;
  letter-spacing: 0;
  text-align: center;
  transition: 0.2s opacity ease-out;
}
@media screen and (min-width: 950px) {
  .btn-more:hover {
    opacity: 0.6;
    transition: 0.2s opacity ease-out;
  }
}

@media screen and (min-width: 950px) {
  .body {
    position: relative;
  }
}
@media screen and (min-width: 950px) {
  .body::after {
    content: "";
    width: 100%;
    height: 75px;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 0;
  }
}

.wrapper {
  width: 100%;
  max-width: 1225px;
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 950px) {
  .wrapper {
    flex-direction: row;
  }
}

.side-nav {
  color: #fff;
  width: 100%;
}
@media screen and (min-width: 950px) {
  .side-nav {
    width: 275px;
    background-color: #000;
  }
}

.header {
  padding: 0.562rem 1.25rem 0.625rem;
  background-color: #000;
  position: relative;
}
@media screen and (min-width: 950px) {
  .header {
    padding: 0.562rem 0 0 0;
  }
}
.header .logo {
    padding: 5px 0 15px;
    text-align: center;
}
@media screen and (max-width: 949px) {
  .header .logo {
      position: absolute;
      right: 10px;
      padding: 0;
      top: 28%;
  }
  .header .logo img {
      width: 80px;
  }
  .header-nav {
    display: none;
    transform: translateY(-100%);
    visibility: hidden;
    transition: 0.3s transform ease-in;
    overflow: scroll;
  }
  .header-nav.is-open {
    display: block;
    transform: translateY(0);
    visibility: visible;
    transition: 0.3s transform ease-in 0.5s;
  }
}
@media screen and (min-width: 950px) {
  .header-nav {
    display: block;
  }
}

.body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
}

.drawer-toggle {
  width: 20px;
  height: 16px;
  position: absolute;
  top: 28px;
  cursor: pointer;
  background: transparent;
  border-radius: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.drawer-toggle.is-active .drawer-toggle__bar {
  width: 0;
  transition: 0.3s width ease-in;
}
.drawer-toggle.is-active .drawer-toggle__bar::after {
  transform: rotate(45deg);
  bottom: 0;
  transition: 0.3s transform ease-in;
}
.drawer-toggle.is-active .drawer-toggle__bar::before {
  transform: rotate(-45deg);
  top: 0;
  transition: 0.3s transform ease-in;
}
.drawer-toggle__bar {
  width: 20px;
  height: 1px;
  display: block;
  background-color: #fff;
  position: relative;
  transition: 0.3s width ease-in;
}
.drawer-toggle__bar::after, .drawer-toggle__bar:before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: #fff;
}
.drawer-toggle__bar:before {
  position: absolute;
  top: 4px;
}
.drawer-toggle__bar::after {
  position: absolute;
  bottom: 4px;
}

.model {
  text-align: center;
}
@media screen and (min-width: 950px) {
  .model {
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
  }
}

.model-number {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.model-number__label {
  font-size: 0.75rem;
  font-weight: 600;
}
.model-number__number {
  margin-left: 1.125rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.site-subtitle {
  display: inline-block;
  font-size: 0.562rem;
  padding: 2px 1.075rem;
  border: 1px solid #fff;
}

.nav-contents {
  padding: 25px 0;
  border-bottom: 1px solid #333;
}

.nav-title {
  font-weight: 600;
}

.nav-menu__header {
  margin-top: 0.75rem;
  margin-left: 0.625rem;
}
.nav-menu__contents {
  margin-top: 0.75rem;
}
.nav-menu__contents--other {
  margin-top: 25px;
}

.nav-btn__item {
  margin-top: 1px;
}
.nav-btn__link {
  display: block;
  padding: 0.75rem 1.375rem;
  background-color: #242424;
  color: #fff;
  transition: 0.3s background-color ease-in;
}
@media screen and (min-width: 950px) {
  .nav-btn__link:hover {
    background-color: #707070;
    transition: 0.3s background-color ease-in;
  }
}

.nav-accordion__header {
  padding: 0.75rem 0.625rem;
  background-color: #242424;
  color: #fff;
  position: relative;
  cursor: pointer;
  transition: 0.3s background-color ease-in;
}
@media screen and (min-width: 950px) {
  .nav-accordion__header:hover {
    background-color: #707070;
    transition: 0.3s background-color ease-in;
  }
}
.nav-accordion__header::after, .nav-accordion__header::before {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  transition-duration: 0.3s;
}
.nav-accordion__header::after {
  transform: rotate(90deg);
}
.nav-accordion__header.is-active::after {
  transform: rotate(0);
}
.nav-accordion__header.is-active::before {
  opacity: 0;
}
.nav-accordion__contents {
  background-color: #242424;
  height: 0;
  visibility: hidden;
}
.nav-accordion__contents.is-open {
  height: auto;
  visibility: visible;
  transition-duration: 0.3s;
}

.nav__lists {
  padding: 1rem 0 3.125rem;
}
.nav__item {
  padding: 1.125rem 1.25rem 1.125rem 2.25rem;
  border-bottom: 1px solid #333;
  position: relative;
}
.nav__item::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  display: block;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(-45deg);
}
.nav__link {
  transition: 0.3s -webkit-text-decoration ease-in;
  transition: 0.3s text-decoration ease-in;
  transition: 0.3s text-decoration ease-in, 0.3s -webkit-text-decoration ease-in;
}
@media screen and (min-width: 950px) {
  .nav__link:hover {
    text-decoration: underline;
    transition: 0.3s -webkit-text-decoration ease-in;
    transition: 0.3s text-decoration ease-in;
    transition: 0.3s text-decoration ease-in, 0.3s -webkit-text-decoration ease-in;
  }
}

.nav-btn-area {
  margin-top: 0.75rem;
}

.main {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 950px) {
  .main {
    width: calc(100% - 275px);
    padding-bottom: 3.5rem;
  }
}

.support-contents {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 950px) {
  .support-contents {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.contents-block {
  width: 100%;
  background-color: #fff;
  margin-top: 2.625rem;
}
@media screen and (min-width: 950px) {
  .contents-block:not(.part-name) {
    width: calc(50% - 45px);
    max-width: 450px;
    margin: 25px 0 0 25px;
    box-sizing: border-box;
  }
  .contents-block.part-name {
    max-height: 450px;
    margin: 0;
    margin: 0 45px;
  }
}

.contents {
  margin-top: 1.125rem;
}

.main-header {
  margin-top: 0.625rem;
  margin-top: 1.625rem;
}
.main-header__contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 950px) {
  .main-header__contents {
    padding: 1.375rem 0;
  }
}
@media screen and (min-width: 950px) {
  .main-header {
    margin-top: 0;
    height: 75px;
  }
}

.contents-inner {
  width: 100%;
  padding: 0 1.25rem;
}

.input-area {
  display: flex;
  flex-direction: column;
}

.serch-keyword {
  margin-top: 1.25rem;
}
@media screen and (max-width: 950px) {
  .contents-inner {
    padding: 0;
  }
}
@media screen and (min-width: 950px) {
  .serch-keyword {
    padding-bottom: 2rem;
    border-bottom: 1px solid #fff;
  }
}
.serch-keyword__title {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
}
.serch-keyword__label {
  font-weight: 600;
}
.serch-keyword-box {
  width: 100%;
  display: block;
  position: relative;
}
@media screen and (min-width: 950px) {
  .serch-keyword-box {
    width: 225px;
    margin-top: 0.937rem;
    margin-left: 9px;
  }
}
.serch-keyword-box:after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url(/img/icon_serch.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.serch-keyword__input {
  width: 100%;
  padding: 0.687rem 1.25rem 0.625rem 1.125rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16) inset;
  border: 1px solid #ababab;
  font-size: 1rem;
}
@media screen and (min-width: 950px) {
  .serch-keyword__input {
    width: 225px;
  }
}

.keyword-contents {
  margin-top: 0.75rem;
}
.keyword-contents__lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -0.75rem;
  margin-left: -0.5rem;
}
@media screen and (min-width: 950px) {
  .keyword-contents__lists {
    margin-left: -1rem;
  }
}
.keyword-contents__item {
  margin-top: 0.75rem;
  margin-left: 0.5rem;
  padding: 0.125rem 0.937rem;
  border: 1px solid #d1d1d1;
  border-radius: 100vh;
  color: #000;
  background-color: #fff;
}
@media screen and (min-width: 950px) {
  .keyword-contents__item {
    padding: 0;
    margin-left: 1rem;
    color: #fff;
    text-decoration: underline;
    border: none;
    border-radius: none;
    background-color: unset;
  }
  .keyword-contents__item:hover {
    text-decoration: none;
  }
}

.part-name {
  position: relative;
  padding-top: 60%;
}
.part-name img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.category {
  padding: 0.375rem 1rem;
  border: 1px solid #bfbfbf;
  font-size: 0.625rem;
  display: inline-block;
}

.recommend__item {
}

a.recommend-link {
    padding-left: 1.125rem;
}

@media screen and (min-width: 950px) {
  .recommend__item:hover {
    background-color: #f8f8f8;
    transition: 0.3s background-color ease-in;
  }
}
.recommend__item .recommend-link:before {
    content: "";
    width: 0.375rem;
    height: 0.375rem;
    display: block;
    border-right: 1px solid #707070;
    border-bottom: 1px solid #707070;
    position: absolute;
    top: 0.5rem;
    left: 0;
    transform: rotate(-45deg);
}

.app__download {
  margin-top: 1.625rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 950px) {
  .app__download {
    justify-content: space-between;
  }
}
.app__item:nth-of-type(2) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 950px) {
  .app__link:hover {
    opacity: 0.6;
  }
}

.download__image-text {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  text-align: center;
}
.download__suport {
  margin-top: 2.125rem;
}
.download__app {
  margin-left: 2.125rem;
}

.other-contents:not(:first-child) {
  margin-top: 3.125rem;
}
.other-contents__btn {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  margin-top: 6.875rem;
  width: 100%;
  background-color: #000;
  color: #fff;
}
@media screen and (min-width: 950px) {
  .footer {
    margin-top: 0;
  }
}
.footer-inner {
  width: 100%;
  padding: 34px 20px 11px;
}
@media screen and (min-width: 950px) {
  .footer-inner {
    max-width: 1225px;
    margin: 0 auto;
  }
}

.footer-nav__lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -1.562rem;
}
@media screen and (min-width: 950px) {
  .footer-nav__lists {
    text-align: center;
    justify-content: center;
  }
}
.footer-nav__item {
  width: 50%;
  font-size: 0.75rem;
  margin-top: 1.562rem;
  position: relative;
}
@media screen and (min-width: 950px) {
  .footer-nav__item {
    width: auto;
    padding: 0 1.437rem;
  }
}
.footer-nav__item:nth-child(odd) {
  text-align: right;
  padding-right: 1.125rem;
}
@media screen and (min-width: 950px) {
  .footer-nav__item:nth-child(odd):not(:first-child):before {
    content: "";
    display: block;
    width: 1px;
    height: 0.75rem;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.footer-nav__item:nth-child(even) {
  padding-left: 1.125rem;
  position: relative;
}
.footer-nav__item:nth-child(even):before {
  content: "";
  display: block;
  width: 1px;
  height: 0.75rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footer-copy {
  text-align: center;
}
.footer-copy__text {
  font-size: 0.625rem;
}
@media screen and (min-width: 950px) {
  .footer-copy__text {
    font-size: 0.75rem;
  }
}
/*# sourceMappingURL=support-style.css.map */

/*# 202301 */
.part-name-critical {
  padding-top: 68%;
  padding-top: 80%;
  margin-top: 0;
}
.contents-block.part-name img {
  top: -1.0rem;
}
.contents-inner_TXT {
  margin-top: 1rem!important;
}
@media screen and (min-width: 950px) {
  .part-name-critical {
    padding-top: 60%;
  }
  .contents-block.part-name {
    margin-bottom: .875rem;
  }
  .contents-block.part-name img {
    top: 0;
  }
  .part-name-inner {
    padding: 0;
  }
  .contents-inner_TXT {
    margin-top: 0!important;
    margin-top: -1rem!important;
  }
}

/*----------------------
20230306
----------------------*/
#js-header-nav-contents {
  height: 100vh;
  padding-bottom: 100px;
}
body.fixed .header .logo {
  display: none;
}
/*----------------------
20230310
----------------------*/
.newwmmv {
  margin-top: 54px;
}
.newwmmv_inner {
  box-sizing: border-box;
  padding: 0 45px;
}
.newwmmv_center {
  text-align: center;
  margin: 40px 10px 24px;
}
.newwmmv_center-inline {
  display: inline-block;
  text-align: left;
  font-size: 12px;
}
.newwmmv_note {

}
@media screen and (max-width: 949px) {
  .newwmmv {
    margin-top: 3.2rem;
  }
  .newwmmv_inner {
    box-sizing: border-box;
    padding: 0;
  }
}
/*----------------------
20230426
----------------------*/
.model-number {
  flex-direction: column;
  box-sizing: border-box;
}
.model-number__number {
  margin-left: 0;
  margin-bottom: .5rem;
  font-size: 1.3rem;
}
@media screen and (max-width: 949px) {
  #js-header-nav-contents {
    background: #333333;
    box-sizing: border-box;
    padding: 16px;
    padding-bottom: 100px;
    margin-top: 1.2rem;
  }
  .model-number {
    padding-right: 3.0rem;
  }
}
</pre></body></html>