@charset "UTF-8";


/* ---------------------------------------------------------------------------
//  component
--------------------------------------------------------------------------- */

.btn-n {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--navy);
  border-radius: 10rem;
  text-align: center;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 15rem;
  height: 4rem;
  color: var(--bg1);
  background: var(--navy);
}
@media screen and (min-width: 750px) {
  .btn-n:hover {
    opacity: 1;
    color: var(--bg4);
    border: 2px solid var(--bg4);
    background: var(--bg1);
  }
} /* @750 */

.product-lineup-menu {
  gap: 3rem 9rem;
}
.product-lineup-menu .item {
  width: 34rem;
}
@media screen and (max-width: 1024px) and (min-width: 751px) {
  .product-lineup-menu .item {
    width: calc( (100% - 18rem) / 3 );
  }
}

@media screen and (max-width: 750px) {
  .btn-n {
    width: 100%;
  }
  .product-lineup-menu .item {
    width: 100%;
  }
} /* @max750 */


/* ---------------------------------------------------------------------------
//  product
--------------------------------------------------------------------------- */
.mv-product .mv-inner {
  align-items: flex-end;
  padding-bottom: 6rem;
}

.pickup.flex {
  gap: 9rem;
}
.pickup.flex > div {
  width: 34rem;
}

.product-rebooter .container {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.product-rebooter > a {
  display: block;
  height: 76rem;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.product-rebooter .parallax-bg {
  transition: 0.3s;
}
.product-rebooter .btn-standard {
  transition: .3s;
}
@media screen and (min-width: 751px) {
  .product-rebooter > a:hover {
    opacity: 1;
  }
  .product-rebooter > a:hover .parallax-bg {
    transform: scale(1.03);
  }
  .product-rebooter > a:hover .btn-standard.c-b {
    opacity: 1;
    color: var(--bg1);
    background: var(--bg4);
  }
} /* @min751 */

.product-lineup .flex {
  gap: 9rem;
  margin-bottom: 9rem;
}
.product-lineup .photo {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.product-lineup .photo > a img {
  transition: .3s;
}
@media screen and (min-width: 751px) {
  .product-lineup .photo > a:hover {
    opacity: 1;
  }
  .product-lineup .photo > a:hover img {
    transform: scale(1.03);
  }
} /* @min751 */

.product-lineup .photo .lineup-line1 {
  position: absolute;
  width: 8rem;
  background: #508CCD;
}
.product-lineup .photo .lineup-line2 {
  position: absolute;
  width: 8rem;
  background: var(--navy);
}
.product-lineup .photo .ani-lineup1 {
  height: 74%;
  transform: skew(-25deg);
}
.product-lineup .photo .ani-lineup2 {
  height: 26%;
  transform: skew(25deg);
}
.product-lineup .photo .ani-lineup3 {
  height: 100%;
  transform: skew(25deg);
}
.product-lineup .photo .ani-lineup4 {
  height: 35%;
  transform: skew(-25deg);
}
.product-lineup .photo .ani-lineup5 {
  height: 54%;
  transform: skew(-25deg);
}
.product-lineup .photo .ani-lineup6 {
  height: 54%;
  transform: skew(-25deg);
}
.product-lineup .photo .ani-lineup7 {
  height: 54%;
  transform: skew(25deg);
}
.product-lineup .photo .ani-lineup8 {
  height: 46%;
  transform: skew(-25deg);
}

.product-lineup .text {
  /* width: 64rem; */
  width: calc( 42.125vw - 9rem );
  flex-shrink: 0;
}
@media screen and (min-width: 751px) {
  .product-lineup .left-over,
  .product-lineup .right-over {
    width: 100vw;
    margin-left: calc( 50% - 50vw );
    margin-right: calc( 50% - 50vw );
  }
  .product-lineup .right-over {
    justify-content: flex-start;
  }
  .product-lineup .left-over .text {
    padding-right: 3.8rem;
  }
  .product-lineup .left-over .photo {
    width: 57.875vw;
    flex: unset;
    /* margin-left: clamp( calc(-1 * ((190rem - 120rem) / 2)), calc(50% - 50vw), 0px ); */
  }
  .product-lineup .right-over .text {
    padding-left: calc( (100vw - 120rem ) / 2 );
  }
  .product-lineup .right-over .photo {
    width: 57.875vw;
    flex: unset;
    /* margin-right: clamp( calc(-1 * ((190rem - 120rem) / 2)), calc(50% - 50vw), 0px ); */
  }
}
@media screen and (max-width: 1024px) and (min-width: 751px) {
  .product-lineup .flex {
    gap: 6rem;
  }
  .product-lineup .text {
    width: calc( 42.125vw - 6rem );
  }
  .product-lineup .right-over .text {
    padding-left: 3.8rem;
  }
}

.product-datacenter > a {
  background: url(../images/product/product-datacenter.webp) center center / cover no-repeat;
  height: 52rem;
  padding: 6rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.product-datacenter > a .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.product-datacenter > a .text {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .product-datacenter > a:hover {
    opacity: 1;
  }
  .product-datacenter > a:hover .bg {
    transform: scale(1.03);
  }
  .product-datacenter > a:hover .btn-standard.c-w {
    opacity: 1;
    color: var(--navy);
    background: var(--bg1);
  }
  .product-datacenter .btn-standard.c-w:hover {
    opacity: 1;
    color: var(--bg1);
    background: transparent;
  }
} /* @min751 */

.product-customize > a {
  display: block;
  height: 54rem;
  padding: 10rem 0;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 751px) {
  .product-customize > a:hover {
    opacity: 1;
  }
  .product-customize > a:hover .btn-standard.c-b {
    opacity: 1;
    color: var(--bg1);
    background: var(--bg4);
  }
  .product-customize .btn-standard.c-b:hover {
    opacity: 1;
    color: var(--bg4);
    background: var(--bg1);
  }
} /* @min751 */

.product-customize .bg {
  background: var(--gray-bg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.product-customize .bg > div {
  width: 27rem;
  height: 27rem;
  position: absolute;
  overflow: hidden;
}
.product-customize .bg .bg01 {
  top: 0;
  left: 0;
}
.product-customize .bg .bg02 {
  top: 27rem;
  left: 0;
}
.product-customize .bg .bg03 {
  width: 10.6rem;
  height: 10.6rem;
  top: 43.4rem;
  left: 37.9rem;
}
.product-customize .bg .bg04 {
  width: 16.4rem;
  height: 16.4rem;
  top: 37.6rem;
  left: 48.5rem;
}
.product-customize .bg .bg05 {
  width: 19rem;
  height: 19rem;
  top: 6.2rem;
  left: 41%;
}
.product-customize .bg .bg06 {
  top: 0;
  right: 27rem;
}
.product-customize .bg .bg07 {
  top: 0;
  right: 0;
}
.product-customize .bg .bg08 {
  top: 27rem;
  right: 27rem;
}
.product-customize .bg .bg09 {
  top: 27rem;
  right: 0;
}
.product-customize .bg .bg10 {
  display: none;
}

@media screen and (max-width: 750px) {
  .mv-product .mv-inner {
    padding-bottom: 4rem;
  }
  .pickup.flex > div {
    width: 100%;
  }
  /* .pickup .text {
    margin-top: 2rem;
  } */
  .product-rebooter .container {
    justify-content: flex-start;
  }
  .product-rebooter > a {
    height: 48rem;
    padding: 4rem 0;
  }
  .product-lineup .flex {
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .product-lineup .photo .lineup-line1,
  .product-lineup .photo .lineup-line2 {
    width: 3rem;
  }
  .product-lineup .text {
    width: 100%;
  }
  .product-datacenter > a {
    margin: 0 -3rem;
    width: calc(100% + 6rem);
    height: 46rem;
    padding: 3rem;
  }
  .product-customize > a {
    height: 48rem;
    padding: 6rem 0;
  }
  .product-customize .bg .bg01 {
    width: 24rem;
    height: 24rem;
  }
  .product-customize .bg .bg10 {
    display: block;
    width: 19rem;
    height: 19rem;
    left: 0;
    bottom: 0;
  }
  .product-customize .bg .bg03 {
    width: 7.7rem;
    height: 7.7rem;
    top: auto;
    left: auto;
    bottom: 0;
    right: 8rem;
  }
  .product-customize .bg .bg04 {
    width: 11.8rem;
    height: 11.8rem;
    top: auto;
    left: auto;
    bottom: 0;
    right: -3.9rem;
  }
  .product-customize .bg .bg05 {
    width: 12rem;
    height: 12rem;
    top: 21.4rem;
    left: 19.7rem;
  }
  .product-customize .bg .bg07 {
    width: 18.7rem;
    height: 18.7rem;
    top: 0;
    right: -5.9rem;
  }
  .product-customize .bg .bg02,
  .product-customize .bg .bg06,
  .product-customize .bg .bg08,
  .product-customize .bg .bg09 {
    display: none;
  }
} /* @max750 */


/* ---------------------------------------------------------------------------
//  what-rebooter-contact-control
--------------------------------------------------------------------------- */
.mv-what .mv-inner {
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 8rem;
}
.product-what-tabs.tabs {
  scroll-margin-top: 3.8rem;
}
.product-what-tabs.tabs .tab-btn.tab-rebooter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.product-what-tabs.tabs .tab-btn.tab-rebooter::before {
  content: "";
  display: block;
  background: url(../images/icon/icon_recooter_b.svg) center center / contain no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  transition: .3s;
}
.product-what-tabs.tabs .tab-btn.tab-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.product-what-tabs.tabs .tab-btn.tab-contact::before {
  content: "";
  display: block;
  background: url(../images/icon/icon_contact_b.svg) center center / contain no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  transition: .3s;
}

.product-what-main .what-main {
  gap: 12rem;
}
.product-what-main .what-main .photo {
  flex: 1;
}
.product-what-main .what-main .text {
  width: 56rem;
}
.product-what-main .what-main.left-over .photo {
  margin-left: calc(50% - 50vw);
}

.what-cando .item {
  padding: 3rem 2rem;
}
.what-cando .item .icon {
  width: 6rem;
  margin: 0 auto 2rem;
}


.product-what-recommend-rows .item {
  gap: 4rem;
}
.product-what-recommend-rows .image {
  width: 38rem;
}
.product-what-recommend-rows .text {
  flex: 1;
}

.product-what-cost dl {
  display: flex;
}
.product-what-cost dl dt {
  width: 18rem;
  color: var(--bg1);
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-what-cost dl dd {
  flex: 1;
  padding: 2.5rem;
  background: var(--gray-bg);
}
.product-what-cost-figure .item {
  padding: 3rem;
  gap: 2rem;
}
.product-what-cost-figure .item .icon {
  width: 6rem;
}
.product-what-cost-figure .item .text {
  flex: 1;
}
.product-what-cost-answer {
  padding-top: 4rem;
  margin-top: 3rem;
  position: relative;
}
.product-what-cost-answer::before {
  content: "";
  display: block;
  background: var(--navy);
  width: 11.2rem;
  height: 3.6rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 0;
  left: calc(50% - 5.6rem);
}

.what-features:not(:last-child) {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--gray-line);
}
.what-features .text {
  width: 45%;
}
.what-features .image {
  width: 50%;
}

.product-what-strengths > a {
  display: block;
  height: 46rem;
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}
.product-what-strengths .parallax-bg {
  transition: 0.3s;
}

.product-what-strengths .btn-standard {
  transition: .3s;
}
@media screen and (min-width: 751px) {
  .product-what-strengths > a:hover {
    opacity: 1;
  }
  .product-what-strengths > a:hover .parallax-bg {
    transform: scale(1.03);
  }
  .product-what-strengths > a:hover .btn-standard.c-w {
    opacity: 1;
    color: var(--navy);
    background: var(--bg1);
  }
  .product-what-strengths .btn-standard.c-w:hover {
    opacity: 1;
    color: var(--bg1);
    background: transparent;
  }
} /* @min751 */

.btn-what-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .7rem;
  border: 2px solid var(--bg4);
  border-radius: 10rem;
  text-align: center;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 28rem;
  height: 6rem;
}
.btn-what-tabs::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  transition: .3s;
}
.btn-what-tabs.icon-rebooter::before {
  background: url(../images/icon/icon_recooter_b.svg) center center / contain no-repeat;
}
.btn-what-tabs.icon-contact::before {
  background: url(../images/icon/icon_contact_b.svg) center center / contain no-repeat;
}
@media screen and (min-width: 751px) {
  .btn-what-tabs:hover {
    opacity: 1;
    color: var(--bg1);
    background: var(--bg4);
  }
  .btn-what-tabs.icon-rebooter:hover::before {
    background: url(../images/icon/icon_recooter_w.svg) center center / contain no-repeat;
  }
  .btn-what-tabs.icon-contact:hover::before {
    background: url(../images/icon/icon_contact_w.svg) center center / contain no-repeat;
  }
} /* @min751 */


@media screen and (max-width: 1024px) {
  .product-what-tabs.tabs {
    scroll-margin-top: 1.6rem;
  }
} /* @max750 */

@media screen and (max-width: 750px) {
  .mv-what .mv-inner {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 3rem;
  }
  .product-what-tabs.tabs {
    scroll-margin-top: 3.6rem;
  }
  .product-what-main .what-main {
    gap: 2rem;
  }
  .product-what-main .what-main .text {
    width: 100%;
  }
  .product-what-recommend-rows .item {
    gap: 2rem;
  }
  .product-what-recommend-rows .image {
    width: 100%;
  }
  .product-what-recommend-rows .text {
    width: 100%;
  }
  .product-what-cost dl {
    flex-flow: column nowrap;
  }
  .product-what-cost dl dt {
    width: 100%;
    padding: 2rem;
  }
  .product-what-cost dl dd {
    width: 100%;
    padding: 2rem;
  }
  .product-what-cost-figure .item {
    padding: 2rem;
  }
  .product-what-cost-figure {
    gap: 2rem;
  }
  .what-features .text {
    width: 100%;
    margin-bottom: 2rem;
  }
  .what-features .image {
    width: 100%;
  }
  .product-what-strengths {
    height: 40rem;
  }
  .product-what-strengths .text {
    margin-top: 10rem;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  product-single
--------------------------------------------------------------------------- */
.product-single-mv {
  height: 72rem;
  overflow: hidden;
  position: relative;
}
.product-single-mv .ani-lines {
  position: absolute;
  top: 0;
  right: 10rem;
  width: 49rem;
  height: 100%;
}
.product-single-mv .ani-line1 {
  position: absolute;
  width: 11rem;
  height: 27rem;
  background: #508CCD;
  transform: skew(25deg);
}
.product-single-mv .ani-line2 {
  position: absolute;
  width: 11rem;
  height: 72rem;
  background: var(--grad);
  transform: skew(-20deg);
}
.product-single-mv .copy {
  position: absolute;
  right: 10rem;
  bottom: 6rem;
}
.product-single-nav {
  position: sticky;
  padding: 1.5rem 0;
  top: 8rem;
  z-index: 10;
  background: var(--bg4);
  color: var(--bg1);
}
.product-single-nav .flex {
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
}
.product-single-nav .anchor-link {
  max-width: 100%;
  height: 100%;
  flex-shrink: 0;
  gap: 0 3rem;
  line-height: 1.5;
  order: 1;
}
.product-single-nav .anchor-link + p {
  opacity: 0;
  transition: opacity ease 0.5s;
  order: 0;
  pointer-events: none;
}
.product-single-nav.--show .anchor-link + p {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .product-single-nav.--show .anchor-link + p:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .product-single-nav {
    top: 5.8rem;
  }
}
@media screen and (max-width: 750px) {
  .product-single-nav {
    position: relative;
    top: auto;
  }
}

.product-single-main {
  padding: 12rem 0 6rem;
}
.product-single-main.pt-half {
  padding-top: 6rem;
}
.product-single-main .text {
  padding-left: 9rem;
}
.product-single-main .price {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
.product-single-main .price__price {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
}
.product-single-main .price__yen {
  line-height: 1;
}
.product-single-main .price__end {
  color: var(--red);
}
.product-single-main .attention_box {
  padding: 2rem;
  border: 1px solid var(--gray-line);
}

@media screen and (max-width: 1024px) {
  .product-single-main .btn-wrap.product-contact-btns {
    flex-flow: column nowrap;
  }
  .product-single-main .btn-wrap.product-contact-btns > * {
    width: 100%;
  }
} /* @max1024 */


.product-single-notes {
  padding: 4rem 0;
}
.product-single-notes .item {
  width: calc(100% / 3);
  padding: 0 4rem;
}
.product-single-notes .item:not(:last-child) {
  border-right: 1px solid var(--gray-line);
}
.product-single-notes .item .icon {
  gap: 2rem;
}
.product-single-notes .item .icon > div {
  width: 6rem;
}

.product-single-function-head {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-single-function-head > li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--bg4);
  color: var(--bg1);
}

.product-single-function-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--gray-line);
}
.product-single-function-list dt {
  width: 31rem;
  padding: 2rem 0;
  float: left;
  clear: left;
}
.product-single-function-list dd {
  padding: 2rem 2rem 2rem 31rem;
  border-bottom: 1px solid var(--gray-line);
}
a.modal-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
a.modal-trigger::after {
  content: "";
  background: url(../images/common/icon_question.svg) center center / contain no-repeat;
  width: 1.6rem;
  height: 1.6rem;
}

.product-single-features .features1 {
  gap: 12rem;
  margin-bottom: 12rem;
}
.product-single-features .features1 .photo {
  flex: 1;
}
.product-single-features .features1 .photo--zoom {
  position: relative;
}
.product-single-features .features1 .photo--zoom:hover {
  opacity: 0.7;
}
.product-single-features .features1 .photo--zoom::before {
  content: "";
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: url(../images/common/btn_zoom.png) center center / contain no-repeat;
}
.product-single-features .features1 .photo--zoom.photo--bg {
  background-color: #efefef;
  width: 100%;
  aspect-ratio: 28 / 21;
  overflow: hidden;
  padding: 3rem 5rem 0;
}
.product-single-features .features1 .photo--zoom.photo--bg span {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 4px 0 4px 0 rgba(0, 0, 0, 0.25);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 0;
}
.product-single-features .features1 .text {
  width: 56rem;
}
.product-single-features .features1.left-over .photo {
  margin-left: calc(50% - 50vw);
}
.product-single-features .features1.right-over .photo {
  margin-right: calc(50% - 50vw);
}
.product-single-features .features2:not(:last-child) {
  margin-bottom: 12rem;
}
.product-single-features .features3 {
  gap: 8rem;
  margin-bottom: 12rem;
}
.product-single-features .features3 .photo {
  flex: 1;
}
.product-single-features .features3 .photo.small {
  width: 15rem;
  flex: unset;
}
.product-single-features .features3 .photo.small + .text {
  width: auto;
  flex: 1;
}
.product-single-features .features3 .text {
  width: 56rem;
}
.product-single-features .features3 .box {
  padding: 2.8rem 2rem;
  column-gap: 2rem;
}
@media screen and (max-width: 750px) {
  .product-single-features .features1 .photo--zoom::before {
    width: 3.2rem;
    height: 3.2rem;
  }
  .product-single-features .features1 .photo--zoom.photo--bg {
    padding: 2rem 3rem 0;
  }
  .product-single-features .features3 .photo.small {
    width: 100%;
  }
  .product-single-features .features3 .box {
    padding: 2rem;
    row-gap: 1rem;
  }
}

.product-single-features .other-item {
  gap: 1.6rem;
}
.product-single-features .other-item .item {
  width: calc((100% - 1.6rem * 1) / 2);
  background: var(--gray-bg);
  padding: 2.8rem 2rem;
}
.product-single-features .other-item .item.full {
  width: 100%;
}

.product-single-spec .accordion-content {
  border-top: 1px solid var(--gray-line);
}
.product-single-spec .accordion-content > p,
.product-single-spec .accordion-content > ul {
  padding-left: 2rem;
}
@media screen and (max-width: 750px) {
  .product-single-spec .accordion-content > p,
  .product-single-spec .accordion-content > ul {
    padding-left: 1rem;
  }
}
.product-spec-table {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .product-spec-table.t-center td {
    text-align: center;
  }
}
.product-spec-table th,
.product-spec-table td {
  padding: 2rem 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-line);
}
.product-spec-table th {
  font-weight: 500;
  /* width: 18rem; */
  width: 19rem;
  padding-right: 4rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.product-spec-table td {
  padding-left: 2rem;
}
.product-spec-table .border-none {
  border-bottom: none;
}
.product-spec-table .sub {
  /* width: 14rem; */
  width: 18rem;
  /* padding-right: 2rem; */
  padding-left: 2rem;
}
.product-spec-table.ver2 th,
.product-spec-table.ver2 td {
  padding-right: 2rem;
}
.product-spec-table.ver2 th:not(:first-child),
.product-spec-table.ver2 td:not(:first-child) {
  text-align: center;
}
.product-spec-table.ver2 thead th {
  width: 25rem;
}
.product-spec-table.ver2 tbody th {
  width: 23rem;
}
.product-spec-table.ver2 tbody td {
  padding-left: 2rem;
}
.product-spec-table tbody tr:last-of-type th,
.product-spec-table tbody tr:last-of-type td {
  border-bottom: none;
}
@media screen and (min-width: 751px) {
  .product-spec-table td:first-child {
    padding-left: 2rem;
  }
}

.product-comparison-table {
  width: 100%;
}
.product-comparison-table th,
.product-comparison-table td {
  padding: 2rem 0;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--gray-line);
}
.product-comparison-table thead th {
  font-weight: 500;
}
.product-comparison-table thead .image {
  padding: 0 1rem;
  border-bottom: none;
}
.product-comparison-table tbody th {
  font-weight: 500;
  text-align: left;
  width: 28rem;
}
.product-comparison-table tbody td {
  font-size: 1.3rem;
}

.support-menu {
  flex-wrap: wrap;
  gap: 1rem;
}
.support-menu > div {
  width: calc((100% - 1rem * 4) / 5);
}
.support-menu .faq-form {
  height: 100%;
}
.support-menu a {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 3.5rem 2rem 2rem;
}
section:not(.bg-gray1) .support-menu a {
  background-color: var(--gray-bg);
}
.support-menu a .icon {
  width: 6rem;
  margin: 0 auto;
  transition: .3s;
}
.support-menu a p {
  text-align: center;
  line-height: 1.4;
  display: flex;
  min-height: calc(1.4em * 2);
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 750px) {
  .support-menu a:hover .icon {
    transform: scale(1.1);
  }
} /* @750 */


.product-support-box {
  padding: 3.5rem;
}

.product-support-update {
  margin: 10rem auto 0;
  width: 80rem;
}

.product-software-menu {
  gap: 4rem 2.8rem;
  justify-content: flex-start;
}
.product-software-menu > div {
  width: calc((100% - 2.8rem * 3) / 4);
}

.product-software-box {
  padding: 3.5rem;
}

.product-devices-menu {
  gap: 4rem 2.8rem;
}
.product-devices-menu > div {
  width: calc((100% - 2.8rem * 3) / 4);
}
.product-single-devices-box {
  padding: 4rem;
}
.product-single-devices-list {
  gap: 4rem;
}
.freedownload {
  width: 68rem;
  margin: 10rem auto 0;
  background: url(../images/common/logo_bg2.png) right 1rem bottom / contain no-repeat var(--bg4);
  padding: 3rem;
}

.product-single-contact {
  background: var(--grad);
  padding: 6rem 0 8rem;
}

.product-other-derivative {
  margin-top: 10rem;
}
.product-other-derivative .item {
  background: #5E5E5E;
  padding: 2.4rem 4rem 2.4rem 2.4rem;
  gap: 2.8rem;
}
.product-other-derivative .item .image {
  width: 24rem;
}
.product-other-derivative .item .logo {
  width: 22.5rem;
  margin-left: auto;
}

.product-other-menu {
  justify-content: flex-start;
  column-gap: 1rem;
}
.product-other-menu .item {
  width: calc((100% - 2rem) / 3);
}

@media screen and (max-width: 1024px) {
  .product-single-main .text .btn-wrap {
    flex-wrap: wrap;
  }
  .product-single-main .text .btn-wrap .btn-n {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .product-single-mv {
    height: 38rem;
  }
  .product-single-mv .ani-lines {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .product-single-mv .ani-line1 {
    position: absolute;
    width: 4rem;
    height: 16rem;
    transform: skew(-25deg);
    background: #508ccd;
  }
  .product-single-mv .ani-line2 {
    position: absolute;
    width: 4rem;
    height: 34rem;
    transform: skew(30deg);
    background: var(--grad);
  }
  .product-single-mv .copy {
    right: auto;
    left: 3rem;
    bottom: 3rem;
    width: calc(100% - 6rem);
  }
  .product-single-mv .copy .h28_ja {
    font-size: 1.6rem;
  }
  .product-single-nav {
    height: auto;
    padding: 1rem 0;
  }
  .product-single-nav .anchor-link {
    height: auto;
    gap: .2rem 3rem;
  }
  .product-single-main {
    padding: 6rem 0;
  }
  .product-single-main .text {
    padding-left: 0;
    margin-top: 3rem;
  }
  .product-single-main .price {
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .product-single-notes {
    padding: 1rem 0;
  }
  .product-single-notes .item {
    width: 100%;
    max-width: initial;
    padding: 3rem 0;
  }
  .product-single-notes .item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--gray-line);
  }

  .product-single-function-list dt {
    width: 100%;
    padding: 2rem 0 1rem;
    float: none;
    clear: none;
  }
  .product-single-function-list dd {
    padding: 0 0 2rem;
  }

  .product-single-features .features1 {
    gap: 2rem;
    margin-bottom: 6rem;
  }
  .product-single-features .features1 .text {
    width: 100%;
  }
  .product-single-features .features2:not(:last-child) {
    margin-bottom: 6rem;
  }

  .product-single-features .features3 {
    gap: 2rem;
    margin-bottom: 6rem;
  }
  .product-single-features .features3 .photo {
    flex: 1;
  }
  .product-single-features .features3 .text {
    width: 100%;
  }
  
  .product-single-features .other-item .item {
    width: 100%;
    padding: 2rem;
  }

  .product-spec-table {
    border-spacing: 0;
    border-collapse: separate;
  }
  .product-spec-table th,
  .product-spec-table td {
    display: block;
    width: 100%;
  }
  .product-spec-table th {
    padding: 2rem 0 1rem 1rem;
    border-bottom: none;
  }
  .product-spec-table td {
    padding: 1rem 0 2rem 1rem;
  }
  .product-spec-table .sub {
    width: 100%;
    padding: 1rem 0 .5rem 1rem;
    border-bottom: none;
    font-weight: 500;
  }
  .product-spec-table .sub + td {
    padding: 0 0 1rem 1rem;
  }
  .product-spec-table.ver2 th,
  .product-spec-table.ver2 td {
    padding-right: 0;
    display: table-cell;
  }
  .product-spec-table.ver2 thead th,
  .product-spec-table.ver2 thead td,
  .product-spec-table.ver2 tbody th,
  .product-spec-table.ver2 tbody td {
    width: auto;
    border-bottom: 1px solid var(--gray-line);
    padding: 2rem 0;
  }
  .product-spec-table.ver2 tbody td {
    padding-left: 0;
  }
  .product-spec-table .td:first-child {
    padding-left: 1rem;
  }

  .product-comparison-table th,
  .product-comparison-table td {
    padding: 1rem 2rem;
    position: relative;
    border-bottom: none;
  }
  .product-comparison-table thead th:first-child,
  .product-comparison-table tbody th {
    position: sticky;
    top: 0;
    left: 0;
    width: 10rem;
    min-width: 10rem;
    max-width: 10rem;
    padding-left: 0;
    z-index: 2;
    background: var(--bg1);
    white-space: normal;
    word-break: break-word;
    border-bottom: none;
  }
  .product-comparison-table thead th:first-child {
    z-index: 3;
  }
  .product-comparison-table th::after,
  .product-comparison-table td::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg1);
    border-bottom: .1rem solid var(--gray-line);
    z-index: -1;
  }
  .support-menu > div {
    flex: none;
  }
  .support-menu a {
    gap: 1rem;
  }
  .support-menu a .icon {
    width: 4rem;
  }
  .product-support-box {
    padding: 2.5rem;
  }
  .product-support-box.flex .btn {
    margin-top: 2rem;
  }
  .product-support-update {
    margin: 6rem auto 0;
    width: 100%;
  }

  .product-software-menu > div {
    width: 100%;
  }
  .product-software-menu > a .image {
    margin-bottom: 1rem;
  }

  .product-devices-menu > div {
    width: 100%;
  }
  .product-single-devices-box {
    padding: 2rem;
  }
  .product-single-devices-list {
    gap: 2rem;
  }
  .freedownload {
    width: 100%;
    margin: 6rem auto 0;
    background: url(../images/common/logo_bg2.png) right bottom / contain no-repeat var(--bg4);
  }
  .freedownload .btn {
    margin: 3rem auto 0;
  }

  .product-other-derivative {
    margin-top: 6rem;
  }
  .product-other-derivative .item {
    padding: 2.4rem;
    gap: 2.8rem;
  }
  .product-other-derivative .item .image {
    width: 100%;
  }
  .product-other-derivative .item .logo {
    width: 48%;
    margin-left: 0;
  }

  .product-other-menu {
    row-gap: 6rem;
  }
  .product-other-menu .item {
    width: 100%;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  product-cat
--------------------------------------------------------------------------- */
.product-cat-mv {
  height: 44rem;
  overflow: hidden;
  position: relative;
}
.product-cat-mv.--rebooter .mv-inner {
  justify-content: flex-end;
}
.product-cat-mv.--cloud-software .mv-inner {
  justify-content: flex-end;
}
.product-cat-mv.--option .mv-inner {
  justify-content: flex-end;
}

@media screen and (min-width: 751px) {
  .product-cat-mv.--rebooter .title {
    max-width: 54rem;
    width: 36%;
  }
} /* @min751 */


.product-cat-mv .ani-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 27rem;
  height: 100%;
}

.product-cat-bnr {
  padding: 8rem 0 6rem;
}
.product-cat-lead {
  padding-top: 2.4rem;
}
@media screen and (max-width: 750px) {
  .product-cat-lead + .product-cat-bnr {
    padding-top: 6rem;
  }
}
.rebooter-bnr {
  width: 68rem;
  margin: 0 auto;
}

.product-rebooter-list {
  /* padding: 6rem 0 12rem; */
  padding: 2rem 0 12rem;
}
.rebooter-list {
  gap: 6rem 3rem;
}
.rebooter-list .item {
  width: calc((100% - 3rem * 2) / 3);
}
.rebooter-list .item .image {
  background: var(--gray-bg);
  padding: 2rem;
}

.rebooter-search-list h3 + .rebooter-search-box1 {
  padding: 2rem 0;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.rebooter-search-list h3 + .rebooter-search-box2 {
  border-top: 1px solid var(--gray-line);
}
.rebooter-search-list .rebooter-search-box2 dt {
  width: 18rem;
  padding: 2rem 0;
  float: left;
  clear: left;
}
.rebooter-search-list .rebooter-search-box2 dd {
  padding: 2rem 2rem 2rem 18rem;
  border-bottom: 1px solid var(--gray-line);
}

.rebooter-search-btns {
  gap: .8rem;
}

.rebooter-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bg4);
  padding: 0 1.5rem;
  border: 1px solid var(--gray-line);
  border-radius: 10rem;
  background: var(--bg1);
  cursor: pointer;
  transition: .3s;
}
.rebooter-search-btn.is-active {
  color: var(--bg1);
  border: 1px solid var(--bg4);
  background: var(--bg4);
}
@media screen and (min-width: 751px) {
  .rebooter-search-btn:hover {
    background: var(--bg4);
    color: var(--bg1);
    opacity: .7;
  }
  .rebooter-search-btn.is-active:hover {
    opacity: 1;
  }
} /* @min751 */

.rebooter-search-result-condition {
  display: none;
  border: 1px solid var(--gray-line);
  padding: 3rem;
  margin-top: 7rem;
}


.rebooter-search-modal {
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
}
.rebooter-search-modal > .rebooter-search-btn {
  height: 3.2rem;
  padding-right: 5rem;
}
.rebooter-search-modal > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: .8rem;
}
.rebooter-search-modal > a > img {
  width: 2.2rem;
  height: 2.2rem;
}
.rebooter-search-open-cnt {
  display: none;
}
.rebooter-search-open-btn {
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 500;
  transition: .3s;
}
.rebooter-search-open-btn .icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--bg4);
  border-radius: 50%;
  position: relative;
}
.rebooter-search-open-btn .icon::before {
  content: "";
  width: 1.4rem;
  height: .2rem;
  background: var(--bg4);
  position: absolute;
  top: calc(50% - .1rem);
  left: calc(50% - .7rem);
}
.rebooter-search-open-btn .icon::after {
  content: "";
  width: 1.4rem;
  height: .2rem;
  background: var(--bg4);
  position: absolute;
  top: calc(50% - .1rem);
  left: calc(50% - .7rem);
  transition: .3s;
  transform: rotate(-90deg);
}
.rebooter-search-open-btn.is-active {
  display: none;
}
.rebooter-search-open-btn.is-active .icon::after {
  transform: rotate(0);
}
.rebooter-search-submit {
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24rem;
  height: 5rem;
  border: 2px solid var(--bg4);
  border-radius: 10rem;
  background: var(--bg1);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--bg4);
  cursor: pointer;
  transition: .3s;
}
@media screen and (min-width: 751px) {
  .rebooter-search-submit:hover {
    background: var(--bg4);
    color: var(--bg1);
  }
} /* @min751 */

.rebooter-no-result {
  display: none;
  text-align: center;
  font-size: 1.8rem;
}

.rebooter-search-result-condition {
  display: none;
}



@media screen and (max-width: 750px) {
  .product-cat-mv {
    height: 32rem;
  }
  .product-cat-mv .ani-lines {
    width: 100%;
    height: 100%;
  }
  .product-cat-mv .mv-inner {
    align-items: flex-start;
  }
  .product-cat-mv.--rebooter .mv-inner {
    justify-content: flex-start;
  }
  .product-cat-mv.--cloud-software .mv-inner {
    justify-content: flex-start;
  }
  .product-cat-mv.--option .mv-inner {
    align-items: flex-end;
    justify-content: flex-end;
  }
  .rebooter-bnr {
    width: 100%;
    margin: 0 auto;
  }
  .rebooter-list .item {
    width: 100%;
  }
  
  .rebooter-search-list .rebooter-search-box2 dt {
    width: 100%;
    padding: 2rem 0 1rem;
    float: none;
    clear: none;
  }
  .rebooter-search-list .rebooter-search-box2 dd {
    padding: 0 0 2rem;
  }
  .rebooter-search-btn {
    font-size: 1.3rem;
  }
  .rebooter-search-modal > a {
    height: calc(100% - 1rem);
  }

  .rebooter-search-modal > a > img {
    width: 2rem;
    height: 2rem;
  }
  .rebooter-search-submit {
    width: 20rem;
    height: 4.4rem;
    font-size: 1.5rem;
  }

} /* @max750 */


/* ---------------------------------------------------------------------------
//  discontinued
--------------------------------------------------------------------------- */

.product-discontinued-tag {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-discontinued-tag li {
  background: var(--bg4);
  color: var(--bg1);
  font-size: 1.3rem;
  padding: .1rem 1rem;
}


/* ---------------------------------------------------------------------------
//  custom
--------------------------------------------------------------------------- */
.mv-product-customize {
  display: block;
  height: 44rem;
  overflow: hidden;
  position: relative;
}
.mv-product-customize .bg {
  background: linear-gradient(to bottom, var(--bg2) 0%, var(--bg1) 100%);
}
.mv-product-customize .bg > div {
  width: 22rem;
  height: 22rem;
}
.mv-product-customize .bg .bg02 {
  top: 22rem;
}
.mv-product-customize .bg .bg03 {
  width: 8.6rem;
  height: 8.6rem;
  top: 28rem;
  left: 62rem;
}
.mv-product-customize .bg .bg04 {
  width: 13rem;
  height: 13rem;
  top: 31rem;
  left: 70.6rem;
}
.mv-product-customize .bg .bg05 {
  width: 16rem;
  height: 16rem;
  top: 8rem;
  left: 53%;
}
.mv-product-customize .bg .bg06 {
  right: 22rem;
}
.mv-product-customize .bg .bg08 {
  top: 22rem;
  right: 22rem;
}
.mv-product-customize .bg .bg09 {
  top: 22rem;
}


.customize-head-nav {
  padding: 4rem 0;
}
.customize-head-nav-btns {
  gap: 2rem;
}
.section-customize1 {
  padding: 8rem 0;
}
.section-customize2 .item {
  padding: 4rem;
}
.section-customize2 .item .icon {
  width: 6rem;
  margin: 0 auto 1rem;
}
.section-customize3 .flex {
  gap: 8rem;
}
.section-customize3 .flex > div {
  width: calc((100% - 8rem * 1) / 2);
}
.section-customize4 .flex > div {
  width: 34rem;
}
.section-customize-contact {
  background: var(--grad);
}
@media screen and (max-width: 1024px) and (min-width: 751px) {
  .customize-head-nav .flex {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 2rem;
  }
  .customize-head-nav .flex .h18_ja {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .mv-product-customize {
    height: 32rem;
  }
  .mv-product-customize .bg .bg01 {
    width: 20rem;
    height: 20rem;
  }
  .mv-product-customize .bg .bg03 {
    width: 6rem;
    height: 6rem;
    top: auto;
    left: auto;
    bottom: 0;
    right: 10rem;
  }
  .mv-product-customize .bg .bg04 {
    width: 10rem;
    height: 10rem;
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
  }
  .mv-product-customize .bg .bg05 {
    width: 8rem;
    height: 8rem;
    top: 10rem;
    left: 21rem;
  }
  .mv-product-customize .bg .bg07 {
    width: 12rem;
    height: 12rem;
    right: 0;
  }
  .mv-product-customize .bg .bg10 {
    width: 12rem;
    height: 12rem;
  }
  .customize-head-nav-btns {
    align-items: center !important;
    gap: 1rem;
    margin-top: 2rem;
  }
  .section-customize1 {
    padding: 6rem 0;
  }
  .section-customize2 .item {
    padding: 2rem;
    margin-top: 2rem;
  }
  .section-customize3 .flex {
    gap: 2rem;
  }
  .section-customize3 .flex > div {
    width: 100%;
  }
  .section-customize4 .flex > div {
    width: 100%;
  }

} /* @max750 */


/* ---------------------------------------------------------------------------
//  datacenter
--------------------------------------------------------------------------- */
.mv-product-datacenter {
  display: block;
  height: 44rem;
  overflow: hidden;
  position: relative;
}
.mv-product-datacenter .ani-lines {
  position: absolute;
  top: 0;
  right: 6rem;
  width: 27rem;
  height: 100%;
}
.section-datacenter1 {
  padding: 8rem 0;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .mv-product-datacenter {
    height: 32rem;
  }
  .mv-product-datacenter .ani-lines {
    width: 100%;
    height: 100%;
    right: auto;
  }
} /* @max750 */

.modal-dynamic-content img {
  max-width: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
}