@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

img, picture, svg {
  max-width: 100%;
  vertical-align: top;
}

input, button, textarea, select {
  font: inherit;
}

ol, ul {
  list-style: none;
}

a:focus {
  outline: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #000;
  background: #efefef;
}

a {
  text-decoration: none;
  color: #000;
}

sup {
  font-size: .7em;
  vertical-align: super;
}

sub {
  font-size: .7em;
  vertical-align: sub;
}

.inner {
  position: relative;
  padding: 0 2.66667vw;
  font-size: 4.26667vw;
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 1840px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

header {
  width: 100%;
  background: #fff;
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 16vw;
}

@media screen and (min-width: 768px) {
  header .inner {
    height: 110px;
  }
}

header .logo {
  width: 50.13333vw;
}

@media screen and (min-width: 768px) {
  header .logo {
    width: 188px;
  }
}

header .inquiry a {
  display: block;
  width: 32vw;
  font-size: 3.73333vw;
  line-height: 8vw;
  text-align: center;
  color: #fff;
  background: #000;
}

@media screen and (min-width: 768px) {
  header .inquiry a {
    width: 160px;
    font-size: 16px;
    line-height: 30px;
    transition: opacity .2s;
  }
  header .inquiry a:hover {
    opacity: .7;
  }
}

footer.inner {
  font-size: 3.73333vw;
  text-align: center;
}

@media screen and (min-width: 768px) {
  footer.inner {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    margin-top: 16vw;
  }
  footer a {
    display: block;
    padding: 5.33333vw 0;
    border-top: 2px solid #d8d8d8;
  }
}

@media screen and (min-width: 768px) {
  footer ul {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 2px solid #d8d8d8;
  }
  footer ul li + li {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 2px solid #c5c5c5;
  }
  footer ul a:hover {
    color: #f50506;
  }
}

footer p {
  padding: 5.33333vw 0 10.66667vw;
  border-top: 2px solid #d8d8d8;
}

@media screen and (min-width: 768px) {
  footer p {
    padding: 30px 0 60px;
  }
}

.to-top {
  position: fixed;
  z-index: 9999;
  right: 10px;
  bottom: 20px;
}

.to-top span {
  display: block;
  width: 46px;
  cursor: pointer;
  transition: .2s;
}

.to-top span:hover {
  opacity: .8;
}

.kv {
  position: relative;
  margin: 0 -2.66667vw 8vw;
}

@media screen and (min-width: 768px) {
  .kv {
    margin: 0 0 calc(60/1800*100%);
  }
}

.kv > div {
  position: absolute;
  top: 1.86667vw;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .kv > div {
    top: 0;
  }
}

.kv h1 {
  margin-bottom: 1.6vw;
  font-size: 6.4vw;
  line-height: 1.25;
  font-feature-settings: "palt";
  letter-spacing: .05em;
}

@media screen and (min-width: 768px) {
  .kv h1 {
    margin: calc(45/1800*100%) 0 calc(38/1800*100%);
    font-size: 65px;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 1799px) {
  .kv h1 {
    font-size: calc(65/1800*100vw);
  }
}

.kv p {
  font-size: 3.2vw;
  font-weight: 600;
  line-height: 1.41667;
}

@media screen and (min-width: 768px) {
  .kv p {
    font-size: 24px;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 1799px) {
  .kv p {
    font-size: calc(24/1800*100vw);
  }
}

.linkbtn ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 8vw;
}

@media screen and (min-width: 768px) {
  .linkbtn ul {
    justify-content: space-around;
    max-width: 1400px;
    margin: 0 auto calc(60/1800*100%);
  }
}

.linkbtn ul li {
  width: 48%;
}

@media screen and (min-width: 768px) {
  .linkbtn ul li {
    width: 20%;
  }
}

.linkbtn ul a {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 3.2vw;
  padding: 3.2vw 0;
  font-size: 4.26667vw;
  text-align: center;
  color: #fff;
  background: #000;
  transition: opacity .3s;
}

@media screen and (min-width: 768px) {
  .linkbtn ul a {
    margin: 0;
    padding: 14px 0;
    font-size: 18px;
  }
}

.linkbtn ul a:hover {
  opacity: .7;
}

.linkbtn ul a::before {
  content: "";
  display: block;
  width: 3.2vw;
  height: 1.86667vw;
  position: absolute;
  top: calc(50% - 0.9vw);
  right: 3.46667vw;
  background: url(../img/arrow.png) no-repeat left top/contain;
}

@media screen and (min-width: 768px) {
  .linkbtn ul a::before {
    width: 12px;
    height: 7px;
    top: calc(50% - 3.5px);
    right: 13px;
  }
}

.intro h2 {
  margin: 0 -2.66667vw 8vw;
  padding: 1.6vw 0 2.13333vw;
  font-size: 4.8vw;
  line-height: 1.42;
  text-align: center;
  color: #fff;
  background: #000;
}

@media screen and (min-width: 768px) {
  .intro h2 {
    margin: 0 0 5px;
    padding: .9em 0 1.02em;
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .intro h2 {
    font-size: 1.71429vw;
  }
}

@media screen and (min-width: 768px) {
  .intro .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 767px) {
  .intro dl + dl {
    margin-top: 8vw;
  }
}

@media screen and (min-width: 768px) {
  .intro dl {
    width: 45.71429%;
    padding-top: 1.42857%;
  }
}

.intro dl dt {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .intro dl dt {
    column-gap: 5px;
  }
}

.intro dl dt figure {
  width: 32.26667vw;
}

@media screen and (min-width: 768px) {
  .intro dl dt figure {
    width: 135px;
  }
}

.intro dl dt span {
  width: 62.4vw;
  margin-bottom: 2.66667vw;
  padding: 0 0 2.13333vw 1.33333vw;
  font-size: 4.8vw;
  font-weight: 900;
  line-height: 1.55;
  border-bottom: 0.8vw solid #000;
}

@media screen and (min-width: 768px) {
  .intro dl dt span {
    width: 500px;
    margin: 0;
    padding: 0 0 11px 6px;
    font-size: 24px;
    line-height: 1;
    border-bottom: 3px solid #000;
  }
}

.intro dl dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column-reverse;
}

@media screen and (min-width: 768px) {
  .intro dl dd {
    flex-direction: row;
  }
}

.intro dl dd figure {
  width: 65.06667vw;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .intro dl dd figure {
    width: 330px;
  }
}

.intro dl dd .newprice {
  margin: 2.13333vw 0 2.66667vw;
  font-size: 4.8vw;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .intro dl dd .newprice {
    margin: 0 0 40px;
    font-size: 30px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .intro dl dd .newprice {
    font-size: 2.14286vw;
  }
}

.intro dl dd .newprice p {
  margin-left: 1.06667vw;
}

@media screen and (min-width: 768px) {
  .intro dl dd .newprice p {
    margin-left: 3px;
  }
}

.intro dl dd .newprice .sales {
  margin-top: .5em;
  padding-bottom: .3em;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 1px solid #000;
}

@media screen and (min-width: 768px) {
  .intro dl dd .newprice .sales {
    font-size: 85%;
  }
}

.intro dl dd .newprice div {
  display: flex;
  padding: 0 0 1.6vw;
  border-bottom: 1px solid #000;
}

@media screen and (min-width: 768px) {
  .intro dl dd .newprice div {
    padding: 18px 0 12px;
  }
}

.intro dl dd .newprice .price {
  margin-top: 1.6vw;
  font-family: "Roboto", sans-serif;
  font-size: 10.66667vw;
  font-weight: 700;
  letter-spacing: -.01em;
}

@media screen and (min-width: 768px) {
  .intro dl dd .newprice .price {
    margin: 0;
    font-size: 50px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .intro dl dd .newprice .price {
    font-size: 3.57143vw;
  }
}

.intro dl dd .newprice .yen {
  padding-left: .2em;
  font-size: 7.46667vw;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .intro dl dd .newprice .yen {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .intro dl dd .newprice .yen {
    font-size: 2vw;
  }
}

.intro dl dd .newprice .yen small {
  display: block;
  font-size: 3.46667vw;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .intro dl dd .newprice .yen small {
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .intro dl dd .newprice .yen small {
    font-size: 0.92857vw;
  }
}

.intro dl dd a {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 2.4vw;
  padding: 2.93333vw 0;
  font-size: 4.26667vw;
  text-align: center;
  color: #fff;
  background: #000;
  transition: opacity .3s;
}

@media screen and (min-width: 768px) {
  .intro dl dd a {
    margin: 0;
    padding: 10px 0;
    font-size: 18px;
  }
}

.intro dl dd a:hover {
  opacity: .7;
}

.intro dl dd a::before {
  content: "";
  display: block;
  width: 3.2vw;
  height: 1.86667vw;
  position: absolute;
  top: calc(50% - 0.9vw);
  right: 3.46667vw;
  background: url(../img/arrow.png) no-repeat left top/contain;
}

@media screen and (min-width: 768px) {
  .intro dl dd a::before {
    width: 12px;
    height: 7px;
    top: calc(50% - 3.5px);
    right: 13px;
  }
}

.category {
  margin: 16vw -2.66667vw 6.4vw;
  padding: 2.66667vw 5.33333vw 3.2vw;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #000;
}

@media screen and (min-width: 768px) {
  .category {
    width: 100%;
    margin: 60px 0 50px;
    padding: 10px 20px 12px;
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .series {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
  }
  .series::after {
    content: "";
    display: block;
    width: 31.42857%;
  }
  .series.col2 {
    column-gap: 4.28571%;
  }
  .series.col2 .item, .series.col2 .model, .series.col2 .machine {
    width: 47.85714%;
  }
  .series.col3 {
    column-gap: 2.85714%;
  }
  .series.col3 .item {
    width: 31.42857%;
  }
}

.series .parent {
  display: grid;
  grid-template-columns: 960px auto;
  grid-column-gap: 30px;
}

.series .info {
  width: 100%;
  text-align: center;
  padding-bottom: 8vw;
}

@media screen and (min-width: 768px) {
  .series .info {
    display: grid;
    grid-template-columns: 68.57143% auto;
    grid-column-gap: 30px;
    padding-bottom: 60px;
  }
}

.series .info p, .series .info ul {
  margin: 2.4vw auto 0;
  font-size: 3.73333vw;
  line-height: 1.72;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .series .info p, .series .info ul {
    margin: 0;
    font-size: 16px;
    line-height: 2;
  }
}

.series .info p.notes, .series .info ul.notes {
  margin-top: .8em;
  font-size: 3.2vw;
}

@media screen and (min-width: 768px) {
  .series .info p.notes, .series .info ul.notes {
    font-size: 14px;
  }
}

.series .info li {
  margin-left: .8em;
  text-indent: -.8em;
}

@media screen and (min-width: 768px) {
  .series.col3 .item {
    width: 31.42857%;
    padding: 2% 1.42857%;
  }
}

.series.col3 .item dt figure {
  margin: 5.33333vw 0 -5.33333vw;
}

@media screen and (min-width: 768px) {
  .series.col3 .item dt figure {
    margin: 20px 0 -20px;
  }
}

.series.col3 .item dd p {
  margin-bottom: 0;
}

.item {
  margin-bottom: 8vw;
  padding: 5.86667vw 5.33333vw 8vw;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .item {
    width: 47.85714%;
    margin-bottom: 2.85714%;
    padding: 2% 5%;
  }
}

.item dt {
  font-size: 5.06667vw;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .item dt {
    font-size: 20px;
  }
}

.item dt figure {
  position: relative;
  margin: 8vw 0 3.2vw;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .item dt figure {
    margin: 38px 0 8px;
  }
}

.item dt figcaption {
  position: absolute;
  top: 90%;
  right: 0;
  font-size: 50%;
  font-weight: normal;
  font-feature-settings: "palt";
  letter-spacing: .04em;
}

@media screen and (min-width: 768px) {
  .item dt figcaption {
    top: 87%;
    right: 0;
    font-size: 70%;
  }
}

.item dd p {
  margin-bottom: 1.5em;
  line-height: 1.22222;
}

@media screen and (min-width: 768px) {
  .item dd p {
    min-height: 2.6em;
  }
}

.item dd strong {
  display: block;
  margin: 5.33333vw 0 0;
  font-size: 4.53333vw;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .item dd strong {
    margin-top: 0;
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .item dd strong {
    font-size: 1.42857vw;
  }
}

.item dd div {
  display: flex;
  align-items: center;
  padding: 1.6vw 0 3.2vw;
}

@media screen and (min-width: 768px) {
  .item dd div {
    padding: 6px 0 12px;
  }
}

.item dd div .price {
  font-family: "Roboto", sans-serif;
  font-size: 12vw;
  font-weight: 700;
  letter-spacing: -.01em;
}

@media screen and (min-width: 768px) {
  .item dd div .price {
    font-size: 50px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .item dd div .price {
    font-size: 3.57143vw;
  }
}

.item dd div .yen {
  margin-top: -.1em;
  padding-left: .1em;
  font-size: 6.93333vw;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .item dd div .yen {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .item dd div .yen {
    font-size: 2vw;
  }
}

.item dd div .yen small {
  display: block;
  margin-bottom: -.1em;
  font-size: 3.46667vw;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .item dd div .yen small {
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .item dd div .yen small {
    font-size: 0.92857vw;
  }
}

.item .btn li {
  position: relative;
  margin-top: 2.66667vw;
  font-size: 3.73333vw;
  text-align: center;
  border: 1px solid #000;
  transition: opacity .3s;
}

@media screen and (min-width: 768px) {
  .item .btn li {
    margin-top: 12px;
    font-size: 16px;
  }
}

.item .btn li:hover {
  opacity: .7;
}

.item .btn li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.6vw 0 2.13333vw;
  color: #fff;
  background: #000;
}

@media screen and (min-width: 768px) {
  .item .btn li a {
    padding: 9px 0;
  }
}

.item .btn li a::before {
  content: "";
  display: block;
  width: 2.66667vw;
  height: 2.93333vw;
  position: absolute;
  top: calc(50% - 1.3vw);
  right: 2.13333vw;
  background: url(../img/arrow_w.png) no-repeat left top/contain;
}

@media screen and (min-width: 768px) {
  .item .btn li a::before {
    width: 10px;
    height: 11px;
    top: calc(50% - 5px);
    right: 16px;
  }
}

.item .btn li.specbtn a {
  color: #000;
  background: #fff;
}

.item .btn li.specbtn a::before {
  background-image: url(../img/arrow_b.png);
}

.item .btn li.newprice {
  margin-bottom: 1.25em;
  font-size: 5.06667vw;
  font-weight: 500;
  border: none;
}

@media screen and (min-width: 768px) {
  .item .btn li.newprice {
    font-size: 24px;
  }
}

.item .btn li.newprice a {
  padding: 2.4vw 0 3.2vw;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 3.5% 100%, 0 75%);
}

@media screen and (min-width: 768px) {
  .item .btn li.newprice a {
    padding: 12px 0 15px;
  }
}

.item .btn li.newprice a::before {
  width: 4.26667vw;
  height: 4.8vw;
  position: absolute;
  top: calc(50% - 2.4vw);
  right: 2.13333vw;
}

@media screen and (min-width: 768px) {
  .item .btn li.newprice a::before {
    width: 20px;
    height: 22px;
    top: calc(50% - 10px);
    right: 12px;
  }
}

.spec {
  position: relative;
  width: 94.66667vw;
  margin: 0 auto;
  padding: 5.33333vw 5.33333vw 24vw;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .spec {
    max-width: 990px;
    width: 90%;
    padding: 90px 80px;
  }
}

.spec .title {
  margin-bottom: 5.86667vw;
  font-size: 4.8vw;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .spec .title {
    margin: 0 0 1.5em;
    font-size: 18px;
  }
}

.spec .list table {
  width: 100%;
  font-size: 3.73333vw;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .spec .list table {
    font-size: 14px;
  }
}

.spec .list table.sp {
  margin-top: 6.4vw;
}

.spec .list th {
  padding: 2.66667vw 1.6vw;
  text-align: left;
  background: #efefef;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

@media screen and (min-width: 768px) {
  .spec .list th {
    padding: 13px 6px;
  }
  .spec .list th:last-child {
    width: 16%;
  }
}

.spec .list td {
  padding: 1.06667vw 0 1.06667vw 1.6vw;
  border-bottom: 2px solid #ddd;
}

@media screen and (min-width: 768px) {
  .spec .list td {
    padding: 4px 6px;
  }
  .spec .list td:first-of-type {
    display: flex;
  }
}

.spec .list td span {
  display: block;
  margin: 0 0vw 1.06667vw -1.6vw;
  padding: 0 1.6vw 1.06667vw;
  font-weight: 500;
  border-bottom: 2px solid #e9e9e9;
}

@media screen and (min-width: 768px) {
  .spec .list td span {
    display: inline;
    width: 16em;
    margin: 0;
    padding: 0;
    border-bottom: none;
  }
}

.spec .list .space {
  width: 3px;
  padding: 0;
  background: none;
  border-top: none;
  border-bottom: none;
}

.spec .list .notes {
  margin-top: 1em;
  font-size: 3.2vw;
}

@media screen and (min-width: 768px) {
  .spec .list .notes {
    font-size: 14px;
  }
}

.spec .mfp-close {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 6.93333vw;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  padding: 3.2vw 5.33333vw;
  font-size: 3.73333vw;
  line-height: 1;
  color: #fff;
  background: #000;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .spec .mfp-close {
    top: 30px;
    right: 30px;
    bottom: auto;
    left: auto;
    transform: translateX(0);
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity .2s;
  }
  .spec .mfp-close:hover {
    opacity: .7;
  }
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
