@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');


/**
 * Common Style
 * ================================================================================
 * Table of Contents:
 *
 * Basic Structure
 * Parts Settings
 * Content Settings
 * Colorbox Settings
 * ================================================================================
 */






/**
 * ================================================================================
 * Basic Structure
 * ================================================================================
 */

body.productsDmFeaturesOpen {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

/* -- Layout -- */
#productsDmA2,
#cboxContent {
  display: block;
  position: relative;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'verdana', sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#productsDmA2 *,
#productsDmA2 *::before,
#productsDmA2 *::after,
#cboxContent *,
#cboxContent *::before,
#cboxContent *::after {
  box-sizing: border-box;
}

.header {
  background-color: #FFF;
  position: relative;
  z-index: 500;
}

#headerNavArea {
  position: relative;
  z-index: 499;
}

.dirpath {
  margin-top: 0;
}

.footer {
  margin-top: 0 !important;
}

#productsDmA2 img,
#productsDmA2 video {
  width: 100%;
}

#productsDmA2 strong {
  font-weight: bold;
}

#productsDmA2 a {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.2s ease-in;
  text-decoration: none;
}

#productsDmA2 a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 a:hover {
    opacity: 1;
  }
}



/**
 * ================================================================================
 * Parts Settings
 * ================================================================================
 */

/**
 * Wrapper
 * -------------------------------
 */

#productsDmA2 .p-wrapper {
  width: 1080px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .p-wrapper {
    width: 100%;
    padding: 0 15px;
  }
}


/**
 * List / Comments / Caution / Caption
 * -------------------------------
 */

#productsDmA2 .p-lists,
#productsDmA2 .p-comments {
  list-style: none;
}

#productsDmA2 .p-lists > li,
#productsDmA2 .p-comments > li {
  padding-left: 1em;
  text-indent: -1em;
}

#productsDmA2 .p-comments,
#productsDmA2 .p-caution,
#productsDmA2 .p-caption {
  font-size: 1.3rem;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .p-comments,
  #productsDmA2 .p-caution,
  #productsDmA2 .p-caption {
    font-size: 1.0rem;
  }
}


/**
 * Column
 * -------------------------------
 */

#productsDmA2 .p-cols {
  display: flex;
  flex-wrap: wrap;
}

#productsDmA2 .p-col01 {
  width: 100%;
}
#productsDmA2 .p-col02 {
  width: 50%;
}
#productsDmA2 .p-col03 {
  width: 33.3333%;
}
#productsDmA2 .p-col04 {
  width: 25%;
}
#productsDmA2 .p-col05 {
  width: 20%;
}
#productsDmA2 .p-col06 {
  width: 16.6666%;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .p-col01SP {
    width: 100%;
  }
  #productsDmA2 .p-col02SP {
    width: 50%;
  }
  #productsDmA2 .p-col03SP {
    width: 33.3333%;
  }
  #productsDmA2 .p-col04SP {
    width: 25%;
  }
  #productsDmA2 .p-col05SP {
    width: 20%;
  }
  #productsDmA2 .p-col06SP {
    width: 16.6666%;
  }
}


/**
 * Button
 * -------------------------------
 */

#productsDmA2 .p-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* -- .p-btnType01 -- */
#productsDmA2 .p-btnType01 > * {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 25px 95px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  transition: color 0.2s ease-in;
}
#productsDmA2 .p-btnType01 > *:hover {
  opacity: 1;
}

#productsDmA2 .p-btnType01 > *::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  content: '';
  transition: opacity 0.2s ease-in;
}
#productsDmA2 .p-btnType01 > *:hover::before {
  opacity: 1;
}

#productsDmA2 .p-btnType01 > a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-wt.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  content: '';
}

/* Color */
#productsDmA2 .p-btnType01.p-btnBlack > * {
  background-color: #000;;
}
#productsDmA2 .p-btnType01.p-btnBlack > *::before {
  background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(98, 98, 98, 1) 100%);
}

#productsDmA2 .p-btnType01.p-btnBdrBlack > * {
  border: 2px solid #000;
  color: #000;
}
#productsDmA2 .p-btnType01.p-btnBdrBlack > a::after {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-bk.svg");
}
#productsDmA2 .p-btnType01.p-btnBdrBlack.p-btnIconPdf > a::after {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-pdf01-gy.svg");
}
#productsDmA2 .p-btnType01.p-btnBdrBlack > *:hover {
  color: #000;
}
#productsDmA2 .p-btnType01.p-btnBdrBlack > *::before {
  background: linear-gradient(90deg,rgba(0, 0, 0, 0.1) 0%, rgba(98, 98, 98, 0.1) 100%);
}
#productsDmA2 .p-btnType01.p-btnBdrBlack> a:hover::after {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-bk.svg");
}
#productsDmA2 .p-btnType01.p-btnBdrBlack.p-btnIconPdf > a:hover::after {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-pdf01-gy.svg");
}

#productsDmA2 .p-btnType01 > * > span {
  display: block;
  line-height: 1.4;
}
#productsDmA2 .p-btnType01 > * > span:nth-of-type(1) {
  font-size: 2.0rem;
}

#productsDmA2 .p-btnType01.p-btnDblue > * {
  background-color: #00003c;
}
#productsDmA2 .p-btnType01.p-btnDblue > *::before {
  background: linear-gradient(90deg, rgba(0,0,60,1) 35%, rgba(0,0,120,1) 75%);
}

#productsDmA2 .p-btnType01.p-btnBlue > * {
  background-color: #1964ff;
}
#productsDmA2 .p-btnType01.p-btnBlue > *::before {
  background: linear-gradient(90deg, rgba(25,100,255,1) 0%, rgba(77,136,255,1) 100%);
}
#productsDmA2 .p-btnType01.p-btnBdrBlue > * {
  border: 2px solid #1964ff;
  color: #1964ff;
}
#productsDmA2 .p-btnType01.p-btnBdrBlue > a::after {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-bl.svg");
}
#productsDmA2 .p-btnType01.p-btnBdrBlue > *:hover {
  color: #fff;
}
#productsDmA2 .p-btnType01.p-btnBdrBlue > *::before {
  background-color: #1964ff;
}
#productsDmA2 .p-btnType01.p-btnBdrBlue > a:hover::after {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-wt.svg");
}

#productsDmA2 .p-btnType01.p-btnGray > * {
  background-color: #191919;
}
#productsDmA2 .p-btnType01.p-btnGray > *::before {
  background: linear-gradient(90deg, rgba(25,25,25,1) 0%, rgba(84,84,84,1) 100%);
}

#productsDmA2 .p-btnType01.p-btnBdrLgray > * {
  border: 2px solid #b4b4b4;
  color: #b4b4b4;
}
#productsDmA2 .p-btnType01.p-btnBdrLgray > a::after {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-gy.svg");
}
#productsDmA2 .p-btnType01.p-btnBdrLgray.p-btnIconPdf > a::after {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-pdf01-gy.svg");
}
#productsDmA2 .p-btnType01.p-btnBdrLgray > *:hover {
  color: #000;
}
#productsDmA2 .p-btnType01.p-btnBdrLgray > *::before {
  background-color: #b4b4b4;
}
#productsDmA2 .p-btnType01.p-btnBdrLgray > a:hover::after {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-bk.svg");
}
#productsDmA2 .p-btnType01.p-btnBdrLgray.p-btnIconPdf > a:hover::after {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-pdf01-gy.svg");
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .p-btnType01 > * {
    padding: 15px 30px;
  }
  
  #productsDmA2 .p-btnType01 > *:hover::before {
    opacity: 0;
  }

  #productsDmA2 .p-btnType01 > a::after {
    width: calc(32px * 0.7);
    height: calc(32px * 0.7);
    right: 10px;
  }

  #productsDmA2 .p-btnType01 > * > span:nth-of-type(1) {
    font-size: 1.4rem;
  }
  
  /* Color */
  #productsDmA2 .p-btnType01.p-btnBdrBlack > * {
    border-width: 1.5px;
  }

  #productsDmA2 .p-btnType01.p-btnBdrBlue {
    border-width: 1.5px;
  }
  #productsDmA2 .p-btnType01.p-btnBdrBlue > *:hover {
    color: #1964ff;
  }
  #productsDmA2 .p-btnType01.p-btnBdrBlue > a:hover::after {
    background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-bl.svg");
  }

  #productsDmA2 .p-btnType01.p-btnBdrLgray {
    border-width: 1.5px;
  }
  #productsDmA2 .p-btnType01.p-btnBdrLgray > *:hover {
    color: #b4b4b4;
  }
  #productsDmA2 .p-btnType01.p-btnBdrLgray > a:hover::after {
    background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-gy.svg");
  }
}

/* -- .p-btnType02 -- */
#productsDmA2 .p-btnType02 > * {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 15px 75px;
  background: linear-gradient(90deg,rgba(25, 100, 255, 1) 0%, rgba(0, 0, 130, 1) 100%);
  color: #fff;
  text-align: center;
}

#productsDmA2 .p-btnType02 > *::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 17px;
  height: 17px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: '';
}
#productsDmA2 .p-btnType02Arrow > *::after {
  display: none;
}

#productsDmA2 .p-btnType02 > * > span:nth-of-type(1) {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
}

#productsDmA2 .p-btnType02 > * > span:nth-of-type(2) {
  display: block;
  width: 100%;
  margin-top: 5px;
}

#productsDmA2 .p-btnType02 > * > span:nth-of-type(2) > span {
  display: inline-block;
  padding-right: 15px;
  position: relative;
  font-size: 2.0rem;
  font-weight: 500;
}

#productsDmA2 .p-btnType02 > * > span:nth-of-type(2) > span::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  margin-top: 2px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .p-btnType02 > * {
    padding: 10px 35px;
  }
  
  #productsDmA2 .p-btnType02 > *::after {
    right: 10px;
    width: 10px;
    height: 10px;
  }

  #productsDmA2 .p-btnType02 > * > span:nth-of-type(1) {
    font-size: 1.5rem;
  }
  
  #productsDmA2 .p-btnType02 > * > span:nth-of-type(2) {
    margin-top: 3px;
  }

  #productsDmA2 .p-btnType02 > * > span:nth-of-type(2) > span {
    padding-right: 10px;
    font-size: 1.1rem;
  }

  #productsDmA2 .p-btnType02 > * > span:nth-of-type(2) > span::after {
    width: 7px;
    height: 7px;
    margin-top: 1px;
  }
}

/* -- .p-btnType03 -- */
#productsDmA2 .p-btnType03 > * {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 25px 95px;
  background-color: #000;
  color: #fff;
  text-align: center;
  transition: color 0.2s ease-in;
}
#productsDmA2 .p-btnType03 > *:hover {
  opacity: 1;
}

#productsDmA2 .p-btnType03 > *::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(98, 98, 98, 1) 100%);
  transition: opacity 0.2s ease-in;
  content: '';
}
#productsDmA2 .p-btnType03 > *:hover::before {
  opacity: 1;
}

#productsDmA2 .p-btnType03 > *::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-wt.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  content: '';
}

#productsDmA2 .p-btnType03 > * > span {
  display: block;
  line-height: 1.4;
}

#productsDmA2 .p-btnType03 > * > span:nth-of-type(1) {
  font-size: 2.0rem;
}

#productsDmA2 .p-btnType03 > * > span:nth-of-type(1)::before,
#productsDmA2 .p-btnType03 > * > span:nth-of-type(1)::after {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 45px;
  height: calc(100% + 2px);
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_btn-type03-mask.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% 100%;
  content: '';
}

#productsDmA2 .p-btnType03 > * > span:nth-of-type(1)::before {
  left: -3px;
  transform: translateY(-50%);
}

#productsDmA2 .p-btnType03 > * > span:nth-of-type(1)::after {
  right: -3px;
  transform: translateY(-50%) rotate(180deg);
}


@media only screen and (max-width: 767px) {
  #productsDmA2 .p-btnType03 > * {
    padding: 15px 30px;
  }
  
  #productsDmA2 .p-btnType03 > *:hover::before {
    opacity: 0;
  }

  #productsDmA2 .p-btnType03 > *::after {
    width: calc(32px * 0.7);
    height: calc(32px * 0.7);
    right: 15px;
  }

  #productsDmA2 .p-btnType03 > * > span:nth-of-type(1) {
    font-size: 1.4rem;
  }

  #productsDmA2 .p-btnType03 > * > span:nth-of-type(1)::before,
  #productsDmA2 .p-btnType03 > * > span:nth-of-type(1)::after {
    width: calc(45px * 0.5);
  }

  #productsDmA2 .p-btnType03 > * > span:nth-of-type(1)::before {
    left: -2px;
  }

  #productsDmA2 .p-btnType03 > * > span:nth-of-type(1)::after {
    right: -2px;
  }
}


/**
 * Banner
 * -------------------------------
 */

#productsDmA2 .p-bannerDl {
  margin-top: 50px;
  text-align: center;
}
#productsDmA2 .p-bannerDl:nth-of-type(1) {
  margin-top: 0;
}

#productsDmA2 .p-bannerDl > dt {
  display: block;
  position: relative;
  margin-bottom: 15px;
}

#productsDmA2 .p-bannerDl > dt:before {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: #fff;
  content: '';
}

#productsDmA2 .p-bannerDl > dt > span {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  background-color: #000;
  font-size: 1.4rem;
  font-weight: 700;
}

#productsDmA2 .p-bannerDl > dd > a {
  display: block;
  border: 1px solid #1964ff;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .p-bannerDl {
    margin-top: 20px;
  }

  #productsDmA2 .p-bannerDl > dt {
    margin-bottom: 10px;
  }

  #productsDmA2 .p-bannerDl > dt > span {
    padding: 0 10px;
    font-size: 1.1rem;
  }
}


/**
 * Modal
 * -------------------------------
 */

.p-modal {
  display: none;
}


/**
 * Slickslider
 * -------------------------------
 */

#productsDmA2 .slick-arrow {
  background: none;
  width: 50px;
  height: 50px;
  border: 2px solid #000;
  position: absolute;
  top: 50%;
  border-radius: 1000px;
  transform: translateY(-50%);
  transition: opacity 0.2s ease-in;
}
#productsDmA2 .slick-arrow:hover {
  opacity: 0.6;
}
#productsDmA2 .slick-prev {
  left: -120px;
}
#productsDmA2 .slick-next {
  right: -120px;
}

#productsDmA2 .slick-arrow::before {
  content: '';
  width: 16px;
  height: 16px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
}

#productsDmA2 .slick-prev::before {
  margin-left: 4px;
  transform: translate(-50%, -50%) rotate(-135deg);
}
#productsDmA2 .slick-next::before {
  margin-left: -4px;
  transform: translate(-50%, -50%) rotate(45deg);
}

#productsDmA2 .slick-dots {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  width: 100%;
  list-style: none;
}

#productsDmA2 .slick-dots > li {
  display: inline-flex;
  margin: 0 8px;
  line-height: 1;
}

#productsDmA2 .slick-dots > li > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 10px;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-size: 0;
  text-indent: -9999px;
  transition: all 0.2s ease-in;
}
#productsDmA2 .slick-dots > li > button:hover {
  opacity: 0.6;
}
#productsDmA2 .slick-dots > li.slick-active > button:hover {
  opacity: 1;
}

#productsDmA2 .slick-dots > li > button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 6px;
  background-color: #000;
  transform: translate(-50%, -50%);
  content: '';
}

#productsDmA2 .slick-dots > li.slick-active > button::before {
  background-color: #ababab;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .slick-arrow {
    width: calc(50px * 0.5);
    height: calc(50px * 0.5);
    border-width: 1.5px;
  }
  #productsDmA2 .slick-arrow:hover {
    opacity: 1;
  }
  #productsDmA2 .slick-prev {
    left: calc(-58px * 0.5);
  }
  #productsDmA2 .slick-next {
    right: calc(-58px * 0.5);
  }
  
  #productsDmA2 .slick-arrow::before {
    width: calc(16px * 0.5);
    height: calc(16px * 0.5);
    border-top-width: 1.5px;
    border-right-width: 1.5px;
  }
  #productsDmA2 .slick-prev::before {
    margin-left: 1.5px;
  }
  #productsDmA2 .slick-next::before {
    margin-left: -1.5px;
  }

  #productsDmA2 .slick-dots {
    bottom: -25px;
  }

  #productsDmA2 .slick-dots > li {
    margin: 0 4px;
  }

  #productsDmA2 .slick-dots > li > button {
    width: 30px;
    height: 6px;
  }

  #productsDmA2 .slick-dots > li > button:hover {
    opacity: 1;
  }

  #productsDmA2 .slick-dots > li > button::before {
    height: 4px;
  }
}



/**
 * ================================================================================
 * Top Page Settings
 * ================================================================================
 */

/**
 * Loader
 * -------------------------------
 */

#productsDmA2 #loader {
  background-color: #fff;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_loader.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 35px auto;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 #loader {
    background-size: 30px auto;
  }
}


/**
 * UCL
 * -------------------------------
 */

#productsDmA2 .ucl {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 73px;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_ucl-bg.png');
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

#productsDmA2 .ucl > dl {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

#productsDmA2 .ucl > dl > dt {
  display: block;
}

#productsDmA2 .ucl > dl > dt img {
  width: 264px;
}

#productsDmA2 .ucl > dl > dd {
  padding-left: 25px;
  margin-left: 25px;
  position: relative;
  color: #000;
  font-size: 17px;
  font-weight: 700;
}

#productsDmA2 .ucl > dl > dd::before {
  content: '';
  background-color: #000;
  width: 2px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .ucl {
    display: block;
    height: auto;
    padding: 5px 10px 10px 10px;
    background-size: 250% 100%;
  }

  #productsDmA2 .ucl > dl {
    display: block;
  }
  
  #productsDmA2 .ucl > dl > dt img {
    width: 60%;
  }

  #productsDmA2 .ucl > dl > dd {
    padding-left: 0;
    margin-left: 0;
    padding-top: 10px;
    font-size: 12px;
  }

  #productsDmA2 .ucl > dl > dd::before {
    width: 20px;
    height: 1px;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
  }
}


/**
 * Key Visual
 * -------------------------------
 */

#productsDmA2 .kv {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1;
}

#productsDmA2 .kv .kvTtl {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

#productsDmA2 .kv .kvTtl > span {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
}

#productsDmA2 .kv .kvTtl > span:nth-of-type(1) {
  top: calc(100vw * (65 / 1600));
}

#productsDmA2 .kv .kvTtl > span:nth-of-type(2) {
  bottom: calc(100vw * (105 / 1600));
}

#productsDmA2 .kv .kvTtl > span:nth-of-type(1) img {
  width: calc(100vw * (930 / 1600));
}

#productsDmA2 .kv .kvTtl > span:nth-of-type(2) img {
  width: calc(100vw * (460 / 1600));
}

#productsDmA2 .kv .kvBg {
  position: relative;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 1279px) {
  #productsDmA2 .kv .kvTtl > span:nth-of-type(1) {
    top: calc(1280px * (65 / 1600));
  }

  #productsDmA2 .kv .kvTtl > span:nth-of-type(2) {
    bottom: calc(1280px * (105 / 1600));
  }

  #productsDmA2 .kv .kvTtl > span:nth-of-type(1) img {
    width: calc(1280px * (930 / 1600));
  }

  #productsDmA2 .kv .kvTtl > span:nth-of-type(2) img {
    width: calc(1280px * (460 / 1600));
  }
}
@media only screen and (max-width: 767px) {
  #productsDmA2 .kv .kvTtl > span:nth-of-type(1) {
    top: calc(100vw * (65 / 750) * 0.45);
  }

  #productsDmA2 .kv .kvTtl > span:nth-of-type(2) {
    bottom: calc(100vw * (105 / 750) * 0.3);
  }

  #productsDmA2 .kv .kvTtl > span:nth-of-type(1) img {
    width: calc(100vw * (930 / 750) * 0.7);
  }

  #productsDmA2 .kv .kvTtl > span:nth-of-type(2) img {
    width: calc(100vw * (460 / 750) * 0.9);
  }
  
  #productsDmA2 .kv .kvBg {
    width: 128%;
    margin-left: -14%;
  }
}


/**
 * Pickup
 * -------------------------------
 */

#productsDmA2 .pickup {
  padding-top: 100px;
  padding-bottom: 150px;
}

#productsDmA2 .pickup .pickupLists {
  margin-top: -100px;
  padding-left: 160px;
  padding-right: 160px;
}

#productsDmA2 .pickup .pickupLists > li {
  margin-top: 100px;
  text-align: center;
}

#productsDmA2 .pickup .pickupListsMovie img {
  width: 400px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .pickup {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  
  #productsDmA2 .pickup .pickupLists {
    margin-top: -40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #productsDmA2 .pickup .pickupLists > li {
    margin-top: 40px;
  }
  
  #productsDmA2 .pickup .pickupListsMovie img {
    width: 80%;
  }
}



/**
 * Trouble
 * -------------------------------
 */

.trouble {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

.trouble .p-wrapper {
  padding: 120px 80px;
}

.trouble .troubleTtl {
  margin-bottom: 50px;
  text-align: center; 
}

.trouble .troubleTtl > span {
  display: block;
  font-weight: bold;
}

.trouble .troubleTtl > span:nth-of-type(1) {
  margin-bottom: 30px;
  font-size: 30px;
}

.trouble .troubleTtl > span:nth-of-type(2) {
  background-color: #1964ff;
  display: inline-block;
  width: 140px;
  height: 1px;
}

.trouble .troubleTtl > span:nth-of-type(3) {
  margin-top: 40px;
  font-size: 23px;
}

.trouble .troubleTxt {
  margin-bottom: 95px;
  font-size: 17px;
  text-align: center;
}

.trouble .troubleTxt > span {
  display: block;
}

.trouble .troubleTxt > span img {
  width: 100%;
}

.trouble .troubleTxt > span:nth-of-type(2) {
  margin-top: -95px;
  margin-bottom: 35px;
  line-height: 1.8;
}

.trouble .troubleLists {
  text-align: center;
}

.trouble .troubleLists > dt {
  display: block;
}

.trouble .troubleLists > dt > span {
  display: block;
  font-size: 30px;
  font-weight: bold;
}

.trouble .troubleLists > dt > span:nth-of-type(1) {
  margin-bottom: 10px;
}
.trouble .troubleLists > dt > span:nth-of-type(2) {
  margin-bottom: 45px;
}
.trouble .troubleLists > dt > span:nth-of-type(3) img {
  width: 103px;
}

.trouble .troubleLists > dd {
  margin-top: -15px;
}

.trouble .troubleLists > dd > p:nth-of-type(1) {
  margin-bottom: 110px;
  text-align: center;
}

.trouble .troubleLists > dd > p:nth-of-type(1) > span {
  display: block;
}

.trouble .troubleLists > dd > p:nth-of-type(1) > span:nth-of-type(2) {
  margin-top: -70px;
  margin-bottom: 45px;
  font-size: 17px;
  line-height: 1.8;
}

.trouble .troubleLists > dd > p:nth-of-type(1) > span img {
  width: 100%;
}

.trouble .p-comments {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .trouble .p-wrapper {
    padding: 30px 15px;
  }

  .trouble .troubleTtl {
    margin-bottom: 25px;
  }

  .trouble .troubleTtl > span:nth-of-type(1) {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .trouble .troubleTtl > span:nth-of-type(2) {
    width: 50px;
    height: 1px;
  }

  .trouble .troubleTtl > span:nth-of-type(3) {
    margin-top: 20px;
    font-size: 13px;
  }

  .trouble .troubleTxt {
    margin-bottom: 45px;
    font-size: 12px;
  }

  .trouble .troubleTxt > span:nth-of-type(2) {
    margin-top: -30px;
    margin-bottom: 20px;
  }

  .trouble .troubleTxt > span img {
    width: 120%;
    max-width: initial;
    margin-left: -10%;
  }
  
  .trouble .troubleLists > dt > span {
    font-size: 15px;
  }

  .trouble .troubleLists > dt > span:nth-of-type(1) {
    margin-bottom: 5px;
  }
  .trouble .troubleLists > dt > span:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .trouble .troubleLists > dt > span:nth-of-type(3) img {
    width: calc(103px * 0.6);
  }

  .trouble .troubleLists > dd {
    margin-top: -15px;
  }

  .trouble .troubleLists > dd > p:nth-of-type(1) {
    margin-bottom: 50px;
  }

  .trouble .troubleLists > dd > p:nth-of-type(1) > span:nth-of-type(2) {
    margin-top: -10px;
    margin-bottom: 20px;
    font-size: 12px;
  }

  .trouble .troubleLists > dd > p:nth-of-type(1) > span img {
    width: 120%;
    max-width: initial;
    margin-left: -10%;
  }
}


/**
 * Lineup
 * -------------------------------
 */

#productsDmA2 .lineup {
  padding-bottom: 20px;
}

#productsDmA2 .lineup .p-wrapper {
  width: 1200px;
}

#productsDmA2 .lineup .lineupTtl {
  text-align: center;
}

#productsDmA2 .lineup .lineupTtl img {
  width: 182px;
}

#productsDmA2 .lineup .lineupLists {
  padding-top: 50px;
}

#productsDmA2 .lineup .lineupLists > li {
  margin-top: 130px;
}

#productsDmA2 .lineup .lineupLists > li:nth-of-type(1) {
  margin-top: 0;
}

#productsDmA2 .lineup .lineupListsTtl {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: #000;
}

#productsDmA2 .lineup .lineupListsTtl > span {
  display: inline-block;
  color: #fff;
  line-height: 1.4;
}

#productsDmA2 .lineup .lineupListsTtl > span:nth-of-type(1) {
  font-size: 2.8rem;
}

#productsDmA2 .lineup .lineupListsTtl > span:nth-of-type(1) img {
  display: inline-block;
  position: relative;
  top: 2px;
  width: auto;
  height: 40px;
  margin-right: 5px;
  vertical-align: baseline;
}

#productsDmA2 .lineup .lineupListsTtl > span:nth-of-type(2) {
  margin-left: 20px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .lineup {
    padding-bottom: 10px;
  }

  #productsDmA2 .lineup .p-wrapper {
    width: 100%;
  }

  #productsDmA2 .lineup .lineupTtl img {
    width: calc(182px * 0.55);
  }

  #productsDmA2 .lineup .lineupLists {
    padding-top: calc(50px * 0.5);
  }

  #productsDmA2 .lineup .lineupLists > li {
    margin-top: calc(130px * 0.3);
  }

  #productsDmA2 .lineup .lineupListsTtl {
    padding: 8px;
  }

  #productsDmA2 .lineup .lineupListsTtl > span:nth-of-type(1) {
    font-size: 1.4rem;
  }

  #productsDmA2 .lineup .lineupListsTtl > span:nth-of-type(1) img {
    top: 1px;
    height: calc(40px * 0.6);
    margin-right: 4px;
  }

  #productsDmA2 .lineup .lineupListsTtl > span:nth-of-type(2) {
    margin-left: 10px;
    font-size: 1.05rem;
  }
}

/* -- .lineupBanner -- */
#productsDmA2 .lineup .lineupBanner {
  display: flex;
  margin-left: -54px;
  padding: 50px 90px 0 90px;
}

#productsDmA2 .lineup .lineupBanner > li {
  width: 50%;
  padding-left: 54px;
  position: relative;
  z-index: 1;
}

#productsDmA2 .lineup .lineupBanner > li > * {
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
}
#productsDmA2 .lineup .lineupBanner > li > *:hover {
  opacity: 1;
}

#productsDmA2 .lineup .lineupBanner > li > *::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_lineup-lists-bg.jpg');
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  content: '';
  transition: opacity 0.2s ease-in;
}
#productsDmA2 .lineup .lineupBanner > li > *:hover::before {
  opacity: 1;
}

#productsDmA2 .lineup .lineupBannerInner {
  padding: 95px 45px 40px 45px;
}

#productsDmA2 .lineup .lineupBannerInner > dt,
#productsDmA2 .lineup .lineupBannerInner > dt > span {
  display: block;
  line-height: 1;
}

#productsDmA2 .lineup .lineupBannerInner > dt {
  text-align: center;
}

#productsDmA2 .lineup .lineupBannerInner > dd {
  position: relative;
}

#productsDmA2 .lineup .lineupBannerInner > dd::before,
#productsDmA2 .lineup .lineupBannerInner > dd::after {
  position: absolute;
  content: '';
}

#productsDmA2 .lineup .lineupBannerInner > dd::before {
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border: 2px solid #000;
}

#productsDmA2 .lineup .lineupBannerInner > dd::after {
  bottom: 10px;
  right: 11px;
  transform: rotate(45deg);
  width: 9px;
  height: 9px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .lineup .lineupBanner {
    display: block;
    margin-left: 0;
    margin-top: -15px;
    padding: 20px 0 0 0;
  }

  #productsDmA2 .lineup .lineupBanner > li {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }

  #productsDmA2 .lineup .lineupBanner > li > *:hover {
    opacity: 1;
  }

  #productsDmA2 .lineup .lineupBanner > li > *:hover::before {
    opacity: 0;
  }

  #productsDmA2 .lineup .lineupBannerInner > dd {
    padding-left: 15px;
    padding-right: 15px;
  }

  #productsDmA2 .lineup .lineupBannerInner {
    padding: 15px;
  }

  #productsDmA2 .lineup .lineupBannerInner > dd::before {
    width: calc(28px * 0.6);
    height: calc(28px * 0.6);
    border-width: 1.5px;
  }

  #productsDmA2 .lineup .lineupBannerInner > dd::after {
    bottom: calc(10px * 0.6);
    right: calc(11px * 0.6);
    width: calc(9px * 0.6);
    height: calc(9px * 0.6);
    border-top-width: 1.5px;
    border-right-width: 1.5px;
  }
}

/* .lineupBannerImg */
#productsDmA2 .lineup .lineupBannerImg {
  position: relative;
  z-index: 1;
}

#productsDmA2 .lineup .lineupBannerImg img {
  display: inline-block;
  width: calc(100% + 16px);
  max-width: calc(100% + 16px);
  margin-left: -8px;
}

#productsDmA2 .lineup .lineupBannerLabel {
  position: absolute;
  z-index: 2;
  top: -22px;
  width: 116px;
  height: 116px;
}
#productsDmA2 .lineup .lineupBanner > li:nth-child(odd) .lineupBannerLabel {
  left: -58px;
}
#productsDmA2 .lineup .lineupBanner > li:nth-child(even) .lineupBannerLabel {
  right: -58px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .lineup .lineupBannerImg img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  
  #productsDmA2 .lineup .lineupBannerLabel {
    top: calc(100vw * (220 / 750));
    width: calc(100vw * (116 / 750) * 1.25);
    height: calc(100vw * (116 / 750) * 1.25);
  }
  #productsDmA2 .lineup .lineupBanner > li:nth-child(odd) .lineupBannerLabel {
    left: 10px;
  }
  #productsDmA2 .lineup .lineupBanner > li:nth-child(even) .lineupBannerLabel {
    right: 10px;
  }
}

/* .lineupModel */
#productsDmA2 .lineup .lineupBannerModel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

#productsDmA2 .lineup .lineupBannerModel > span {
  display: block;
  flex: 0 0 auto;
}

#productsDmA2 .lineup .lineupBannerModel > span:nth-of-type(1) {
  min-width: 242px;
  padding: 9px;
  border-radius: 8px;
  background-color: #000;
  line-height: 0;
  text-align: center;
}
#productsDmA2 .lineup .lineupBannerModel > span:nth-of-type(1) img {
  width: auto;
  height: 18px;
}

#productsDmA2 .lineup .lineupBannerModel > span:nth-of-type(2) {
  padding-left: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .lineup .lineupBannerModel {
    margin-top: 20px;
    justify-content: flex-start;
  }

  #productsDmA2 .lineup .lineupBannerModel > span:nth-of-type(1) {
    min-width: calc(242px * 0.65);
    padding: 4px;
    border-radius: 3px;
  }
  #productsDmA2 .lineup .lineupBannerModel > span:nth-of-type(1) img {
    height: calc(18px * 0.65);
  }

  #productsDmA2 .lineup .lineupBannerModel > span:nth-of-type(2) {
    padding-left: 8px;
    font-size: 1.1rem;
  }
}

/* lineupTtlArea */
#productsDmA2 .lineup .lineupBannerTtlArea {
  display: inline-block;
  margin-top: 20px;
  padding-left: 110px;
  background-image: url(/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_label-26new.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 95px auto;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .lineup .lineupBannerTtlArea {
    margin-top: 10px;
    padding-left: 70px;
    background-size: 60px auto;
  }
}

/* .lineupSubTtl */
#productsDmA2 .lineup .lineupBannerSubTtl {
  display: flex;
  align-items: center;
  justify-content: center;
}
#productsDmA2 .lineup .lineupBannerSubTtl {
  justify-content: flex-start;
}

#productsDmA2 .lineup .lineupBannerSubTtl > span {
  display: block;
  flex: 0 0 auto;
}

#productsDmA2 .lineup .lineupBannerSubTtl > span:nth-of-type(1) {
  border: 1px solid #000;
  padding: 4px;
  font-size: 1.0rem;
  font-weight: 500;
  line-height: 1;
}

#productsDmA2 .lineup .lineupBannerSubTtl > span:nth-of-type(2) {
  padding-left: 5px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  /* .lineupSubTtl */
  #productsDmA2 .lineup .lineupBannerSubTtl > span:nth-of-type(1) {
    padding: 3px;
    font-size: 1.0rem;
  }

  #productsDmA2 .lineup .lineupBannerSubTtl > span:nth-of-type(2) {
    padding-left: 4px;
    font-size: 1.2rem;
  }
}

/* .lineupTtl */
#productsDmA2 .lineup .lineupBannerTtl {
  margin-top: 5px;
}

#productsDmA2 .lineup .lineupBannerTtl > span {
  display: block;
  line-height: 1.4;
}

#productsDmA2 .lineup .lineupBannerTtl > span:nth-of-type(1) {
  font-size: 3.0rem;
  font-weight: 500;
}

#productsDmA2 .lineup .lineupBannerTtl > span:nth-of-type(2) {
  margin-top: 5px;
  font-size: 1.9rem;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  /* .lineupTtl */
  #productsDmA2 .lineup .lineupBannerTtl {
    margin-top: 3px;
  }

  #productsDmA2 .lineup .lineupBannerTtl > span:nth-of-type(1) {
    font-size: 2.1rem;
  }

  #productsDmA2 .lineup .lineupBannerTtl > span:nth-of-type(2) {
    margin-top: 3px;
    font-size: 1.4rem;
  }
}

/* -- .lineupBanner -- */
#productsDmA2 .lineup .lineupBottomBanner {
  padding: 60px 160px 0 160px;
  margin-top: -50px;
}

#productsDmA2 .lineup .lineupBottomBanner > li {
  margin-top: 50px;
}

#productsDmA2 .lineup .lineupBottomBannerInner {
  color: #fff;
  text-align: center;
}

#productsDmA2 .lineup .lineupBottomBannerTtl {
  display: block;
  margin-bottom: 10px;
  font-size: 2.0rem;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .lineup .lineupBottomBanner {
    padding: 30px 10px 0 10px;
    margin-top: -20px;
  }

  #productsDmA2 .lineup .lineupBottomBanner > li {
    margin-top: 20px;
  }

  #productsDmA2 .lineup .lineupBottomBannerTtl {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
}

/* -- .lineupBtn -- */
#productsDmA2 .lineup .lineupBtn {
  padding: 60px 160px 0 160px;
  margin-top: -50px;
  margin-left: -30px;
}

#productsDmA2 .lineup .lineupBtn .p-btn {
  margin-top: 50px;
  padding-left: 30px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .lineup .lineupBtn {
    padding: 30px 10px 0 10px;
    margin-top: -20px;
    margin-left: -10px;
  }

  #productsDmA2 .lineup .lineupBtn .p-btn {
    margin-top: 20px;
    padding-left: 10px;
  }
}

/* -- .lineupFeatures -- */
#productsDmA2 .lineup .lineupFeatures {
  margin: 100px -60px 0 -60px;
}

#productsDmA2 .lineup .lineupFeatures > * {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 226px;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_lineup-features-bg01.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  color: #fff;
}
#productsDmA2 .lineup .lineupFeatures > *:hover {
  opacity: 1;
}

#productsDmA2 .lineup .lineupFeatures > *::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_lineup-features-bg02.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  transition: opacity 0.2s ease-in;
  content: '';
}
#productsDmA2 .lineup .lineupFeatures > *:hover::before {
  opacity: 1;
}

#productsDmA2 .lineup .lineupFeatures > *::after {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-arrow01-wt.svg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  content: '';
}

#productsDmA2 .lineup .lineupFeatures > * span {
  display: block;
  text-align: center;
}

#productsDmA2 .lineup .lineupFeatures > * > span > span:nth-of-type(1) img {
  width: 594px;
}

#productsDmA2 .lineup .lineupFeatures > * > span > span:nth-of-type(2) {
  margin-top: 30px;
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .lineup .lineupFeatures {
    margin: 30px 0 0 0;
  }

  #productsDmA2 .lineup .lineupFeatures > * {
    height: 100px;
  }
  #productsDmA2 .lineup .lineupFeatures > *::before {
    display: none;
  }
  #productsDmA2 .lineup .lineupFeatures > *:hover::before {
    opacity: 0;
  }
  
  #productsDmA2 .lineup .lineupFeatures > *::after {
    right: 10px;
    width: calc(50px * 0.5);
    height: calc(50px * 0.5);
  }

  #productsDmA2 .lineup .lineupFeatures > * > span > span:nth-of-type(1) img {
    width: 75%;
  }

  #productsDmA2 .lineup .lineupFeatures > * > span > span:nth-of-type(2) {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}

/* -- .lineupKit -- */
#productsDmA2 .lineup .lineupKit {
  padding-bottom: 70px;
  margin-top: 105px;
  color: #fff;
}

#productsDmA2 .lineup .lineupKit::before {
  height: 100%;
  background: #000;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .lineup .lineupKit {
    padding-bottom: 25px;
    margin-top: 60px;
  }
}

/* -- .lineupBottom -- */
#productsDmA2 .lineup .lineupBottom {
  padding-left: 160px;
  padding-right: 160px;
}

#productsDmA2 .lineup .lineupBottom .p-btns {
  margin-left: -30px;
}

#productsDmA2 .lineup .lineupBottom .p-btn {
  padding-left: 30px;
}

#productsDmA2 .lineup .lineupBottom .p-btn.p-col02 > * {
  justify-content: flex-start;
  padding-left: 30px;
  padding-right: 70px;
  text-align: left;
}

#productsDmA2 .lineup .lineupBottom .p-btn > * {
  height: 100%;
}

#productsDmA2 .lineup .lineupBottom .p-btn > *::after {
  right: 20px;
}

#productsDmA2 .lineup .lineupBottom .p-btn.p-col02 > * > span:nth-of-type(1) {
  font-size: 1.9rem;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .lineup .lineupBottom {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  #productsDmA2 .lineup .lineupBottom .p-btns {
    margin-left: -10px;
  }

  #productsDmA2 .lineup .lineupBottom .p-btn {
    padding-left: 10px;
  }
  
  #productsDmA2 .lineup .lineupBottom .p-btn.p-col02 > * {
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
  }

  #productsDmA2 .lineup .lineupBottom .p-btn > *::after {
    right: 10px;
  }
  
  #productsDmA2 .lineup .lineupBottom .p-btn.p-col02 > * > span:nth-of-type(1) {
    font-size: 1.4rem;
  }
}


/**
 * Features
 * -------------------------------
 */

#productsDmA2 .features .featuresKv {
  position: relative;
  z-index: 1;
  height: 262px;
  margin-top: 140px;
  margin-bottom: 150px;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_features-kv-bg.jpg');
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

#productsDmA2 .features .featuresKvTtl {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

#productsDmA2 .features .featuresKvTtl span {
  display: block;
}

#productsDmA2 .features .featuresKvTtl > span > span:nth-of-type(2) {
  margin-top: 25px;
  font-size: 2.2rem;
  line-height: 1.4;
}

#productsDmA2 .features .featuresKvTtl img {
  width: 768px;
}

#productsDmA2 .features .p-wrapper {
  width: 1200px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .features .featuresKv {
    height: calc(262px * 0.4);
    margin-top: 60px;
    margin-bottom: calc(150px * 0.3);
  }

  #productsDmA2 .features .featuresKvTtl > span > span:nth-of-type(2) {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  #productsDmA2 .features .featuresKvTtl img {
    width: calc(768px * 0.3);
  }
  
  #productsDmA2 .features .p-wrapper {
    width: 100%;
  }
}

/* -- .featuresLists -- */
#productsDmA2 .features .featuresLists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -100px;
  margin-left: -80px;
}

#productsDmA2 .features .featuresLists > li {
  padding-top: 100px;
  padding-left: 80px;
}

#productsDmA2 .features .featuresLists > li a {
  display: block;
  position: relative;
  color: #000;
}
#productsDmA2 .features .featuresLists > li a:hover {
  opacity: 1;
}

#productsDmA2 .features .featuresListsInner {
  position: relative;
  z-index: 1;
  height: 702px;
  overflow: hidden;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_features-lists-bg01.jpg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;

}

#productsDmA2 .features .featuresListsInner::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.5) 100%);
  content: '';
  transition: opacity 0.2s ease-in;
}
#productsDmA2 .features .featuresLists > li a:hover .featuresListsInner::before {
  opacity: 1;
}

#productsDmA2 .features .featuresListsInner > dt {
  display: block;
  position: relative;
  z-index: -1;
}

#productsDmA2 .features .featuresListsInner > dt > span {
  display: block;
  position: absolute;
}

#productsDmA2 .features .featuresListsInner > dd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#productsDmA2 .features .featuresListsLetter {
  top: -4px;
  left: 0;
  z-index: -1;
  width: 100%;
}

#productsDmA2 .features .featuresListsTtl {
  display: inline-block;
  position: absolute;
  padding-bottom: 20px;
  border-bottom: 2px solid #000;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.7;
}

#productsDmA2 .features .featuresListsLogo {
  position: absolute;
}

#productsDmA2 .features .featuresListsComments {
  display: inline-block;
  position: absolute;
  color: #818181;
  font-size: 1.5rem;
  line-height: 1.4;
}

#productsDmA2 .features .featuresListsArrow {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 2px solid #000;
}

#productsDmA2 .features .featuresListsArrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 9px;
  height: 9px;
  margin-left: -2px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: '';
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .features .featuresLists {
    margin-top: calc(-100px * 0.2);
    margin-left: calc(-80px * 0.1);
  }

  #productsDmA2 .features .featuresLists > li {
    padding-top: calc(100px * 0.2);
    padding-left: calc(80px * 0.1);
  }
  
  #productsDmA2 .features .featuresListsInner {
    height: calc(100vw * (702 / 750) * 0.8);
  }

  #productsDmA2 .features .featuresListsInner::before {
    display: none;
  }
  #productsDmA2 .features .featuresLists > li a:hover .featuresListsInner::before {
    opacity: 0;
  }

  #productsDmA2 .features .featuresListsLetter {
    top: -1px;
  }

  #productsDmA2 .features .featuresListsTtl {
    padding-bottom: 10px;
    border-width: 1.5px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  
  #productsDmA2 .features .featuresListsComments {
    font-size: 1.0rem;
  }
  
  #productsDmA2 .features .featuresListsArrow {
    left: 15px;
    bottom: 15px;
    width: calc(28px * 0.6);
    height: calc(28px * 0.6);
    border-bottom-width: 1.5px;
  }

  #productsDmA2 .features .featuresListsArrow::after {
    width: calc(9px * 0.6);
    height: calc(9px * 0.6);
    margin-left: -1px;
    border-top-width: 1.5px;
    border-right-width: 1.5px;
  }
}

/* .featuresLists01 */
#productsDmA2 .features .featuresLists01 .featuresListsImg {
  top: 105px;
  left: 150px;
  width: 889px;
}

#productsDmA2 .features .featuresLists01 .featuresListsTtl {
  right: 60px;
  bottom: 60px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .features .featuresLists01 .featuresListsImg {
    top: calc(100vw * (105 / 750) * 0.7);
    left: calc(100vw * (150 / 750) * 0.35);
    width: calc(100vw * (889 / 750) * 0.65);
  }

  #productsDmA2 .features .featuresLists01 .featuresListsTtl {
    right: 15px;
    bottom: 15px;
  }
}

/* .featuresLists02 */
#productsDmA2 .features .featuresLists02 .featuresListsImg {
  top: 120px;
  left: 70px;
  width: 1060px;
}

#productsDmA2 .features .featuresLists02 .featuresListsImg img:nth-of-type(2) {
  display: block;
  position: absolute;
  left: 30px;
  bottom: -185px;
  width: 356px;
}

#productsDmA2 .features .featuresLists02 .featuresListsTtl {
  right: 60px;
  bottom: 80px;
  text-align: right;
}

#productsDmA2 .features .featuresLists02 .featuresListsLogo {
  right: 60px;
  bottom: 215px;
  width: 442px;
}

#productsDmA2 .features .featuresLists02 .featuresListsComments {
  right: 60px;
  bottom: 25px;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .features .featuresLists02 .featuresListsImg {
    top: calc(100vw * (120 / 750) * 0.35);
    left: calc(100vw * (70 / 750) * 0.1);
    width: calc(100vw * (1060 / 750) * 0.65);
  }

  #productsDmA2 .features .featuresLists02 .featuresListsImg img:nth-of-type(2) {
    left: calc(100vw * (30 / 750) * 0.1);
    bottom: calc(100vw * (-185 / 750) * 0.5);
    width: calc(100vw * (356 / 750) * 0.56);
  }

  #productsDmA2 .features .featuresLists02 .featuresListsTtl {
    right: 15px;
    bottom: calc(100vw * (65 / 750) * 2.0);
  }

  #productsDmA2 .features .featuresLists02 .featuresListsLogo {
    right: 15px;
    bottom: calc(100vw * (215 / 750) * 1.2);
    width: calc(100vw * (442 / 750) * 0.8);
  }

  #productsDmA2 .features .featuresLists02 .featuresListsComments {
    left: calc(100vw * (110 / 750) * 0.8);
    right: auto;
    bottom: calc(100vw * (60 / 750) * 0.4);
    padding-right: 15px;
    text-align: left;
    letter-spacing: -0.03em;
  }
}

/* .featuresLists03 */
#productsDmA2 .features .featuresLists03 .featuresListsImg {
  top: 60px;
  left: 160px;
  width: 888px;
}

#productsDmA2 .features .featuresLists03 .featuresListsTtl {
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .features .featuresLists03 .featuresListsImg {
    top: calc(100vw * (60 / 750) * 0.6);
    left: calc(100vw * (160 / 750) * 0.35);
    width: calc(100vw * (888 / 750) * 0.65);
  }

  #productsDmA2 .features .featuresLists03 .featuresListsTtl {
    bottom: 15px;
  }
}

/* .featuresLists04 */
#productsDmA2 .features .featuresLists04 .featuresListsImg {
  top: 185px;
  right: 45px;
  width: 550px;
}

#productsDmA2 .features .featuresLists04 .featuresListsTtl {
  left: 60px;
  bottom: 155px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .features .featuresLists04 .featuresListsImg {
    top: calc(100vw * (185 / 750) * 0.4);
    right: 15px;
    width: calc(100vw * (550 / 750) * 0.7);
  }

  #productsDmA2 .features .featuresLists04 .featuresListsTtl {
    left: calc(100vw * (110 / 750) * 0.9);
    bottom: 15px;
  }
}

/* .featuresLists05 */
#productsDmA2 .features .featuresLists05 .featuresListsImg {
  top: 120px;
  left: 140px;
  width: 1280px;
}

#productsDmA2 .features .featuresLists05 .featuresListsTtl {
  right: 60px;
  bottom: 65px;
}

#productsDmA2 .features .featuresLists05 .featuresListsLogo {
  left: 60px;
  bottom: 125px;
  width: 188px;
}

#productsDmA2 .features .featuresLists05 .featuresListsComments {
  left: 110px;
  bottom: 65px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .features .featuresLists05 .featuresListsImg {
    top: calc(100vw * (120 / 750) * 0.7);
    left: calc(100vw * (140 / 750) * 0.4);
    width: calc(100vw * (1280 / 750) * 0.65);
  }

  #productsDmA2 .features .featuresLists05 .featuresListsTtl {
    right: 15px;
    bottom: calc(100vw * (65 / 750) * 2.2);
  }

  #productsDmA2 .features .featuresLists05 .featuresListsLogo {
    left: 15px;
    bottom: calc(100vw * (125 / 750) * 0.95);
    width: calc(100vw * (188 / 750) * 0.7);
  }

  #productsDmA2 .features .featuresLists05 .featuresListsComments {
    left: calc(100vw * (110 / 750) * 0.8);
    bottom: calc(100vw * (65 / 750) * 0.4);
    padding-right: 15px;
  }
}

/* .featuresLists06 */
#productsDmA2 .features .featuresLists06 .featuresListsInner {
  height: 745px;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_features-lists-bg02.jpg');
}

#productsDmA2 .features .featuresLists06 .featuresListsImg {
  top: 124px;
  left: 64px;
  width: 432px;
}

#productsDmA2 .features .featuresLists06 .featuresListsTtl {
  left: 60px;
  bottom: 60px;
}

#productsDmA2 .features .featuresLists06 .featuresListsArrow {
  left: auto;
  right: 60px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .features .featuresLists06 .featuresListsInner {
    height: calc(100vw * (745 / 750) * 0.75);
  }

  #productsDmA2 .features .featuresLists06 .featuresListsImg {
    top: calc(100vw * (124 / 750) * 0.6);
    left: calc(100vw * (64 / 750) * 0.44);
    width: calc(100vw * (432 / 750) * 0.65);
  }

  #productsDmA2 .features .featuresLists06 .featuresListsTtl {
    left: 15px;
    bottom: calc(100vw * (60 / 750) * 0.6);
  }

  #productsDmA2 .features .featuresLists06 .featuresListsArrow {
    right: 15px;
  }
}

/* .featuresLists07 */
#productsDmA2 .features .featuresLists07 .featuresListsInner {
  height: 745px;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_features-lists-bg02.jpg');
}

#productsDmA2 .features .featuresLists07 .featuresListsImg {
  top: 104px;
  left: 35px;
  width: 494px;
}

#productsDmA2 .features .featuresLists07 .featuresListsTtl {
  left: 60px;
  bottom: 60px;
}

#productsDmA2 .features .featuresLists07 .featuresListsArrow {
  left: auto;
  right: 60px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .features .featuresLists07 .featuresListsInner {
    height: calc(100vw * (745 / 750) * 0.75);
  }

  #productsDmA2 .features .featuresLists07 .featuresListsImg {
    top: calc(100vw * (104 / 750) * 0.6);
    left: calc(100vw * (35 / 750) * 0.22);
    width: calc(100vw * (494 / 750) * 0.65);
  }

  #productsDmA2 .features .featuresLists07 .featuresListsTtl {
    left: 15px;
    bottom: calc(100vw * (60 / 750) * 0.6);
  }

  #productsDmA2 .features .featuresLists07 .featuresListsArrow {
    right: 15px;
  }
}

/* -- .featuresComments -- */
#productsDmA2 .features .featuresComments {
  margin-top: 200px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .features .featuresComments {
    margin-top: 60px;
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
}



/**
 * Bottom
 * -------------------------------
 */

#productsDmA2 .bottom {
  padding-top: 45px;
  padding-bottom: 50px;
  border-bottom: 12px solid #000;
  background-color: #efefef;
}

#productsDmA2 .bottom .dmseries {
  margin-top: 0;
}

#productsDmA2 .bottom .dmseriesBanner > li > a {
  color: #000;
}

#productsDmA2 .bottom .dmseriesBtn {
  background-color: #000;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .bottom {
    padding-top: 35px;
    padding-bottom: 40px;
    border-bottom: 6px solid #000;
  }
}



/**
 * ================================================================================
 * Features Inner Settings
 * ================================================================================
 */

/**
 * Basic Structure
 * -------------------------------
 */

#productsDmA2 .featuresInner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  color: #000;
  font-size: 2.0rem;
  line-height: 1.9;
  transition: opacity 0.6s ease-out;
}
body.productsDmFeaturesOpen #productsDmA2 .featuresInner {
  visibility: visible;
  opacity: 1;
}

#productsDmA2 .featuresInner .featuresBody {
  min-width: 1280px;
  overflow-x: hidden;
}

#productsDmA2 .featuresInner .featuresClose {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100px;
  height: 100px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.2s ease-in;
}

#productsDmA2 .featuresInner .featuresClose:hover {
  opacity: 0.6;
}

#productsDmA2 .featuresInner .featuresClose > span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

#productsDmA2 .featuresInner .featuresClose > span::before,
#productsDmA2 .featuresInner .featuresClose > span::after {
  content: "";
  background-color: #fff;
  width: 60px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  }
#productsDmA2 .featuresInner .featuresClose > span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#productsDmA2 .featuresInner .featuresClose > span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#productsDmA2 .featuresInner .p-wrapper {
  width: 1080px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  #productsDmA2 .featuresInner .featuresBody {
    min-width: 100%;
  }
  
  #productsDmA2 .featuresInner .featuresClose {
    width: 40px;
    height: 40px;
  }

  #productsDmA2 .featuresInner .featuresClose:hover {
    opacity: 1;
  }

  #productsDmA2 .featuresInner .featuresClose > span::before,
  #productsDmA2 .featuresInner .featuresClose > span::after {
    width: 25px;
    height: 2px;
  }

  #productsDmA2 .featuresInner .p-wrapper {
    width: 100%;
  }
}


/**
 * Common
 * -------------------------------
 */

#productsDmA2 .featuresInner .features {
  position: relative;
  z-index: 1;
}

/* -- .featuresTtl -- */
#productsDmA2 .featuresInner .featuresTtl {
  position: relative;
  z-index: 1;
  text-align: center;
}

#productsDmA2 .featuresInner .featuresTtl > span {
  display: block;
}

#productsDmA2 .featuresInner .featuresTtlBg {
  position: absolute;
  top: 290px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 1205px;
}

#productsDmA2 .featuresInner .featuresTtlNum {
  text-align: center;
}

#productsDmA2 .featuresInner .featuresTtlNum img {
  width: 440px;
}

#productsDmA2 .featuresInner .featuresTtlMain {
  margin-top: 35px;
  font-size: 5.5rem;
  line-height: 1.6;
}

#productsDmA2 .featuresInner .featuresTtlMain > small {
  display: block;
  margin-top: 40px;
  font-size: 1.5rem;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .featuresTtlBg {
    top: calc(290px * 0.3);
    width: calc(1205px * 0.3);
  }

  #productsDmA2 .featuresInner .featuresTtlNum img {
    width: calc(440px * 0.3);
  }

  #productsDmA2 .featuresInner .featuresTtlMain {
    margin-top: calc(35px * 0.3);
    font-size: 2.2rem;
  }

  #productsDmA2 .featuresInner .featuresTtlMain > small {
    margin-top: calc(40px * 0.3);
    font-size: 1.1rem;
  }
}

/* -- .featuresTtl01 -- */
#productsDmA2 .featuresInner .featuresTtl01 > * {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .featuresTtl01 > * {
    font-size: 1.8rem;
  }
}

/* -- .featuresDl -- */
#productsDmA2 .featuresInner .featuresDl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#productsDmA2 .featuresInner .featuresDl.featuresDlRev {
  flex-direction: row-reverse;
}

#productsDmA2 .featuresInner .featuresDl > dt {
  display: block;
}

#productsDmA2 .featuresInner .featuresDl > dd {
  display: block;
  text-align: left;
}
#productsDmA2 .featuresInner .featuresDl.featuresDlRev > dd {
  text-align: right;
}

#productsDmA2 .featuresInner .featuresDlTtl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4;
}

#productsDmA2 .featuresInner .featuresDlTtl > small {
  display: block;
  margin-top: 5px;
  font-size: 1.8rem;
  font-weight: 600;
}

#productsDmA2 .featuresInner .featuresDlInner {
  display: inline-block;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #000;
}

#productsDmA2 .featuresInner .featuresDlInner > .p-comments {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .featuresDl {
    display: block;
  }

  #productsDmA2 .featuresInner .featuresDl > dt {
    display: block;
    margin-top: 20px;
    text-align: center !important;
  }

  #productsDmA2 .featuresInner .featuresDl > dd,
  #productsDmA2 .featuresInner .featuresDl.featuresDlRev > dd {
    text-align: center !important;
  }

  #productsDmA2 .featuresInner .featuresDlTtl {
    font-size: 1.8rem;
  }
  
  #productsDmA2 .featuresInner .featuresDlTtl > small {
    margin-top: 3px;
    font-size: 1.1rem;
  }

  #productsDmA2 .featuresInner .featuresDlInner {
    padding-top: 10px;
    margin-top: 10px;
  }

  #productsDmA2 .featuresInner .featuresDlInner > .p-comments {
    margin-top: 15px;
  }
}


/**
 * Features01
 * -------------------------------
 */

#productsDmA2 .featuresInner .features01 {
  padding-top: 90px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features01 {
    padding-top: calc(90px * 0.4);
  }
}

/* -- .features01-01 -- */
#productsDmA2 .featuresInner .features01-01 {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

#productsDmA2 .featuresInner .features01-01 > dt {
  display: block;
}

#productsDmA2 .featuresInner .features01-01 > dd {
  position: absolute;
  left: 70px;
  bottom: 100px;
  margin-top: 60px;
  line-height: 2.0;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features01-01 {
    margin-top: calc(40px * 0.3);
  }

  #productsDmA2 .featuresInner .features01-01 > dt {
    margin-left: 0;
    margin-right: 0;
  }

  #productsDmA2 .featuresInner .features01-01 > dd {
    left: 25px;
    bottom: -15px;
    margin-top: calc(60px * 0.3);
    line-height: 1.8;
  }
}

/* -- .features01-02 -- */
#productsDmA2 .featuresInner .features01-02 {
  margin-top: -50px;
  text-align: center;
}

#productsDmA2 .featuresInner .features01-02 > dt {
  display: block;
}

#productsDmA2 .featuresInner .features01-02 > dd {
  margin-top: 30px;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features01-02 {
    margin-top: 20px;
  }

  #productsDmA2 .featuresInner .features01-02 > dd {
    margin-top: calc(30px * 0.3);
  }
}


/**
 * Features02
 * -------------------------------
 */

#productsDmA2 .featuresInner .features02 {
  position: relative;
  z-index: 1;
  padding-top: 240px;
  padding-bottom: 140px;
  background-color: #000;
  color: #fff;
}

#productsDmA2 .featuresInner .features02::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 1) 100%);
  content: '';
}

#productsDmA2 .featuresInner .features02 .featuresTtl {
  margin-left: -60px;
  margin-right: -60px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features02 {
    padding-top: calc(240px * 0.3);
    padding-bottom: calc(140px * 0.3);
  }

  #productsDmA2 .featuresInner .features02::before {
    height: calc(700px * 0.3);
  }

  #productsDmA2 .featuresInner .features02 .featuresTtl {
    margin-left: 0;
    margin-right: 0;
    letter-spacing: -0.03em;
  }
}

/* -- .features02-01 -- */
#productsDmA2 .featuresInner .features02-01 {
  position: relative;
  z-index: 2;
  margin-top: 90px;
  text-align: center;
}

#productsDmA2 .featuresInner .features02-01Inner img {
  width: 714px;
}

#productsDmA2 .featuresInner .features02-01Logo {
  position: absolute;
  top: -20px;
  right: -60px;
}

#productsDmA2 .featuresInner .features02-01Logo > li {
  margin-top: 15px;
  text-align: center;
}

#productsDmA2 .featuresInner .features02-01Logo > li:nth-of-type(1) {
  margin-top: 0;
}

#productsDmA2 .featuresInner .features02-01Logo > li:nth-last-of-type(1) {
  margin-top: 45px;
}

#productsDmA2 .featuresInner .features02-01LogoInner > dt {
  display: block;
  font-size: 1.5rem;
  line-height: 1.4;
}

#productsDmA2 .featuresInner .features02-01LogoInner > dd {
  margin-top: 10px;
}

#productsDmA2 .featuresInner .features02-01Logo > li img {
  width: 200px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features02-01 {
    margin-top: calc(90px * 0.3);
  }
  
  #productsDmA2 .featuresInner .features02-01Inner img {
    display: inline-block;
    width: 70%;
    margin-left: -25%;
  }

  #productsDmA2 .featuresInner .features02-01Logo {
    top: calc(-20px * 0.4);
    right: 0;
  }

  #productsDmA2 .featuresInner .features02-01Logo > li {
    margin-top: calc(15px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-01Logo > li:nth-last-of-type(1) {
    margin-top: calc(45px * 0.45);
  }

  #productsDmA2 .featuresInner .features02-01LogoInner > dt {
    font-size: 1.0rem;
  }

  #productsDmA2 .featuresInner .features02-01LogoInner > dd {
    margin-top: calc(10px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-01Logo > li img {
    width: calc(200px * 0.4);
  }
}

/* -- .features02-02 -- */
#productsDmA2 .featuresInner .features02-02 {
  margin: 50px -60px 0 -60px;
}

#productsDmA2 .featuresInner .features02-02Inner {
  text-align: center;
}

#productsDmA2 .featuresInner .features02-02Inner > dt {
  display: block;
  margin-bottom: 60px;
}

#productsDmA2 .featuresInner .features02-02Btn > * {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

#productsDmA2 .featuresInner .features02-02Btn > *::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  content: '';
}

#productsDmA2 .featuresInner .features02-02Btn > * > span {
  display: inline-block;
  margin-left: 20px;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.4;
}

#productsDmA2 .featuresInner .features02-02Btn01 {
  margin-left: 60px;
}

#productsDmA2 .featuresInner .features02-02Btn02 {
  margin-right: 60px;
}

#productsDmA2 .featuresInner .features02-02Btn01 > *,
#productsDmA2 .featuresInner .features02-02Btn02 > * {
  width: 368px;
  padding: 15px;
  border-radius: 1000px;
  border-width: 2px;
  border-style: solid;
}

#productsDmA2 .featuresInner .features02-02Btn01 > * {
  border: 2px solid #4b4b4b;
  background-color: #fff;
  color: #000;
}

#productsDmA2 .featuresInner .features02-02Btn02 > * {
  border: 2px solid #fff;
  background-color: #4b4b4b;
  color: #fff;
}

#productsDmA2 .featuresInner .features02-02Btn01 > *::before,
#productsDmA2 .featuresInner .features02-02Btn02 > *::before {
  left: 13px;
  width: 30px;
  height: 30px;
}

#productsDmA2 .featuresInner .features02-02Btn01 > *::before {
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-play01.svg');
}

#productsDmA2 .featuresInner .features02-02Btn02 > *::before {
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-play02.svg');
}

#productsDmA2 .featuresInner .features02-02Btn03 {
  margin-top: 60px;
  text-align: center;
}

#productsDmA2 .featuresInner .features02-02Btn03 > * {
  width: 908px;
  padding: 20px;
  background-color: #fff;
}

#productsDmA2 .featuresInner .features02-02Btn03 > *::before {
  width: 44px;
  height: 44px;
  left: 14px;
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_icon-play02.svg');
}

#productsDmA2 .featuresInner .features02-02Btn03 > * > span {
  color: #000;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features02-02 {
    margin: calc(50px * 0.8) 0 0 0;
  }

  #productsDmA2 .featuresInner .features02-02Inner > dt {
    margin-bottom: calc(60px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-02Btn > * > span {
    margin-left: 0;
    font-size: 1.4rem;
  }

  #productsDmA2 .featuresInner .features02-02Btn01 {
    margin-left: 0;
    margin-right: 5px;
  }
  
  #productsDmA2 .featuresInner .features02-02Btn02 {
    margin-left: 5px;
    margin-right: 0;
  }

  #productsDmA2 .featuresInner .features02-02Btn01 > *,
  #productsDmA2 .featuresInner .features02-02Btn02 > * {
    width: 100%;
    padding: calc(15px * 0.5) calc(15px * 0.6) calc(15px * 0.5) calc(50px * 0.6);
    text-align: left;
  }

  #productsDmA2 .featuresInner .features02-02Btn01 > *::before,
  #productsDmA2 .featuresInner .features02-02Btn02 > *::before {
    left: calc(13px * 0.6);
    width: calc(30px * 0.6);
    height: calc(30px * 0.6);
  }

  #productsDmA2 .featuresInner .features02-02Btn03 {
    margin-top: calc(60px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-02Btn03 > * {
    width: 100%;
    padding: calc(20px * 0.5) calc(50px * 0.6);
  }

  #productsDmA2 .featuresInner .features02-02Btn03 > *::before {
    width: calc(44px * 0.6);
    height: calc(44px * 0.6);
    left: calc(14px * 0.6);
  }
}

/* -- .features02-03 -- */
#productsDmA2 .featuresInner .features02-03 {
  margin-top: 170px;
}

#productsDmA2 .featuresInner .features02-03 .featuresDl > dt {
  width: 44.25%;
}

#productsDmA2 .featuresInner .features02-03 .featuresDl > dd {
  width: 55.75%;
  padding-left: 80px;
}
#productsDmA2 .featuresInner .features02-03 .featuresDl.featuresDlRev > dd {
  padding-right: 80px;
  padding-left: 0;
}

#productsDmA2 .featuresInner .features02-03 .featuresDlInner {
  border-top-color: #fff;
}

#productsDmA2 .featuresInner .features02-03-01 .featuresDlInner > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
}

#productsDmA2 .featuresInner .features02-03-01 .featuresDlInner > ul > li {
  margin-left: 4px;
}

#productsDmA2 .featuresInner .features02-03-01 .featuresDlInner > ul > li img {
  width: 176px;
}

#productsDmA2 .featuresInner .features02-03-01 .featuresDlInner > ul > li > dl {
  text-align: center;
}

#productsDmA2 .featuresInner .features02-03-01 .featuresDlInner > ul > li > dl > dt {
  display: block;
  margin-bottom: 4px;
  font-size: 1.5rem;
  line-height: 1.4;
}

#productsDmA2 .featuresInner .features02-03-02 {
  margin-top: 100px;
}

#productsDmA2 .featuresInner .features02-03-02 .featuresDlTtl > small {
  display: inline-block;
}

#productsDmA2 .featuresInner .features02-03-02 .featuresDlInner > p:nth-of-type(2) {
  margin-top: 35px;
}

#productsDmA2 .featuresInner .features02-03-02 .featuresDlInner > p img {
  width: 200px;
}

#productsDmA2 .featuresInner .features02-03-02 .featuresDlInner > .p-comments {
  margin-top: 35px;
}

#productsDmA2 .featuresInner .features02-03-03 {
  margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features02-03 {
    margin-top: calc(170px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-03 .featuresDl > dt {
    width: 100%;
  }

  #productsDmA2 .featuresInner .features02-03 .featuresDl > dd {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
  #productsDmA2 .featuresInner .features02-03 .featuresDl.featuresDlRev > dd {
    padding-right: 0;
    padding-left: 0;
  }

  #productsDmA2 .featuresInner .features02-03-01 .featuresDlInner > ul {
    justify-content: center;
    margin-top: calc(40px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-03-01 .featuresDlInner > ul > li {
    margin: 0 calc(4px * 0.5);
  }

  #productsDmA2 .featuresInner .features02-03-01 .featuresDlInner > ul > li img {
    width: calc(176px * 0.5);
  }

  #productsDmA2 .featuresInner .features02-03-01 .featuresDlInner > ul > li > dl > dt {
    margin-bottom: 2px;
    font-size: 1.0rem;
  }

  #productsDmA2 .featuresInner .features02-03-02 {
    margin-top: calc(100px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-03-02 .featuresDlInner > p:nth-of-type(2) {
    margin-top: calc(35px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-03-02 .featuresDlInner > p img {
    width: calc(200px * 0.5);
  }

  #productsDmA2 .featuresInner .features02-03-02 .featuresDlInner > .p-comments {
    margin-top: calc(35px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-03-03 {
    margin-top: calc(100px * 0.3);
  }
}

/* -- .features02-04 -- */
#productsDmA2 .featuresInner .features02-04 {
  margin-top: 100px;
}

#productsDmA2 .featuresInner .features02-04 > dt {
  display: block;
}

#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(1) > h3 {
  padding-right: 60px;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4;
}

#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) {
  margin-top: 40px;
}

#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table {
  width: 100%;
}

#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table th,
#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table td {
  padding: 10px;
  border: 1px solid #fff;
  font-size: 1.6rem;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
}
#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table th:nth-of-type(1),
#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table td:nth-of-type(1) {
  border-left-color: #000;
}
#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table th:nth-last-of-type(1),
#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table td:nth-last-of-type(1) {
  border-right-color: #000;
}
#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table tr:nth-of-type(1) th {
  border-top-color: #000;
}
#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table tr:nth-last-of-type(1) td,
#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table tr:nth-of-type(2) td:nth-of-type(1) {
  border-bottom-color: #000;
}

#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table tr td:nth-last-of-type(1) {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
}

#productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) .p-comments {
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features02-04 {
    margin-top: calc(100px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(1) {
    display: block;
    margin-top: calc(50px * 0.3);
    text-align: center;
  }

  #productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(1) > h3 {
    padding-right: 0;
    margin-bottom: 5px;
    font-size: 1.8rem;
  }

  #productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) {
    margin-top: calc(40px * 0.3);
  }

  #productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table th,
  #productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) table td {
    padding: 5px;
    font-size: 1.1rem;
    line-height: 1.4;
  }

  #productsDmA2 .featuresInner .features02-04 > dd:nth-of-type(2) .p-comments {
    margin-top: calc(25px * 0.5);
  }
}


/**
 * Features03
 * -------------------------------
 */

#productsDmA2 .featuresInner .features03 {
  padding-top: 95px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features03 {
    padding-top: calc(95px * 0.3);
  }
}

/* -- .features03-01 -- */
#productsDmA2 .featuresInner .features03-01 {
  margin: 30px -20px 0 -20px;
  text-align: center;
}

#productsDmA2 .featuresInner .features03-01 > dt {
  display: block;
}

#productsDmA2 .featuresInner .features03-01 > dd {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features03-01 {
    margin: calc(30px * 0.3) 0 0 0;
  }

  #productsDmA2 .featuresInner .features03-01 > dd {
    margin-top: calc(30px * 0.3);
  }
}

/* -- .features03-02 -- */
#productsDmA2 .featuresInner .features03-02 {
  margin-top: 140px;
  text-align: center;
}

#productsDmA2 .featuresInner .features03-02 > dt {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

#productsDmA2 .featuresInner .features03-02 > dd {
  margin-bottom: 15px;
}

#productsDmA2 .featuresInner .features03-02 > dd > h3 {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #000;
  font-size: 2.0rem;
  line-height: 1;
}

@media only screen and (min-width: 768px) and (max-width: 1279px) {
  #productsDmA2 .featuresInner .features03-02 > dt {
    width: 1280px;
  }
}
@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features03-02 {
    margin-top: calc(140px * 0.3);
  }

  #productsDmA2 .featuresInner .features03-02 > dd {
    margin-bottom: calc(15px * 0.5);
  }

  #productsDmA2 .featuresInner .features03-02 > dd > h3 {
    padding: calc(5px * 0.5) calc(10px * 0.5);
    font-size: 1.3rem;
  }
}


/**
 * Features04
 * -------------------------------
 */

#productsDmA2 .featuresInner .features04 {
  padding-top: 140px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features04 {
    padding-top: calc(140px * 0.3);
  }
}

/* -- .features04-01 -- */
#productsDmA2 .featuresInner .features04-01 {
  margin: 120px -105px 0 -105px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features04-01 {
    margin: calc(120px * 0.3) -15px 0 -15px;
  }
}

/* -- .features04-02 -- */
#productsDmA2 .featuresInner .features04-02 {
  margin-top: 70px; 
}

#productsDmA2 .featuresInner .features04-02 .featuresDl {
  margin-top: 85px;
}
#productsDmA2 .featuresInner .features04-02 .featuresDl:nth-of-type(1) {
  margin-top: 0;
}

#productsDmA2 .featuresInner .features04-02 .featuresDl > dt {
  width: 44.25%;
}

#productsDmA2 .featuresInner .features04-02 .featuresDl > dd {
  width: 55.75%;
  padding-left: 110px;
}
#productsDmA2 .featuresInner .features04-02 .featuresDl.featuresDlRev > dd {
  padding-right: 110px;
  padding-left: 0;
}

#productsDmA2 .featuresInner .features04-02 .features04-02-02 > dd > p {
  margin-top: 20px;
  margin-right: -80px;
}

#productsDmA2 .featuresInner .features04-02 .features04-02-02 > dd img {
  width: 462px;
}

#productsDmA2 .featuresInner .features04-02 .features04-02-04 > dt > span {
  display: block;
  margin-top: 10px;
  text-align: center;
}

#productsDmA2 .featuresInner .features04-02 .features04-02-04 > dd > .featuresDlInner > .p-comments {
  font-size: 1.6rem;
  line-height: 1.4;
}

#productsDmA2 .featuresInner .features04-02 .features04-02-04 dl .featuresTtl01 {
  display: inline-block;
  position: relative;
  padding: 15px 30px;
  margin-top: 20px;
  background: linear-gradient(90deg,rgba(25, 100, 255, 1) 0%, rgba(0, 0, 130, 1) 100%);
}

#productsDmA2 .featuresInner .features04-02 .features04-02-04 dl .featuresTtl01::before {
  position: absolute;
  width: 30px;
  content: '';
}

#productsDmA2 .featuresInner .features04-02 .features04-02-04 dl .featuresTtl01::before {
  top: 0;
  left: -30px;
  height: 100%;
  background: linear-gradient(to top right, rgba(255,255,255,0) 50%, #1964ff 50.5%) no-repeat bottom left/100% 50.5%, linear-gradient(to bottom right, rgba(255,255,255,0) 50%, #1964ff 50.5%) no-repeat top right/100% 50.5%;
}

#productsDmA2 .featuresInner .features04-02 .features04-02-04 dl .featuresTtl01 > span {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
}

#productsDmA2 .featuresInner .features04-02 .features04-02-04 dl > dd {
  margin-top: 5px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features04-02 {
    margin-top: calc(70px * 0.3); 
  }

  #productsDmA2 .featuresInner .features04-02 .featuresDl {
    margin-top: calc(85px * 0.3); 
  }

  #productsDmA2 .featuresInner .features04-02 .featuresDl > dt {
    width: 100%;
  }

  #productsDmA2 .featuresInner .features04-02 .featuresDl > dd {
    width: 100%;
    padding-left: 0;
  }
  #productsDmA2 .featuresInner .features04-02 .featuresDl.featuresDlRev > dd {
    padding-right: 0;
  }

  #productsDmA2 .featuresInner .features04-02 .features04-02-02 > dd > p {
    margin-top: calc(20px * 0.3); 
    margin-right: 0;
  }

  #productsDmA2 .featuresInner .features04-02 .features04-02-02 > dd img {
    width: 80%;
  }

  #productsDmA2 .featuresInner .features04-02 .features04-02-04 > dt > span {
    margin-top: calc(10px * 0.3); 
  }

  #productsDmA2 .featuresInner .features04-02 .features04-02-04 > dd > .featuresDlInner > .p-comments {
    font-size: 1.1rem;
  }
  
  #productsDmA2 .featuresInner .features04-02 .features04-02-04 dl {
    margin-top: 15px;
  }

  #productsDmA2 .featuresInner .features04-02 .features04-02-04 dl .featuresTtl01 {
    padding: calc(15px * 0.3) calc(30px * 0.3); 
    margin-top: calc(20px * 0.3); 
  }

  #productsDmA2 .featuresInner .features04-02 .features04-02-04 dl .featuresTtl01::before,
  #productsDmA2 .featuresInner .features04-02 .features04-02-04 dl .featuresTtl01::after {
    display: none;
  }

  #productsDmA2 .featuresInner .features04-02 .features04-02-04 dl .featuresTtl01 > span {
    font-size: 1.4rem;
  }

  #productsDmA2 .featuresInner .features04-02 .features04-02-04 dl > dd {
    margin-top: calc(5px * 0.3); 
  }
}

/* -- .features04-03 -- */
#productsDmA2 .featuresInner .features04-03 {
  margin-top: 110px;
  text-align: center;
}

#productsDmA2 .featuresInner .features04-03 .p-btns {
  margin-top: 60px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features04-03 {
    margin-top: calc(110px * 0.3);
  }

  #productsDmA2 .featuresInner .features04-03 .p-btns {
    margin-top: calc(60px * 0.3);
  }
}


/**
 * Features05
 * -------------------------------
 */

#productsDmA2 .featuresInner .features05 {
  padding-top: 140px;
}

#productsDmA2 .featuresInner .features05Inner {
  margin-top: 120px;
  padding-top: 95px;
  padding-bottom: 95px;
  background-color: #f0f0f0;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features05 {
    padding-top: calc(140px * 0.3);
  }

  #productsDmA2 .featuresInner .features05Inner {
    margin-top: calc(120px * 0.4);
    padding-top: calc(95px * 0.3);
    padding-bottom: calc(95px * 0.3);
  }
}

/* -- .features05-01 -- */
#productsDmA2 .featuresInner .features05-01 {
  margin: 75px -120px 0 -120px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features05-01 {
    margin: calc(75px * 0.1) -20px 0 -20px;
  }
}

/* -- .features05-02 -- */
#productsDmA2 .featuresInner .features05-02-01 {
  margin: 120px -60px 0 -200px;
}

#productsDmA2 .featuresInner .features05-02-01 > dt {
  width: 860px;
}

#productsDmA2 .featuresInner .features05-02-01.featuresDlRev > dd {
  flex: 1;
  padding-left: 60px;
  text-align: left;
}

#productsDmA2 .featuresInner .features05-02-01 > dd > .featuresDlInner > p:nth-of-type(2) {
  margin-top: 50px;
}

#productsDmA2 .featuresInner .features05-02-01 > dd > .featuresDlInner > p:nth-of-type(2) img {
  width: 226px;
}

#productsDmA2 .featuresInner .features05-02-02 {
  justify-content: center;
  margin-top: 100px;
}

#productsDmA2 .featuresInner .features05-02-02 > dt,
#productsDmA2 .featuresInner .features05-02-02 > dd {
  text-align: center;
}

#productsDmA2 .featuresInner .features05-02-02 > dt {
  margin-top: 40px;
}

#productsDmA2 .featuresInner .features05-02-03 {
  margin: 60px -60px 0 -60px;
}

#productsDmA2 .featuresInner .features05-02-03 > dt {
  width: 600px;
}

#productsDmA2 .featuresInner .features05-02-03.featuresDlRev > dd {
  flex: 1;
  padding-left: 110px;
  text-align: left;
}

#productsDmA2 .featuresInner .features05-02-04 {
  margin: 110px -120px 0 -60px;
}

#productsDmA2 .featuresInner .features05-02-04 > dt {
  width: 830px;
}

#productsDmA2 .featuresInner .features05-02-04 > dd {
  flex: 1;
}

#productsDmA2 .featuresInner .features05-03 {
  margin-left: -60px;
  margin-right: -60px;
  text-align: center;
}

#productsDmA2 .featuresInner .features05-03 .featuresTxt02 {
  margin-top: 20px;
}

#productsDmA2 .featuresInner .features05-03Slider {
  margin: 50px 60px 0 60px;
}

#productsDmA2 .featuresInner .features05-03Slider .slick-dots {
  bottom: 95px;
}

#productsDmA2 .featuresInner .features05-03SliderInner > dt {
  display: block;
}

#productsDmA2 .featuresInner .features05-03SliderInner > dd {
  margin-top: 120px;
}

#productsDmA2 .featuresInner .features05-03SliderInner > dd > p {
  display: inline-flex;
  align-items: center;
  padding: 10px 50px;
  border: 2px solid #000;
}

#productsDmA2 .featuresInner .features05-03SliderInner > dd > p > span {
  display: inline-block;
  font-weight: 500;
  line-height: 1.3;
}

#productsDmA2 .featuresInner .features05-03SliderInner > dd > p > span:nth-of-type(1) {
  font-size: 3.0rem;
}

#productsDmA2 .featuresInner .features05-03SliderInner > dd > p > span:nth-of-type(2) {
  margin-left: 20px;
  font-size: 1.5rem;
}

#productsDmA2 .featuresInner .features05-04 {
  margin-top: 100px;
  text-align: center;
}

#productsDmA2 .featuresInner .features05-04Slider {
  margin-top: 40px;
  margin-bottom: 40px;
}

#productsDmA2 .featuresInner .features05-04Slider .slick-dots {
  bottom: auto;
  left: auto;
  top: -90px;
  right: 150px;
  transform: translateX(0);
  width: 96px;
  height: 56px;
  border-radius: 1000px;
  background-color: #4f5050;
}

#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li {
  width: 42px;
  height: 42px;
  margin: 0;
}

#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li > button {
  width: 100%;
  height: 100%;
}

#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li > button:before,
#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li > button:after {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  content: '';
  transition: opacity 0.2s ease-in;
}

#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li > button:before {
  opacity: 1;
  visibility: visible;
}
#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li.slick-active > button:before {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li > button:after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
}
#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li.slick-active > button:after {
  opacity: 1;
  visibility: visible;
}

#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li:nth-of-type(1) > button:before {
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_features05-04-icon01-off.svg');
}
#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li:nth-of-type(1) > button:after {
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_features05-04-icon01-on.svg');
}

#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li:nth-of-type(2) > button:before {
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_features05-04-icon02-off.svg');
}
#productsDmA2 .featuresInner .features05-04Slider .slick-dots > li:nth-of-type(2) > button:after {
  background-image: url('/files/cdb/ZZ/products/d-mirror/a2/2603/zz_products_d-mirror_a2_features05-04-icon02-on.svg');
}

#productsDmA2 .featuresInner .features05-04 .p-comments {
  margin-top: 30px;
}

#productsDmA2 .featuresInner .features05-05 {
  margin-top: 90px;
  text-align: center;
}

#productsDmA2 .featuresInner .features05-05 > p {
  margin-top: 20px;
}

#productsDmA2 .featuresInner .features05-05Dl > dt {
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

#productsDmA2 .featuresInner .features05-05Dl > dt > span {
  display: inline-block;
  position: relative;
  min-width: 540px;
  padding: 6px;
  background-color: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

#productsDmA2 .featuresInner .features05-05Dl > dt > span::before,
#productsDmA2 .featuresInner .features05-05Dl > dt > span::after {
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
  content: '';
}

#productsDmA2 .featuresInner .features05-05Dl > dt > span::before {
  left: -19.9px;
  background: linear-gradient(to top right, rgba(255,255,255,0) 50%, #000 50.5%) no-repeat bottom left/100% 50.5%, linear-gradient(to bottom right, rgba(255,255,255,0) 50%, #000 50.5%) no-repeat top right/100% 50.5%;
}

#productsDmA2 .featuresInner .features05-05Dl > dt > span::after {
  right: -19.9px;
  background: linear-gradient(to bottom left, rgba(255,255,255,0) 50%, #000 50.5%) no-repeat top left/100% 50.5%, linear-gradient(to top left, rgba(255,255,255,0) 50%, #000 50.5%) no-repeat bottom right/100% 50.5%;
}

#productsDmA2 .featuresInner .features05-05-01 {
  margin-top: 40px;
}

#productsDmA2 .featuresInner .features05-05-02 {
  margin-top: 50px;
}

#productsDmA2 .featuresInner .features05-05-02 .p-cols {
  margin-left: -65px;
}

#productsDmA2 .featuresInner .features05-05-02 .p-col {
  padding-left: 65px;
}

#productsDmA2 .featuresInner .features05-05-02 .p-col > div {
  border: 1px solid #d8dee4;
}

#productsDmA2 .featuresInner .features05-05-02 .p-comments {
  margin-top: 20px;
  font-size: 1.5rem;
  text-align: left;
}

#productsDmA2 .featuresInner .features05-05-03 {
  margin-top: 70px;
}

#productsDmA2 .featuresInner .features05-05-03Slider {
  margin-left: 75px;
  margin-right: 75px;
  padding-bottom: 110px;
}

#productsDmA2 .featuresInner .features05-05-03Slider .slick-dots {
  width: 328px;
  height: 52px;
  bottom: -80px;
  margin-left: 90px;
  border-radius: 11px;
  background-color: #2d2d2d;
}

#productsDmA2 .featuresInner .features05-05-03Slider .slick-dots::before {
  position: absolute;
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  content: 'リアスモーク設定';
}

#productsDmA2 .featuresInner .features05-05-03Slider .slick-dots > li {
  width: 90px;
  height: 40px;
}

#productsDmA2 .featuresInner .features05-05-03Slider .slick-dots > li > button {
  width: 100%;
  height: 100%;
  text-indent: 0;
}

#productsDmA2 .featuresInner .features05-05-03Slider .slick-dots > li > button::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: transparent;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  transition: all 0.2s ease-in;
}
#productsDmA2 .featuresInner .features05-05-03Slider .slick-dots > li:nth-of-type(1) > button::before {
  content: '無し';
}
#productsDmA2 .featuresInner .features05-05-03Slider .slick-dots > li:nth-of-type(2) > button::before {
  content: '薄い';
}
#productsDmA2 .featuresInner .features05-05-03Slider .slick-dots > li:nth-of-type(3) > button::before {
  content: '濃い';
}
#productsDmA2 .featuresInner .features05-05-03Slider .slick-dots > li.slick-active > button::before {
  background-color: #ff7000;
}

#productsDmA2 .featuresInner .features05-05-03Slider .slick-slide > div {
  border: 1px solid #d8dee4;
  overflow: hidden;
}

#productsDmA2 .featuresInner .features05-05-03 .p-comments {
  font-size: 1.3rem;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features05-02-01 {
    margin: calc(120px * 0.3) 0 0 0;
  }

  #productsDmA2 .featuresInner .features05-02-01 > dt {
    width: 100%;
  }

  #productsDmA2 .featuresInner .features05-02-01.featuresDlRev > dd {
    padding-left: 0;
  }

  #productsDmA2 .featuresInner .features05-02-01 > dd > .featuresDlInner > p:nth-of-type(2) {
    margin-top: calc(50px * 0.3);
  }

  #productsDmA2 .featuresInner .features05-02-01 > dd > .featuresDlInner > p:nth-of-type(2) img {
    width: calc(226px * 0.4);
  }

  #productsDmA2 .featuresInner .features05-02-02 {
    margin-top: calc(100px * 0.3);
  }

  #productsDmA2 .featuresInner .features05-02-02 > dt {
    margin-top: calc(40px * 0.3);
  }

  #productsDmA2 .featuresInner .features05-02-03 {
    margin: calc(60px * 0.3) 0 0 0;
  }

  #productsDmA2 .featuresInner .features05-02-03 > dt {
    width: 100%;
  }
  
  #productsDmA2 .featuresInner .features05-02-03 > dt img {
    width: 80%;
  }

  #productsDmA2 .featuresInner .features05-02-03.featuresDlRev > dd {
    padding-left: 0;
  }

  #productsDmA2 .featuresInner .features05-02-04 {
    margin: calc(110px * 0.4) 0 0 0;
  }

  #productsDmA2 .featuresInner .features05-02-04 > dt {
    width: 100%;
  }

  #productsDmA2 .featuresInner .features05-03 {
    margin-left: 0;
    margin-right: 0;
  }

  #productsDmA2 .featuresInner .features05-03 .featuresTxt02 {
    margin-top: calc(20px * 0.3);
  }

  #productsDmA2 .featuresInner .features05-03Slider {
    margin: calc(50px * 0.3) 20px 0 20px;
  }
  
  #productsDmA2 .featuresInner .features05-03Slider .slick-dots {
    bottom: calc(95px * 0.95);
  }

  #productsDmA2 .featuresInner .features05-03SliderInner > dd {
    margin-top: calc(120px * 0.4);
  }

  #productsDmA2 .featuresInner .features05-03SliderInner > dd > p {
    display: inline-block;
    padding: calc(10px * 0.5)  calc(50px * 0.3);
    border-width: 1.5px;
    text-align: center;
  }

  #productsDmA2 .featuresInner .features05-03SliderInner > dd > p > span {
    display: block;
  }

  #productsDmA2 .featuresInner .features05-03SliderInner > dd > p > span:nth-of-type(1) {
    font-size: 1.4rem;
  }

  #productsDmA2 .featuresInner .features05-03SliderInner > dd > p > span:nth-of-type(2) {
    margin-left: 0;
    margin-top: 5px;
    font-size: 1.1rem;
  }

  #productsDmA2 .featuresInner .features05-04 {
    margin-top: calc(100px * 0.3);
  }

  #productsDmA2 .featuresInner .features05-04Slider {
    margin-top: calc(40px * 0.6);
    margin-bottom: calc(40px * 0.6);
  }

  #productsDmA2 .featuresInner .features05-04Slider .slick-dots {
    top: calc(-90px * 0.55);
    right: 0;
    width: calc(96px * 0.6);
    height: calc(56px * 0.6);
  }

  #productsDmA2 .featuresInner .features05-04Slider .slick-dots > li {
    width: calc(42px * 0.6);
    height: calc(42px * 0.6);
  }
  
  #productsDmA2 .featuresInner .features05-04 .p-comments {
    margin-top: calc(30px * 0.3);
  }

  #productsDmA2 .featuresInner .features05-05 {
    margin-top: calc(90px * 0.4);
  }

  #productsDmA2 .featuresInner .features05-05 > p {
    margin-top: calc(20px * 0.3);
  }

  #productsDmA2 .featuresInner .features05-05Dl > dt {
    margin-bottom: calc(30px * 0.4);
  }

  #productsDmA2 .featuresInner .features05-05Dl > dt > span {
    min-width: calc(100% - 20px);
    padding: calc(6px * 0.6);
    font-size: 1.3rem;
  }

  #productsDmA2 .featuresInner .features05-05Dl > dt > span::before,
  #productsDmA2 .featuresInner .features05-05Dl > dt > span::after {
    width: 10px;
  }

  #productsDmA2 .featuresInner .features05-05Dl > dt > span::before {
    left: -9.9px;
  }

  #productsDmA2 .featuresInner .features05-05Dl > dt > span::after {
    right: -9.9px;
  }

  #productsDmA2 .featuresInner .features05-05-01 {
    margin-top: calc(40px * 0.4);
  }

  #productsDmA2 .featuresInner .features05-05-02 {
    margin-top: calc(50px * 0.4);
  }

  #productsDmA2 .featuresInner .features05-05-02 .p-cols {
    margin-left: 0;
    margin-top: -15px;
  }

  #productsDmA2 .featuresInner .features05-05-02 .p-col {
    padding-left: 0;
    margin-top: 15px;
  }

  #productsDmA2 .featuresInner .features05-05-02 .p-comments {
    margin-top: calc(20px * 0.3);
    font-size: 1.1rem;
  }

  #productsDmA2 .featuresInner .features05-05-03 {
    margin-top: calc(70px * 0.4);
  }

  #productsDmA2 .featuresInner .features05-05-03Slider {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: calc(110px * 0.6);
  }

  #productsDmA2 .featuresInner .features05-05-03Slider .slick-dots {
    width: calc(328px * 0.6);
    height: calc(52px * 0.6);
    bottom: calc(-80px * 0.6);
    margin-left: calc(90px * 0.65);
    border-radius: calc(11px * 0.6);
  }

  #productsDmA2 .featuresInner .features05-05-03Slider .slick-dots::before {
    left: calc(-180px * 0.65);
    font-size: 1.3rem;
  }

  #productsDmA2 .featuresInner .features05-05-03Slider .slick-dots > li {
    width: calc(90px * 0.6);
    height: calc(40px * 0.6);
  }

  #productsDmA2 .featuresInner .features05-05-03Slider .slick-dots > li > button::before {
    border-radius: calc(8px * 0.6);
    font-size: 1.3rem;
  }
  
  #productsDmA2 .featuresInner .features05-05-03Slider .slick-slide img {
    width: 160%;
    max-width: 160%;
    margin-left: -30%;
  }


  #productsDmA2 .featuresInner .features05-05-03 .p-comments {
    font-size: 1.1rem;
    text-align: left;
  }
}


/**
 * Features06
 * -------------------------------
 */

#productsDmA2 .featuresInner .features06 {
  position: relative;
  z-index: 1;
  padding-top: 145px;
}

#productsDmA2 .featuresInner .features06 .featuresTtlMain > span {
  font-size: 60%;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features06 {
    padding-top: calc(245px * 0.3);
  }

  #productsDmA2 .featuresInner .features06 .featuresTtlMain > span {
    font-size: 50%;
  }
}

/* -- .features06-01 -- */
#productsDmA2 .featuresInner .features06-01 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  margin-top: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1279px) {
  #productsDmA2 .featuresInner .features06-01 {
    width: 1280px;
  }
}
@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features06-01 {
    margin-top: calc(60px * 0.3);
  }
}

/* -- .features06-02 -- */
#productsDmA2 .featuresInner .features06-02 {
  display: flex;
  margin: 80px -70px 0 -95px;
}

#productsDmA2 .featuresInner .features06-02 > dt {
  display: block;
  width: 555px;
}

#productsDmA2 .featuresInner .features06-02 > dt > span {
  display: block;
  margin-top: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

#productsDmA2 .featuresInner .features06-02 > dd {
  flex: 1;
  padding-left: 35px;
}

#productsDmA2 .featuresInner .features06-02 > dd .p-cols {
  margin-left: -35px;
}

#productsDmA2 .featuresInner .features06-02 > dd .p-col {
  padding-left: 35px;
}

#productsDmA2 .featuresInner .features06-02Slider img {
  border: 1px solid #043cb4;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features06-02 {
    display: block;
    margin: calc(80px * 0.3) 0 0 0;
  }

  #productsDmA2 .featuresInner .features06-02 > dt {
    width: 100%;
  }

  #productsDmA2 .featuresInner .features06-02 > dt > span {
    margin-top: calc(15px * 0.3);
    font-size: 1.2rem;
  }

  #productsDmA2 .featuresInner .features06-02 > dd {
    padding-left: 0;
  }

  #productsDmA2 .featuresInner .features06-02 > dd .p-cols {
    margin-left: 0;
  }

  #productsDmA2 .featuresInner .features06-02 > dd .p-col {
    padding-left: 0;
    margin-top: 15px;
  }
}


/**
 * Features07
 * -------------------------------
 */

#productsDmA2 .featuresInner .features07 {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 200px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features07 {
    padding-top: calc(140px * 0.3);
    padding-bottom: calc(200px * 0.3);
  }
}

/* -- .features07-01 -- */
#productsDmA2 .featuresInner .features07-01 {
  margin: 165px -60px 0 -60px;
}

#productsDmA2 .featuresInner .features07-01 > p {
  margin-top: -5px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features07-01 {
    margin: calc(165px * 0.3) -10px 0 -10px;
  }
  
  #productsDmA2 .featuresInner .features07-01 > p {
    margin-top: calc(-5px * 0.3);
  }
}

/* -- .features07-02 -- */
#productsDmA2 .featuresInner .features07-02 {
  margin: 90px -65px 0 -65px;
}

#productsDmA2 .featuresInner .features07-02 .featuresTtl01 {
  margin-bottom: 45px;
}

#productsDmA2 .featuresInner .features07-02 p:nth-of-type(2) {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 .featuresInner .features07-02 {
    margin: calc(90px * 0.3) -10px 0 -10px;
  }
  
  #productsDmA2 .featuresInner .features07-02 .featuresTtl01 {
    margin-bottom: calc(45px * 0.3);
  }
  
  #productsDmA2 .featuresInner .features07-02 p:nth-of-type(2) {
    margin-top: calc(40px * 0.3);
  }
}


/**
 * Floating
 * -------------------------------
 */

#productsDmA2 #m-floating > ul { margin-top: -10px; }

#productsDmA2 #m-floating > ul > li {
  display: block;
  margin-top: 10px;
}

/* -- .dm-m-floatingYoutube -- */
#productsDmA2 .dm-m-floatingYoutube {
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2210/zz_products_d-mirror_a2_floating-youtube-bg.svg");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100% auto;
}

#productsDmA2 .dm-m-floatingYoutube > a {
  display: block;
  height: 150px;
  position: relative;
}

#productsDmA2 .dm-m-floatingYoutube > a > span {
  padding: 0 10px;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 75px;
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) > strong {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) > strong > span {
  display: inline-block;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) > strong > .c-ffRobotoCond {
  color: #ed0038;
  font-size: 24px;
  font-weight: 700;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) > strong > span:nth-of-type(2) {
  font-size: 14px;
  font-weight: 700;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) > strong > span:nth-of-type(3) {
  font-size: 18px;
  font-weight: 900;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(2) {
  display: none;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(3) {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  height: 75px;
  padding-right: 45px;
  text-align: left;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(3) > span {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(3) > span:after {
  content: "";
  background-image: url("/files/cdb/ZZ/products/d-mirror/a2/2210/zz_products_d-mirror_a2_floating-icon_arrow01.svg");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100% auto;
  display: inline-block;
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -3px;
  right: 7px;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(3) > span > span {
  display: inline;
  font-size: 10px;
  font-weight: 700;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(4) {
  width: 47px;
  height: 66px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 5px;
  bottom: 2px;
}

#productsDmA2 .da-m-floatingWebinar > a > span > span:nth-of-type(4):before,
#productsDmA2 .da-m-floatingWebinar > a > span > span:nth-of-type(4):after {
  display: none;
}

#productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(4) img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  #productsDmA2 #m-floating > ul {
    display: flex;
    align-items: stretch;
    margin-top: 0;
  }

  #productsDmA2 #m-floating > ul > li {
    display: inline-block;
    width: 100%;
    margin-top: 0;
    border-left: 1px solid #000;
  }

  #productsDmA2 #m-floating > ul > li:nth-of-type(1) {
    border-left: none;
  }

  #productsDmA2 #m-floating > ul > li > a {
    height: 100px;
  }

  /* -- .dm-m-floatingYoutube -- */
  #productsDmA2 .dm-m-floatingYoutube {
    background-image: none;
    background-color: #ed0038;
  }

  #productsDmA2 .dm-m-floatingYoutube > a {
    height: auto;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span {
    padding: 0;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) {
    background-color: #1a1a1a;
    height: 50px;
    padding: 8px 5px;
    color: #fff;
    font-size: 11px;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) > strong {
    margin-top: 3px;
    font-size: 13px;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) > strong > .c-ffRobotoCond {
    font-size: 20px;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) > strong > span:nth-of-type(2) {
    font-size: 10px;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(1) > strong > span:nth-of-type(3) {
    font-size: 15px;
    font-weight: 900;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(3) {
    display: flex;
    justify-content: center;
    height: 50px;
    padding: 8px 30px 8px 5px;
    text-align: center;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(3) > span {
    font-size: 14px;
    line-height: 1.3;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(3) > span:after {
    width: calc(20px * 0.8);
    height: calc(20px * 0.8);
    position: relative;
    top: 3px;
    right: -5px;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(3) > span > span {
    display: inline;
    font-size: 11px;
    font-weight: 700;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(4) {
    width: calc(47px * 0.6);
    height: calc(66px * 0.6);
    right: 3px;
    bottom: 0;
  }

  #productsDmA2 .dm-m-floatingYoutube > a > span > span:nth-of-type(4) img {
    width: auto;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}



/**
 * ================================================================================
 * Colorbox Settings
 * ================================================================================
 */

#cboxContent {
  padding: 0 !important;
}

#cboxClose {
  top: 0 !important;
  right: 0 !important;
}

#cboxContent .p-modal {
  display: block;
}



/**
 * ================================================================================
 * Other Settings
 * ================================================================================
 */

/* -- Display -- */
.dm-a2-c-disBlock { display: block !important; }
.dm-a2-c-disInlineblock { display: inline-block !important; }
.dm-a2-c-disInline { display: inline !important; }
.dm-a2-c-disFlex { display: flex !important; }
.dm-a2-c-disInlineFlex { display: inline-flex !important; }
.dm-a2-c-disNone { display: none !important; }

/* -- Font Family -- */
.c-ffNotosans {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'verdana', sans-serif !important;
}

.c-ffNotoserif {
  font-family: 'Noto Serif JP', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif !important;
}

/* -- Color -- */
.c-fcLblue {
  color: #00afff !important;
}
.c-fcYellow {
  color: #e2c200 !important;
}

