@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Mixin
---------------------------------------------------------- */
/* Animation
---------------------------------------------------------- */
.a-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.a-fadeIn.-start {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes arrowAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes arrowAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes arrowAnime2 {
  0% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(10px);
            transform: scaleX(var(--arrow-scale)) translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(-10px);
            transform: scaleX(var(--arrow-scale)) translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
}
@keyframes arrowAnime2 {
  0% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(10px);
            transform: scaleX(var(--arrow-scale)) translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(-10px);
            transform: scaleX(var(--arrow-scale)) translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
}
/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-main: #111987;
  --color-sub: #D1D3ED;
  --color-sub2: #767BB9;
  --color-sub3: #EFF5EA;
  --color-sub4: #E4EDF9;
  --color-sub5: #BFDBFF;
  --color-line: #D9D9D9;
  --color-font: #272727;
  --color-fontsub: #989898;
  --color-link: #111987;
  --color-red: #EB3939;
  --color-switching:#20BA87;
  --color-noise:#997BC4;
  --label-color-new: #0066C6;
  --label-color-new2: #C6E4FF;
  --label-color-recommend: #4EBCE4;
  --label-color-recommend2: #C4F2FF;
  --label-color-deprecated: #FFA550;
  --label-color-deprecated2: #FFD7B2;
  --label-color-discontinued: #EB3939;
  --label-color-discontinued2: #FFD7C2;
  --label-color-massProduced: #6FC56F;
  --label-color-massProduced2: #D5FDBE;
  --label-color-endOfLife: #989898;
  --label-color-endOfLife2: #D9D9D9;
  /* font
  ---------------------------------------------------------- */
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Figtree", sans-serif;
  --font-no: "Roboto", sans-serif;
  --font-l: 300;
  --font-r: 400;
  --font-m: 500;
  --font-b: 700;
  --font-bl: 900;
  --lhS: 1.2;
  --lhM: 1.5;
  --lhL: 1.8;
  --lhLL: 2.3;
  /* width
  ---------------------------------------------------------- */
  --maxWidth: 1240px;
  --maxWidth2: 1040px;
  --sidePadding: 20px;
  --marginTop: 20px;
  --header: 50px;
  --arrow-scale: 1;
}
@media screen and (min-width: 768px) {
  :root {
    --sidePadding: 40px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --sidePadding: 80px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --marginTop: 40px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --header: 90px;
  }
}

:root {
  --seriesHeight: 0px;
}

.c-kikaku {
  display: inline-grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  background: #EFEFEF;
  padding: 3px 5px 1px;
  border-radius: 9999px;
  color: var(--color-main);
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-kikaku {
    font-size: 13px;
    font-size: 0.8125rem;
    gap: 3px;
  }
}
.c-kikaku .c-icon-svg {
  width: 12px;
  height: 12px;
  margin-bottom: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-kikaku .c-icon-svg {
    width: 15px;
    height: 15px;
  }
}
.c-kikaku span {
  word-break: keep-all;
}

.c-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 3px;
}
.c-label span {
  display: inline-block;
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
}
.c-label span.-new {
  background: var(--label-color-new);
}
.c-label span.-recommended {
  background: var(--label-color-recommend);
}
.c-label span.-deprecated {
  background: var(--label-color-deprecated);
}
.c-label span.-discontinued {
  background: var(--label-color-discontinued);
}
.c-label span.-massProduced {
  background: var(--label-color-massProduced);
}
.c-label span.-endOfLife {
  background: var(--label-color-endOfLife);
}
.c-label__outer {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-product .p-product__pageTtl-level2 .l-pageTtl-level2__inner {
  padding-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .p-product .p-product__pageTtl-level2 .l-pageTtl-level2__inner {
    display: grid;
    grid-template-columns: auto auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 60px;
  }
}
.p-product .p-product__pageTtl-level2 .c-linkList-1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 20px;
  gap: 5px 20px;
}
@media screen and (min-width: 960px) {
  .p-product .p-product__pageTtl-level2 .c-linkList-1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.p-product__logoLink a .c-icon-svg {
  margin-bottom: 0;
}
.p-product__logoLink a span {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-product__logoLink a span img {
  max-height: 25px;
}
.p-product__logoLink > p {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: var(--font-m);
  color: #616161;
  margin-top: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-product__logoLink > p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-product__notice {
  position: relative;
}
.p-product__notice__modal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100vw - var(--sidePadding) * 2);
  max-width: 600px;
  background: var(--color-sub4);
  border: 1px solid var(--color-main);
  padding: 20px 15px 20px 10px;
  color: var(--color-main);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 960px) {
  .p-product__notice__modal {
    padding: 30px 30px 30px 25px;
    left: auto;
    right: -30px;
  }
}
.p-product__notice__modal .-closeBtn {
  display: block;
  width: 15px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 5px;
  right: 5px;
}
@media screen and (min-width: 960px) {
  .p-product__notice__modal .-closeBtn {
    top: 10px;
    right: 10px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__notice__modal .-closeBtn {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .p-product__notice__modal .-closeBtn:hover {
    opacity: 0.7;
  }
}
.p-product__notice__modal .-closeBtn::before, .p-product__notice__modal .-closeBtn::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  border-radius: 9999px;
  background: var(--color-main);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.p-product__notice__modal .-closeBtn::after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.p-product__notice__modal .-alert {
  width: 17px;
  aspect-ratio: 1/1;
}
.p-product__notice__modal .-txt > * {
  display: block;
}
.p-product__notice__modal .-txt a {
  text-decoration: underline;
  font-weight: var(--font-m);
}
@media screen and (min-width: 960px) {
  .p-product__notice__modal .-txt a:hover {
    text-decoration: none;
  }
}
.p-product__notice__modal .-txt > * + * {
  margin-top: 5px;
}
@media screen and (min-width: 960px) {
  .p-product__plusBnr {
    text-align: right;
  }
}
.p-product__plusBnr a {
  display: inline-grid;
  grid-template-columns: auto auto 1fr;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  width: auto;
  margin: 20px auto 0;
  gap: 5px;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
}
@media screen and (min-width: 960px) {
  .p-product__plusBnr a {
    margin-top: 0;
    padding: 10px 20px;
    gap: 10px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__plusBnr a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .p-product__plusBnr a:hover {
    opacity: 0.7;
  }
}
.p-product__plusBnr a figure {
  width: 90px;
}
@media screen and (min-width: 960px) {
  .p-product__plusBnr a figure {
    width: auto;
  }
}
.p-product__plusBnr a .-txt {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: var(--font-m);
  text-align: left;
}
@media screen and (min-width: 960px) {
  .p-product__plusBnr a .-txt {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-product__plusBnr a .c-icon-svg {
  width: 14px;
  height: 14px;
  margin-left: 5px;
  margin-top: 2px;
  margin: 0 0 0 auto;
}
.p-product__tab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
.p-product__tab__item {
  background: #F2F2F2;
  border-top: 1px solid #F2F2F2;
}
.p-product__tab__item + .p-product__tab__item {
  border-left: 1px solid var(--color-line);
}
.p-product__tab__item a {
  display: grid;
  grid-template-rows: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  gap: 5px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: var(--color-fontsub);
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: var(--font-m);
}
@media screen and (min-width: 960px) {
  .p-product__tab__item a {
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    font-size: 16px;
    font-size: 1rem;
    padding: 15px 10px;
  }
}
.p-product__tab__item a .c-icon-svg {
  width: 25px;
  height: 25px;
  background: var(--color-fontsub);
  color: #fff;
  border-radius: 9999px;
}
@media screen and (min-width: 960px) {
  .p-product__tab__item a:hover {
    background: var(--color-main);
    color: #fff;
  }
  .p-product__tab__item a:hover .c-icon-svg {
    background: #fff;
    color: var(--color-main);
  }
}
.p-product__tab__item.-current, .p-product-headCurrent__catalog .p-product__tab__item:nth-child(4), .p-product-headCurrent__support .p-product__tab__item:nth-child(3), .p-product-headCurrent__noisefilter .p-product__tab__item:nth-child(2), .p-product-headCurrent__powersupply .p-product__tab__item:nth-child(1) {
  border-color: var(--color-line);
}
.p-product__tab__item.-current a, .p-product-headCurrent__catalog .p-product__tab__item:nth-child(4) a, .p-product-headCurrent__support .p-product__tab__item:nth-child(3) a, .p-product-headCurrent__noisefilter .p-product__tab__item:nth-child(2) a, .p-product-headCurrent__powersupply .p-product__tab__item:nth-child(1) a {
  background: var(--color-main);
  color: #fff;
  font-weight: var(--font-b);
}
.p-product__tab__item.-current a .c-icon-svg, .p-product-headCurrent__catalog .p-product__tab__item:nth-child(4) a .c-icon-svg, .p-product-headCurrent__support .p-product__tab__item:nth-child(3) a .c-icon-svg, .p-product-headCurrent__noisefilter .p-product__tab__item:nth-child(2) a .c-icon-svg, .p-product-headCurrent__powersupply .p-product__tab__item:nth-child(1) a .c-icon-svg {
  background: #fff;
  color: var(--color-main);
}
.p-product__tab.-fixed {
  position: fixed;
  top: var(--header);
  left: 0;
  -webkit-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
  z-index: 100;
}
.p-product__linkList-btn {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-product__linkList-btn {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
.p-product__linkList-btn + * {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-product__linkList-btn + * {
    margin-top: 40px;
  }
}
.p-product__linkList-btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background: var(--color-sub4);
  border: 1px solid var(--color-main);
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .p-product__linkList-btn a {
    gap: 10px 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__linkList-btn a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .p-product__linkList-btn a:hover {
    opacity: 0.7;
  }
}
.p-product__linkList-btn a figure img {
  max-height: 100px;
}
@media screen and (min-width: 768px) {
  .p-product__linkList-btn a figure img {
    max-height: 120px;
  }
}
.p-product__linkList-btn a .c-link-1 span {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-product__linkList-btn a .c-link-1 span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort .c-checkbox-1 label {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort .c-checkbox-1__number {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-product__sort__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 64px;
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  border-radius: 9999px;
  background: var(--color-main);
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: var(--font-m);
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 700;
}
.p-product__sort__btn .c-icon-svg {
  width: 27px;
  height: 27px;
  margin: -3px 0;
}
@media screen and (min-width: 960px) {
  .p-product__sort__btn {
    display: none;
  }
}
.p-product__sort__inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  height: calc(100vh - var(--header));
  background: #fff;
  position: fixed;
  top: var(--header);
  right: -100%;
  z-index: 701;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
@media screen and (min-width: 960px) {
  .p-product__sort__inner {
    grid-template-rows: auto;
    position: static;
    height: auto;
    padding-bottom: 30px;
    margin-top: 20px;
  }
}
.p-product__sort__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 960px) {
  .p-product__sort__inner::before {
    display: none;
  }
}
.p-product__sort__inner.-active {
  right: 0;
}
.p-product__sort__inner.-active::before {
  right: 100%;
  opacity: 1;
}
.p-product__sort__spTtl {
  display: grid;
  grid-template-columns: 20% 1fr 20%;
  background: #EFEFEF;
  padding: 14px 10px;
}
@media screen and (min-width: 960px) {
  .p-product__sort__spTtl {
    display: none;
  }
}
.p-product__sort__spTtl .-closeBtn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: var(--font-m);
}
.p-product__sort__spTtl .-closeBtn .c-icon-svg {
  width: 13px;
  height: 13px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  color: var(--color-main);
  vertical-align: text-top;
  margin-top: 0.1em;
}
.p-product__sort__spTtl .-closeBtn span {
  color: var(--color-font);
}
.p-product__sort__spTtl .-ttl {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: var(--font-m);
  text-align: center;
}
.p-product__sort__content {
  overflow-y: auto;
  padding: 25px 0 0;
}
@media screen and (min-width: 960px) {
  .p-product__sort__content {
    padding: 0 calc(var(--sidePadding) / 2);
  }
}
.p-product__sort__header {
  background: var(--color-sub2);
  border-radius: 6px;
  padding: 10px;
  margin: 0 var(--sidePadding);
}
@media screen and (min-width: 768px) {
  .p-product__sort__header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__header {
    grid-template-columns: 1fr 180px 180px 180px;
    max-width: var(--maxWidth);
    margin: 0 auto;
  }
}
.p-product__sort__header .-ttl {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .p-product__sort__header .-ttl {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-ttl {
    grid-column: 1/2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
  }
}
.p-product__sort__header .-item {
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item {
    margin-top: 0;
  }
}
.p-product__sort__header .-item:not(.p-product__sort__header .-item.-searchLink) {
  background: #fff;
  padding: 10px;
  border-radius: 3px;
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item:not(.p-product__sort__header .-item.-searchLink) {
    background: none;
    padding: 0;
    border-radius: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item:not(.p-product__sort__header .-item.-searchLink):not(.p-product__sort__header .-item.-searchName) {
    background: #fff;
    padding: 5px 10px;
    border-radius: 3px;
  }
}
.p-product__sort__header .-item .-sortTtl {
  font-weight: var(--font-b);
  color: var(--color-main);
  margin-bottom: 5px;
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item .-sortTtl {
    font-size: 13px;
    font-size: 0.8125rem;
    margin-bottom: 0;
  }
}
.p-product__sort__header .-item .c-checkbox-1 {
  background: #EFEFEF;
  border-radius: 3px;
  padding: 15px;
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item .c-checkbox-1 {
    background: none;
    border-radius: 0;
    padding: 0;
  }
}
.p-product__sort__header .-item.-rental {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-product__sort__header .-item.-rental .c-checkbox-1 {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item.-rental .c-checkbox-1 {
    width: auto;
  }
  .p-product__sort__header .-item.-rental .c-checkbox-1 label {
    font-weight: var(--font-b);
    color: var(--color-main);
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-product__sort__header .-item.-searchLink a {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 10px;
  border-radius: 3px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-product__sort__header .-item.-searchLink a {
    height: 100%;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item.-searchLink a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .p-product__sort__header .-item.-searchLink a:hover {
    opacity: 0.7;
  }
}
.p-product__sort__header .-item.-searchLink a .-sortTtl {
  margin-bottom: 0;
  margin-top: 0.3em;
}
.p-product__sort__header .-item.-searchLink a .c-icon-svg {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item.-searchName .-sortTtl {
    display: none;
  }
}
.p-product__sort__header .-item.-searchName .-input-txt {
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item.-searchName .-input-txt {
    height: 100%;
  }
}
.p-product__sort__header .-item.-searchName input[type=text] {
  width: 100%;
  padding: 10px 60px 10px 10px;
  min-height: 50px;
  border: 1px solid var(--color-main);
  border-radius: 3px;
  background: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item.-searchName input[type=text] {
    height: 100%;
    min-height: 35px;
    padding-right: 40px;
    border: none;
  }
}
.p-product__sort__header .-item.-searchName input[type=text]::-webkit-input-placeholder {
  color: #787878;
  font-weight: var(--font-l);
}
.p-product__sort__header .-item.-searchName input[type=text]::-moz-placeholder {
  color: #787878;
  font-weight: var(--font-l);
}
.p-product__sort__header .-item.-searchName input[type=text]:-ms-input-placeholder {
  color: #787878;
  font-weight: var(--font-l);
}
.p-product__sort__header .-item.-searchName input[type=text]::-ms-input-placeholder {
  color: #787878;
  font-weight: var(--font-l);
}
.p-product__sort__header .-item.-searchName input[type=text]::placeholder {
  color: #787878;
  font-weight: var(--font-l);
}
.p-product__sort__header .-item.-searchName .-searchBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 100%;
  background: var(--color-main);
  border-radius: 0 3px 3px 0;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 960px) {
  .p-product__sort__header .-item.-searchName .-searchBtn {
    width: auto;
    padding: 5px 10px;
    background: none;
    color: var(--color-main);
  }
}
.p-product__sort__header .-item.-searchName .-searchBtn .c-icon-svg {
  width: 17px;
  height: 17px;
}
.p-product__sort__checkArea {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea {
    display: grid;
    gap: 10px;
    max-width: var(--maxWidth);
    margin: 10px auto 0;
    padding-bottom: 10px;
  }
  .p-product__sort__checkArea.-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item {
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25);
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item.-grid-col2 {
    grid-column: span 2;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item.-grid-col3 {
    grid-column: span 3;
  }
}
.p-product__sort__checkArea__item .-sortTtl {
  background: #EFEFEF;
  padding: 10px 20px;
  color: var(--color-main);
  font-weight: var(--font-b);
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item .-sortTtl {
    padding: 0 0 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #CBCBCB;
    font-size: 14px;
    font-size: 0.875rem;
    background: none;
  }
}
.p-product__sort__checkArea__item .-sortSubTtl {
  background: #EFEFEF;
  padding: 5px 20px;
  color: var(--color-font);
  font-weight: var(--font-b);
  border-top: 1px solid var(--color-line);
  margin-top: -1px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item .-sortSubTtl {
    padding: 0 0 5px;
    margin: 5px 0 10px;
    border-top: none;
    border-bottom: 1px solid #CBCBCB;
    font-size: 14px;
    font-size: 0.875rem;
    background: none;
  }
}
.p-product__sort__checkArea__item .-checkboxList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item .-checkboxList {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item .-checkboxList.-col2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item .-checkboxList.-col3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item .-checkboxList.-col4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item .-checkboxList.-col5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 0 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item .-checkboxList.-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0 20px;
  }
}
.p-product__sort__checkArea__item .c-checkbox-1 {
  padding: 20px var(--sidePadding);
  border-bottom: 1px solid var(--color-line);
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item .c-checkbox-1 {
    padding: 5px 0;
    border-bottom: none;
  }
}
.p-product__sort__checkArea__item .c-checkbox-1:nth-child(odd) {
  border-right: 1px solid var(--color-line);
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item .c-checkbox-1:nth-child(odd) {
    border-right: none;
  }
}
.p-product__sort__checkArea__item + .p-product__sort__checkArea__item {
  margin-top: -1px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-product__sort__checkArea__item + .p-product__sort__checkArea__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent {
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 10px;
    max-width: var(--maxWidth);
    margin: 0 auto;
    border-radius: 8px;
  }
}
.p-product__sort__optionContent > * {
  margin-top: -1px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent > * {
    margin-top: 0;
  }
}
.p-product__sort__optionContent .p-product__sort__checkArea {
  margin-top: 0;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent .p-product__sort__checkArea__item {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  .p-product__sort__optionContent .p-product__sort__checkArea__item.-col2 {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent__item + .p-product__sort__optionContent__item {
    margin-top: 15px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent__item .p-product__sort__checkArea.-col2 {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent__item .p-product__sort__checkArea__item {
    background: none;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent__item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 5px;
    gap: 10px 20px;
  }
  .p-product__sort__optionContent__item.-bg-blue {
    background: var(--color-sub4);
    padding-top: 15px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent__item.-col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent__item.-col6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
.p-product__sort__optionContent__item .-sortTtl {
  background: #EFEFEF;
  padding: 10px 20px;
  color: var(--color-main);
  font-weight: var(--font-b);
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent__item .-sortTtl {
    padding: 0 0 15px;
    border-bottom: 1px solid #CBCBCB;
    font-size: 14px;
    font-size: 0.875rem;
    background: none;
    grid-column: 1/-1;
  }
}
.p-product__sort__optionContent__item .-sortSubTtl {
  background: #EFEFEF;
  padding: 5px 20px;
  color: var(--color-font);
  font-weight: var(--font-b);
  border-top: 1px solid var(--color-line);
  margin-top: -1px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionContent__item .-sortSubTtl {
    padding: 0 0 5px;
    margin: 5px 0 10px;
    border-top: none;
    border-bottom: 1px solid #CBCBCB;
    font-size: 14px;
    font-size: 0.875rem;
    background: none;
  }
}
.p-product__sort__optionBtn {
  margin: 20px var(--sidePadding) 25px;
  width: calc(100% - var(--sidePadding) * 2);
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-sub);
  font-weight: var(--font-b);
  border-radius: 9999px;
  padding: 10px;
}
@media screen and (min-width: 960px) {
  .p-product__sort__optionBtn {
    max-width: 280px;
    margin: 20px auto 0;
  }
  .p-product__sort__optionBtn:hover {
    background: var(--color-main);
    color: #fff;
  }
}
.p-product__sort__optionBtn .c-icon-svg {
  width: 11px;
  height: 11px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-product__sort__optionBtn.-active .c-icon-svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.p-product__sort__spBtn {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  -webkit-box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-product__sort__spBtn {
    grid-template-columns: auto auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .p-product__sort__spBtn {
    display: none;
  }
}
.p-product__sort__spBtn > button {
  padding: 10px;
  text-align: center;
  border-radius: 3px;
}
.p-product__sort__spBtn .-clear {
  padding: 10px 20px;
  background: #eee;
  color: #787878;
}
.p-product__sort__spBtn .-result {
  background: var(--color-main);
  color: #fff;
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .p-product__sort__spBtn .-result {
    padding: 10px 20px;
  }
}
.p-product__content {
  --btnWidth: 205px;
  background: #F3F3F3;
  padding: 30px var(--sidePadding);
}
@media screen and (min-width: 960px) {
  .p-product__content {
    padding: 30px calc(var(--sidePadding) / 2);
  }
}
.p-product__content__inner {
  max-width: var(--maxWidth);
  margin: 0 auto;
}
.p-product__item {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-product__item {
    position: relative;
  }
}
.p-product__item + .p-product__item {
  margin-top: 20px;
}
.p-product__item .-header .-series {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid var(--color-line);
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-series {
    padding: 20px 30px;
    gap: 10px 30px;
  }
}
.p-product__item .-header .-seriesName {
  font-weight: var(--font-b);
  font-size: 12px;
  font-size: 0.75rem;
}
.p-product__item .-header .-seriesName span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-seriesName span {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}
.p-product__item .-header .-seriesList {
  --gap: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px var(--gap);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-seriesList {
    --gap: 60px;
  }
}
.p-product__item .-header .-seriesList li {
  position: relative;
}
.p-product__item .-header .-seriesList li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background: var(--color-line);
  position: absolute;
  top: 0;
  right: calc(0% - var(--gap) / 2);
}
.p-product__item .-header .-seriesList li a {
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .p-product__item .-header .-seriesList li a:hover {
    text-decoration: none;
  }
}
.p-product__item .-headerInner {
  padding: 20px 20px 10px;
}
@media screen and (min-width: 768px) {
  .p-product__item .-headerInner {
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - var(--btnWidth) - 20px);
    padding: 20px 30px;
    min-height: 90px;
  }
}
.p-product__item .-header .-name {
  font-weight: var(--font-b);
}
.p-product__item .-header .-name a {
  display: inline-block;
  text-decoration: underline;
  text-underline-position: from-font;
}
@media screen and (min-width: 960px) {
  .p-product__item .-header .-name a:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-name {
    margin-right: 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__item .-header .-name {
    min-width: 150px;
  }
}
.p-product__item .-header .-name span {
  font-size: 28px;
  font-size: 1.75rem;
  vertical-align: baseline;
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-name span {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.p-product__item .-header .-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .p-product__item .-header .-label {
    gap: 10px;
  }
}
.p-product__item .-header .-label li:not(.-kikaku):not(.-rental):not(.-icon) {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  padding: 3px 5px;
  border: 1px solid var(--color-line);
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-label li:not(.-kikaku):not(.-rental):not(.-icon) {
    font-size: 13px;
    font-size: 0.8125rem;
    gap: 5px;
  }
}
.p-product__item .-header .-label li:not(.-kikaku):not(.-rental):not(.-icon)::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-label li:not(.-kikaku):not(.-rental):not(.-icon)::before {
    width: 13px;
  }
}
.p-product__item .-header .-label li:not(.-kikaku):not(.-rental):not(.-icon).-new::before {
  background: var(--label-color-new);
}
.p-product__item .-header .-label li:not(.-kikaku):not(.-rental):not(.-icon).-recommended::before {
  background: var(--label-color-recommend);
}
.p-product__item .-header .-label li:not(.-kikaku):not(.-rental):not(.-icon).-massProduced::before {
  background: var(--label-color-massProduced);
}
.p-product__item .-header .-label li:not(.-kikaku):not(.-rental):not(.-icon).-deprecated::before {
  background: var(--label-color-deprecated);
}
.p-product__item .-header .-label li:not(.-kikaku):not(.-rental):not(.-icon).-endOfLife::before {
  background: var(--label-color-endOfLife);
}
.p-product__item .-header .-label li:not(.-kikaku):not(.-rental):not(.-icon).-discontinued::before {
  background: var(--label-color-discontinued);
}
.p-product__item .-header .-label li.-rental {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  background: #EFEFEF;
  padding: 5px 8px 3px;
  border-radius: 9999px;
  color: var(--color-main);
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-label li.-rental {
    font-size: 13px;
    font-size: 0.8125rem;
    gap: 3px;
  }
}
.p-product__item .-header .-label li.-rental .c-icon-svg {
  width: 15px;
  height: 15px;
  margin-bottom: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-label li.-rental .c-icon-svg {
    width: 18px;
    height: 18px;
  }
}
.p-product__item .-header .-label li.-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-label li.-icon {
    margin: 0 0 0 auto;
  }
}
.p-product__item .-header .-label li.-icon figure img {
  max-height: 20px;
}
@media screen and (min-width: 768px) {
  .p-product__item .-header .-label li.-icon figure img {
    max-height: 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-product__item .-pc2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-product__item .-detail {
  border-top: 1px solid var(--color-line);
  padding: 10px var(--sidePadding) 20px;
}
@media screen and (min-width: 768px) {
  .p-product__item .-detail {
    border-right: 1px solid var(--color-line);
    display: grid;
    grid-template-columns: 40% 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
    padding: 10px 15px;
    grid-row: 1/500;
  }
  .p-product__item .-detail.-alignStart {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.p-product__item .-detail .-img img {
  margin: 0 auto;
}
.p-product__item .-detail .-detailTxt {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-product__item .-detail .-detailTxt {
    margin-top: 0;
    padding: 5px 0;
    height: 100%;
  }
}
.p-product__item .-detail .-detailTxt > div:nth-child(1)::after {
  content: "";
  display: block;
  clear: both;
}
.p-product__item .-detail .-detailTxt p + p:not([class]) {
  margin-top: 3px;
}
.p-product__item .-detail .-detailTxt a {
  text-decoration: underline;
  font-weight: var(--font-m);
}
@media screen and (min-width: 960px) {
  .p-product__item .-detail .-detailTxt a:hover {
    text-decoration: none;
  }
}
.p-product__item .-detail .-detailTxt a:has(img) {
  display: inline-block;
  margin-top: 5px;
}
@media screen and (min-width: 960px) {
  .p-product__item .-detail .-detailTxt a:hover img {
    opacity: 0.7;
  }
}
.p-product__item .-rightBox {
  border-top: 1px solid var(--color-line);
  padding: 15px var(--sidePadding) 20px;
}
@media screen and (min-width: 768px) {
  .p-product__item .-rightBox {
    padding: 15px 20px 15px 15px;
  }
}
.p-product__item .-rightBoxTtl {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: var(--font-b);
}
.p-product__item .-rightBoxTtl + * {
  margin-top: 10px;
}
.p-product__item .-rightBoxTtl .c-icon-svg {
  width: 25px;
  height: 25px;
  color: #4B4B4B;
}
@media screen and (min-width: 768px) {
  .p-product__item .-rightBoxTtl .c-icon-svg {
    background: #E5E5E5;
    border-radius: 9999px;
    padding: 2px;
  }
}
.p-product__item .-sugoi::after {
  content: "";
  clear: both;
}
@media screen and (min-width: 768px) {
  .p-product__item .-sugoi .-rightBoxTtl {
    display: inline-grid;
  }
}
.p-product__item .-sugoi .-img + * {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-product__item .-sugoi .-img {
    float: right;
    margin-left: 20px;
    margin-top: 0;
    max-width: 160px;
  }
}
.p-product__item .-sugoi .-img img {
  margin-right: auto;
  margin-left: auto;
}
.p-product__item .-feature .-featureTag {
  font-weight: var(--font-l);
}
@media screen and (min-width: 768px) {
  .p-product__item .-feature .-featureTag {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 5px 15px;
    margin-left: 30px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .p-product__item .-feature .-featureTag li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-product__item .-feature .-featureTag li::before {
  content: "#";
  margin-right: 2px;
}
@media screen and (min-width: 960px) {
  .p-product__item .-movie {
    padding: 30px 20px;
  }
}
.p-product__item .-movie .-movieList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-product__item .-movie .-movieList {
    grid-template-columns: repeat(auto-fill, minmax(170px, 184px));
  }
}
.p-product__item .-btnBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px 20px;
}
@media screen and (min-width: 768px) {
  .p-product__item .-btnBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 960px) {
  .p-product__item .-btnBox {
    padding: 30px 20px;
  }
}
.p-product__item .-btnBox .-white a {
  border: 1px solid var(--color-main);
}
.p-product__item .-btnBox .-katamei a {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-main);
}
.p-product__item .-btnBox .-katamei a .c-icon-svg {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 960px) {
  .p-product__item .-btnBox .-katamei a .c-icon-svg {
    -webkit-animation: none;
            animation: none;
  }
  .p-product__item .-btnBox .-katamei a:hover {
    background: var(--color-sub4);
    color: var(--color-main);
  }
}
.p-product__item .-btnBox .-onayami a {
  padding: 10px 20px;
  text-align: left;
}
.p-product__item .-download {
  border-top: 1px solid var(--color-line);
  padding: 20px var(--sidePadding);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-product__item .-download {
    padding: 0;
    border-top: none;
    position: absolute;
    top: calc(20px + var(--seriesHeight));
    right: 20px;
  }
}
.p-product__item .-download a {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-product__item .-download a {
    max-width: var(--btnWidth);
    padding: 15px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-product__item .-productsList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--color-line);
  position: relative;
}
.p-product__item .-productsList::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #F3F3F3;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-product__item .-productsList {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .p-product__item .-productsList {
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-product__item .-productsList__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60px;
  padding: 10px 5px 10px 10px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-product__item .-productsList__item {
    padding: 10px 25px;
  }
}
.p-product__item .-productsList__item.-noMatch {
  background: #E8E8E8;
  position: relative;
  color: var(--color-fontsub);
}
.p-product__item .-productsList__item.-noMatch::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-product__item .-productsList__item.-noMatch > * {
  position: relative;
}
.p-product__item .-productsList__item.-noMatch a {
  color: var(--color-fontsub);
}
.p-product__item .-productsList__item.-noMatch .-ico .c-icon-svg {
  color: var(--color-fontsub);
}
.p-product__item .-productsList__item::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: var(--color-line);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.p-product__item .-productsList__item:nth-child(odd) {
  border-right: 1px solid var(--color-line);
}
@media screen and (min-width: 768px) {
  .p-product__item .-productsList__item:nth-child(odd) {
    border-right: none;
  }
}
@media screen and (min-width: 768px) {
  .p-product__item .-productsList__item:not(:nth-child(4n)) {
    border-right: 1px solid var(--color-line);
  }
}
@media screen and (min-width: 960px) {
  .p-product__item .-productsList__item:not(:nth-child(4n)) {
    border-right: none;
  }
}
@media screen and (min-width: 960px) {
  .p-product__item .-productsList__item:not(:nth-child(5n)) {
    border-right: 1px solid var(--color-line);
  }
}
.p-product__item .-productsList__item a {
  display: inline-block;
  text-decoration: underline;
  color: var(--color-main);
  word-break: break-all;
}
@media screen and (min-width: 960px) {
  .p-product__item .-productsList__item a:hover {
    text-decoration: none;
  }
}
.p-product__item .-productsList__item .-iconList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0 2px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-product__item .-productsList__item .-ico {
  position: relative;
}
.p-product__item .-productsList__item .-ico .-txt {
  display: none;
  font-size: 11px;
  font-size: 0.6875rem;
  word-break: keep-all;
  padding: 2px 5px 1px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid var(--color-line);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 960px) {
  .p-product__item .-productsList__item .-ico .-txt {
    display: block;
    opacity: 0;
    visibility: hidden;
    bottom: calc(100% + 5px);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
.p-product__item .-productsList__item .-ico .-txt::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 7px;
  background: url(/product/images/ico-fukidashi.svg) no-repeat center center/cover;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-product__item .-productsList__item .-ico .c-icon-svg {
  width: 18px;
  height: 18px;
  color: #4B4B4B;
}
@media screen and (min-width: 960px) {
  .p-product__item .-productsList__item .-ico:hover .-txt {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 8px);
  }
}
.p-product__item.-border {
  border: 1px solid var(--color-line);
}
.p-product__item .-tabBtnList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--color-line);
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-product__item .-tabBtnList {
    grid-column: 1/-1;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .p-product__item .-tabBtnList {
    grid-template-columns: repeat(auto-fill, minmax(0, auto));
  }
}
.p-product__item .-tabBtnList button {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  min-height: 50px;
  background: #F5F5F5;
  color: var(--color-fontsub);
  padding: 10px;
}
@media screen and (min-width: 960px) {
  .p-product__item .-tabBtnList button {
    padding: 10px 15px;
    min-width: 120px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-product__item .-tabBtnList button:hover {
    background: var(--color-main);
    color: #fff;
  }
}
.p-product__item .-tabBtnList button.-current, .p-product__item .-tabBtnList .p-product-headCurrent__powersupply button.p-product__tab__item:nth-child(1), .p-product-headCurrent__powersupply .p-product__item .-tabBtnList button.p-product__tab__item:nth-child(1), .p-product__item .-tabBtnList .p-product-headCurrent__noisefilter button.p-product__tab__item:nth-child(2), .p-product-headCurrent__noisefilter .p-product__item .-tabBtnList button.p-product__tab__item:nth-child(2), .p-product__item .-tabBtnList .p-product-headCurrent__support button.p-product__tab__item:nth-child(3), .p-product-headCurrent__support .p-product__item .-tabBtnList button.p-product__tab__item:nth-child(3), .p-product__item .-tabBtnList .p-product-headCurrent__catalog button.p-product__tab__item:nth-child(4), .p-product-headCurrent__catalog .p-product__item .-tabBtnList button.p-product__tab__item:nth-child(4) {
  background: var(--color-main);
  color: #fff;
  pointer-events: none;
  cursor: default;
}
.p-product__item .-tabBtnList button .c-icon-svg {
  width: 17px;
  aspect-ratio: 1/1;
  margin-right: 5px;
}
.p-product__item .-tabBtnList button:not(:first-child):not(:nth-child(2)) {
  border-top: 1px solid var(--color-line);
}
@media screen and (min-width: 768px) {
  .p-product__item .-tabBtnList button:not(:first-child):not(:nth-child(2)) {
    border-top: none;
  }
}
.p-product__item .-tabBtnList button:nth-child(odd) {
  border-right: 1px solid var(--color-line);
}
@media screen and (min-width: 768px) {
  .p-product__item .-tabBtnList button:nth-child(odd) {
    border-right: none;
  }
}
@media screen and (min-width: 768px) {
  .p-product__item .-tabBtnList button:not(:first-child):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) {
    border-top: 1px solid var(--color-line);
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .p-product__item .-tabBtnList button:not(:first-child):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) {
    border-top: none;
  }
}
@media screen and (min-width: 768px) {
  .p-product__item .-tabBtnList button:not(:nth-child(4n)) {
    border-right: 1px solid var(--color-line);
  }
}
@media screen and (min-width: 960px) {
  .p-product__item .-tabBtnList button {
    border-right: 1px solid var(--color-line);
  }
}
.p-product__item .-tabContent {
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .p-product__item.-detail .-pc2col .-detail {
    padding: 20px 15px;
    display: block;
  }
  .p-product__item.-detail .-pc2col .-detail::after {
    content: "";
    display: block;
    clear: both;
  }
  .p-product__item.-detail .-pc2col .-detail .-img {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 40%;
  }
  .p-product__item.-detail .-pc2col .-rightBox {
    padding: 20px 20px 20px 15px;
  }
}
.p-product__item.-detail .c-table-2 {
  font-size: 12px;
  font-size: 0.75rem;
}
.p-product__item.-detail .c-table-2 td {
  padding: 10px 5px;
}
.p-product__item.-detail .c-table-2 td .c-label__outer {
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.p-product__item.-detail .c-table-2 tr.-noMatch {
  background: #E8E8E8;
  color: var(--color-fontsub);
}
.p-product__item.-detail .c-table-2 tr.-noMatch > * {
  position: relative;
}
.p-product__item.-detail .c-table-2 tr.-noMatch a {
  color: var(--color-fontsub);
}
.p-product__item.-detail .c-table-2 tr.-noMatch .c-kikaku {
  color: var(--color-fontsub);
  background: #DCDCDC;
}
.p-product__item.-detail .c-table-2 tr.-noMatch .-ico .c-icon-svg {
  color: var(--color-fontsub);
}
.p-product__item.-detail .p-product__similar__list {
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .p-product__item.-detail .p-product__similar__list {
    padding: 30px;
  }
}
.p-product__item.-detail .p-product__similar__list .p-product__item {
  border: 1px solid var(--color-line);
}
.p-product__status__color {
  position: relative;
}
.p-product__status__color::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  margin-right: 3px;
}
.p-product__status__color.-new::before {
  background: var(--label-color-new);
}
.p-product__status__color.-recommend::before {
  background: var(--label-color-recommend);
}
.p-product__status__color.-massProduced::before {
  background: var(--label-color-massProduced);
}
.p-product__status__color.-deprecated::before {
  background: var(--label-color-deprecated);
}
.p-product__status__color.-discontinued::before {
  background: var(--label-color-discontinued);
}
.p-product__status__color.-endOfLife::before {
  background: var(--label-color-endOfLife);
}
.p-product__status__color.-stop {
  color: var(--color-fontsub);
  background: #E8E8E8;
}
.p-product__status__color.-stop::before {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, transparent), color-stop(50%, var(--color-line)), color-stop(51%, var(--color-line)), color-stop(51%, transparent));
  background: -webkit-linear-gradient(bottom right, transparent 50%, var(--color-line) 50%, var(--color-line) 51%, transparent 51%);
  background: linear-gradient(to top left, transparent 50%, var(--color-line) 50%, var(--color-line) 51%, transparent 51%);
  position: absolute;
  top: 0;
  left: 0;
}
.p-product__status__color.-stop span {
  position: relative;
}
.p-product__subBox {
  margin-top: 30px;
  background: #fff;
  padding: 20px var(--sidePadding);
  --color-match: #29c7bf;
}
@media screen and (min-width: 768px) {
  .p-product__subBox {
    padding: 30px;
  }
}
.p-product__subBox__ttl {
  font-weight: var(--font-b);
  font-size: 16px;
  font-size: 1rem;
}
.p-product__subBox__ttl + * {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-product__subBox__ttl + * {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-product__subBox__ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-product__subBox table .c-link-3 {
  text-decoration: underline;
}
.p-product__subBox table .c-link-3 .c-icon-svg {
  color: #4B4B4B;
}
@media screen and (min-width: 960px) {
  .p-product__subBox table .c-link-3:hover {
    text-decoration: none;
  }
}
.p-product__subBox table *:has(> .p-download__svg) {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.p-product__subBox table *:has(> .p-download__svg)::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background: var(--color-sub);
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-product__subBox table *:has(> .p-download__svg)::before {
    width: 25px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__subBox table *:has(> .p-download__svg):hover .p-download__svg {
    color: #fff;
  }
  .p-product__subBox table *:has(> .p-download__svg):hover::before {
    background: var(--color-main);
  }
}
.p-product__subBox table th, .p-product__subBox table td {
  padding: 10px 5px;
}
@media screen and (min-width: 768px) {
  .p-product__subBox table th, .p-product__subBox table td {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-product__subBox .c-table-3 td[colspan] {
  background: #fff;
}
.p-product__subBox .c-table-3 tbody tr:nth-child(even) {
  background: rgba(215, 218, 248, 0.37);
}
.p-product__subBox .c-table-3 tbody tr:nth-child(even) td[colspan] {
  background: #f0f1fc;
}
.p-product__subBox col.-Match {
  border: 2px solid var(--color-match);
}
.p-product__subBox col.-noMatch {
  background: #eee;
}
.p-product__subBox th.-Match {
  background: var(--color-match);
}
.p-product__subBox th.-noMatch {
  background: #808080;
  color: #ddd;
}
.p-product__subBox th.-noMatch a {
  color: var(--color-fontsub);
}
@media screen and (min-width: 960px) {
  .p-product__subBox .c-tab-1 > li > *:not(.-current) {
    background: -webkit-linear-gradient(bottom, transparent 0%, #F5F5F5 3px, #F5F5F5 100%);
    background: linear-gradient(to top, transparent 0%, #F5F5F5 3px, #F5F5F5 100%);
  }
  .p-product__subBox .c-tab-1 > li > *:not(.-current):hover {
    background: var(--color-main);
    color: #fff;
  }
}
.p-product__similar {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-product__similar {
    margin-bottom: 80px;
  }
}
.p-product__similar__ttl {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: var(--font-b);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-product__similar__ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.p-product__similar__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-product__similar__list {
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  }
}
.p-product__similar__list .p-product__item {
  margin-top: 0;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-product__similar__list .p-product__item .-headerInner {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .p-product__similar__list .p-product__item .-headerInner .-label li.-icon {
    margin: 0;
  }
}
.p-product__similar__list .p-product__item .-headerTtl {
  background: var(--color-main);
  color: white;
  padding: 0.7em 20px 0.5em;
}
@media screen and (min-width: 768px) {
  .p-product__similar__list .p-product__item .-headerTtl {
    padding: 0.7em 30px 0.5em;
  }
}
.p-product__similar__list .p-product__item .-detail {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 15px;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-product__similar__list .p-product__item .-detail {
    font-size: 14px;
    font-size: 0.875rem;
    border-right: none;
    padding: 20px 30px;
  }
}
.p-product__footBnr__btNone .l-foot-bnr::before {
  content: none;
}
.p-product__catalog__search {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F6F6F6;
  padding: 20px var(--sidePadding);
}
@media screen and (min-width: 768px) {
  .p-product__catalog__search {
    grid-template-columns: auto 1fr;
    gap: 0 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 960px) {
  .p-product__catalog__search {
    grid-template-columns: auto auto 1fr;
  }
}
.p-product__catalog__search .-ttl {
  color: var(--color-main);
  font-weight: var(--font-b);
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-product__catalog__search .-ttl {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 960px) {
  .p-product__catalog__search .-ttl {
    grid-column: auto;
    font-size: 18px;
    font-size: 1.125rem;
    margin-right: 50px;
  }
}
.p-product__catalog__search .-checkbox__list {
  margin: 10px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 50px;
  max-width: 350px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .p-product__catalog__search .-checkbox__list {
    width: auto;
  }
}
@media screen and (min-width: 960px) {
  .p-product__catalog__search .-checkbox__list {
    margin-top: 0;
  }
}
.p-product__catalog__search .c-form-1 {
  margin: 10px auto 0;
  width: 100%;
}
.p-product__catalog__search .c-form-1 input[type=text] {
  min-height: 50px;
}
@media screen and (min-width: 960px) {
  .p-product__catalog__search .c-form-1 {
    margin-top: 0;
    max-width: none;
  }
}
.p-product__catalog__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}
@media screen and (min-width: 768px) {
  .p-product__catalog__list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.p-product__catalog__list li .-imgAndBtn {
  position: relative;
}
.p-product__catalog__list li .-imgAndBtn figure {
  border: 1px solid var(--color-line);
  background: #F5F5F5;
  aspect-ratio: 1/1.4;
}
.p-product__catalog__list li .-imgAndBtn figure img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .p-product__catalog__list li .-imgAndBtn figure::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
}
.p-product__catalog__list li .-imgAndBtn .-btnBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
@media screen and (min-width: 960px) {
  .p-product__catalog__list li .-imgAndBtn .-btnBox {
    grid-template-columns: repeat(2, 70px);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
}
.p-product__catalog__list li .-imgAndBtn .-btnBox a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-main);
  padding: 10px;
}
@media screen and (min-width: 960px) {
  .p-product__catalog__list li .-imgAndBtn .-btnBox a {
    width: 70px;
    height: 70px;
    border-radius: 9999px;
    background: #fff;
  }
}
.p-product__catalog__list li .-imgAndBtn .-btnBox a .c-icon-svg {
  color: #fff;
  width: 25px;
  height: 25px;
}
@media screen and (min-width: 960px) {
  .p-product__catalog__list li .-imgAndBtn .-btnBox a .c-icon-svg {
    width: 35px;
    height: 35px;
    color: var(--color-main);
  }
}
@media screen and (min-width: 960px) {
  .p-product__catalog__list li .-imgAndBtn .-btnBox a:hover {
    background: var(--color-main);
  }
  .p-product__catalog__list li .-imgAndBtn .-btnBox a:hover .c-icon-svg {
    color: #fff;
  }
}
@media screen and (min-width: 960px) {
  .p-product__catalog__list li .-imgAndBtn:hover figure::after {
    opacity: 1;
  }
  .p-product__catalog__list li .-imgAndBtn:hover .-btnBox {
    opacity: 1;
  }
}
.p-product__catalog__list li .-name {
  text-align: center;
  margin-top: 5px;
}
.p-product__support__coselPlus {
  margin-top: 60px;
  background: #FFFCCE;
  padding: 20px 20px 30px;
}
@media screen and (min-width: 768px) {
  .p-product__support__coselPlus {
    margin-top: 80px;
    padding: 70px 90px;
  }
}
@media screen and (min-width: 960px) {
  .p-product__support__coselPlus {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
  }
}
.p-product__support__coselPlus .-imgBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 960px) {
  .p-product__support__coselPlus .-imgBox {
    gap: 40px;
  }
}
.p-product__support__coselPlus .-imgBox .-logo {
  width: 175px;
}
@media screen and (min-width: 768px) {
  .p-product__support__coselPlus .-imgBox .-logo {
    width: 195px;
  }
}
.p-product__support__coselPlus .-imgBox .-logo img {
  width: 100%;
}
.p-product__support__coselPlus .-imgBox .-img {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .p-product__support__coselPlus .-imgBox .-img {
    width: 229px;
  }
}
.p-product__support__coselPlus .-txtBox {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .p-product__support__coselPlus .-txtBox {
    margin-top: 0;
  }
}
.p-product__support__coselPlus .-txtBox .c-btn-1 {
  margin-top: 20px;
}
.p-product__noiseSupport-link {
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-product__noiseSupport-link:hover::before {
    opacity: 0.5;
  }
}
.p-product__noiseSupport-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-product__noiseSupport-link .icon_view {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20%;
  max-width: 9rem;
}
.p-product__program-download {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 2.5em;
  height: 2.5em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-main);
  border-radius: 50%;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .p-product__program-download {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .p-product__program-download:hover {
    opacity: 0.7;
  }
}
.p-product__program-download svg {
  width: 17px;
}
.p-product__selection-flow {
  margin-bottom: 4rem;
  font-size: clamp(5px, 1.4vw, 0.93rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-product__selection-flow {
    margin-bottom: 6rem;
  }
}
.p-product__selection-flow .flow-button {
  width: 16.5%;
  padding: 0.5em;
  background-color: #FFFDBE;
  border: 1px solid #CDB500;
  position: absolute;
}
.p-product__selection-flow .flow-button * {
  line-height: 1.2;
}
.p-product__selection-flow .flow-button svg {
  width: 1.5em;
  height: 1.5em;
  padding: 0.4em;
}
.p-product__selection-flow .flow-button small {
  font-size: 80%;
}
.p-product__selection-flow .flow-button[href="#switch-1"] {
  left: 1.5%;
  top: 19.3%;
}
.p-product__selection-flow .flow-button[href="#noise-1"] {
  left: 83.5%;
  top: 40%;
}
.p-product__selection-flow .flow-button[href="#std-1"] {
  left: 63.2%;
  top: 79%;
}
.p-product__selection-flow .flow-button[href="#std-2"] {
  left: 83.5%;
  top: 79%;
}
.p-product__selection-flow .flow-button[href="#std-3"] {
  left: 1.5%;
  top: 79%;
}
.p-product__selection-flow .flow-button[href="#book-1"] {
  top: 79%;
  left: 22.3%;
}
.p-product__selection-flow .flow-button[href="#book-2"] {
  top: 94%;
  left: 22.3%;
}
.p-product__selection-flow .flow-button[href="#low-1"] {
  left: 42.5%;
  top: 79%;
}
.p-product__selection-flow .flow-button[href="#low-2"] {
  top: 94%;
  left: 42.5%;
}
.p-product__selection-flow .flow-button[href="#med-1"] {
  top: 94%;
  left: 63.2%;
}
.p-product__selection-flow .flow-button[href="#med-2"] {
  top: 94%;
  left: 83.5%;
}
.p-product__selection-btnBox {
  border: 1px solid var(--color-line);
  padding: 1.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-product__selection-option {
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid var(--color-main);
  padding: 1em;
  display: grid;
  gap: 0.5em 2em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-product__selection-option {
    padding: 1.5em 2em;
    grid-template-columns: auto 1fr;
  }
}
.p-product__selection-productImg {
  background-color: var(--color-border);
  width: 100%;
  height: 100%;
}
.p-product__selection-productName > a {
  line-height: 1.4;
  word-break: keep-all;
}
.p-product__selection .block {
  display: block !important;
}
.p-product__selection .product-series {
  font-size: 200% !important;
}
.p-product__selection .text-main-color {
  color: var(--color-main);
}
.p-product__designTool__box {
  background: var(--color-sub4);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .p-product__designTool__box {
    padding: 40px 60px;
  }
}
.p-product__designTool__box > * + * {
  margin-top: var(--marginTop);
}
.p-product__designTool__box__ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-b);
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .p-product__designTool__box__ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-product__designTool__box__selectCol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.p-product__designTool__box .c-btn-1.-search a .c-icon-svg, .p-product__designTool__box .c-btn-1.-search button .c-icon-svg {
  width: 19px;
  height: 19px;
}
.p-product__designTool__box .c-btn-1.-mainBtn {
  border-top: 1px solid #fff;
  padding-top: 20px;
}
.p-product__designTool__box__item {
  display: grid;
  grid-template-columns: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-product__designTool__box__item {
    grid-template-columns: calc(45% - 20px) auto;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-align: left;
  }
  .p-product__designTool__box__item.-jc-start {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .p-product__designTool__box__item .-ttl {
    text-align: right;
  }
}
.p-product__designTool__box__item input[type=text] {
  min-height: 50px;
  border: 1px solid var(--color-fontsub);
  border-radius: 5px;
  padding: 10px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-product__designTool__box__item.-imgBox {
    grid-template-columns: 1fr;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .p-product__designTool__box__item.-imgBox .-ttl {
    text-align: center;
  }
}
.p-product__designTool__box__item.-imgBox .-imgBox__contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 150px));
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-product__designTool__box__item.-imgBox .-imgBox__contents {
    margin-top: 0;
  }
}
.p-product__designTool__box__item.-imgBox .-imgBox__contents input[type=radio] {
  display: none;
}
.p-product__designTool__box__item.-imgBox .-imgBox__contents input[type=radio]:checked + label {
  outline: 2px solid var(--color-main);
}
.p-product__designTool__box__item.-imgBox .-imgBox__contents label {
  display: block;
  max-width: 150px;
  aspect-ratio: 1/1;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 960px) {
  .p-product__designTool__box__item.-imgBox .-imgBox__contents label:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.p-product__designTool__box__result {
  background: #fff;
  padding: 20px 20px 30px;
}
@media screen and (min-width: 768px) {
  .p-product__designTool__box__result {
    padding: 40px 60px;
    margin-bottom: 20px;
  }
}
.p-product__designTool__box__result__ttl {
  background: var(--color-main);
  padding: 10px 20px;
  color: #fff;
  font-weight: var(--font-b);
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-product__designTool__box__result__ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-product__designTool__table {
    text-align: center;
  }
}
.p-product__designTool__table table {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-product__designTool__table table {
    width: auto;
    min-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-product__designTool__table table caption {
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-b);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-product__designTool__table table caption {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-product__designTool__table table th, .p-product__designTool__table table td {
  padding: 5px 10px;
  text-align: center;
}
.p-product__designTool__table table thead {
  border-bottom: 1px solid var(--color-line);
}
.p-product__designTool__table table thead th {
  color: var(--color-main);
  font-weight: var(--font-b);
}
.p-product__designTool__table table tbody th {
  font-weight: var(--font-r);
  position: relative;
}
.p-product__designTool__table table tbody th::after {
  content: ":";
  display: block;
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-product__designTool__table .c-note {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-product__designTool__table .c-note {
    margin-right: auto;
    margin-left: auto;
  }
}
.p-product__designTool__formula {
  border: 1px solid var(--color-line);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  margin-top: var(--marginTop);
  line-height: var(--lhM);
}
.p-product__designTool__formula .-fraction {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin: 0 5px;
}
.p-product__designTool__formula .-fraction span:first-child::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1px;
  background: var(--color-font);
}

.p-typename__dlBox {
  --dtWidth: 27%;
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox .c-radio {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.p-typename__dlBox .c-radio .-subTxt {
  font-size: 0.8em;
  padding-left: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox dt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox dd {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px 40px;
  }
}
.p-typename__divTable {
  display: grid;
  grid-template-columns: 18% 42% 20% 20%;
  min-width: 500px;
}
.p-typename__divTable__outer {
  overflow: auto;
}
.p-typename__divTable > div > *:first-child {
  background: var(--color-main);
  color: #fff;
  font-weight: var(--font-b);
  border-right: 1px solid #fff;
  border-bottom: none;
}
.p-typename__divTable > div > * {
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .p-typename__divTable > div > * {
    padding: 10px;
  }
}
.p-typename__divTable .-group__slot {
  background: var(--color-sub);
}
.p-typename__divTable .-group__slot > * {
  border-bottom: 1px solid #fff;
}
.p-typename__divTable .-group__parallel .cell_type2, .p-typename__divTable .-group__parallel .cell_type4, .p-typename__divTable .-group__series .cell_type2, .p-typename__divTable .-group__series .cell_type4 {
  height: 35px;
}
.p-typename__divTable .-group__module .module_div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--color-fontsub);
  width: 100%;
  height: 100%;
  text-align: left;
  border-radius: 5px;
  position: relative;
}
.p-typename__divTable .-group__module .module_div .module_select {
  padding-left: 10px;
}
.p-typename__divTable .-group__module .button_dropdown {
  height: 100%;
  width: 30px;
  position: absolute;
  top: 0;
  right: 0;
}
.p-typename__divTable .-group__module .button_dropdown::before {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.p-typename__divTable .-group__module .button_dropdown.icon-up-open::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
.p-typename__module-list-div {
  position: absolute;
  z-index: 500;
  background: #fff;
  margin-top: -5px;
  border-right: 1px solid var(--color-fontsub);
  border-left: 1px solid var(--color-fontsub);
  border-bottom: 1px solid var(--color-fontsub);
  border-radius: 0 0 5px 5px;
  padding: 5px;
}
.p-typename__module-list-div .item_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px 15px;
  background: var(--color-sub4);
  padding: 10px;
  font-size: 0.9em;
}
.p-typename__module-list-div .item_menu > *.selected {
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
}
@media screen and (min-width: 960px) {
  .p-typename__module-list-div .item_menu > * {
    cursor: pointer;
  }
  .p-typename__module-list-div .item_menu > *:hover {
    opacity: 0.7;
  }
}
.p-typename__module-list-div #list_contents {
  margin-top: 5px;
  padding: 5px 5px 5px;
  max-height: 300px;
  overflow: auto;
}
.p-typename__module-list-div #list_contents .item_element {
  padding: 3px 5px;
}
@media screen and (min-width: 960px) {
  .p-typename__module-list-div #list_contents .item_element {
    cursor: pointer;
  }
  .p-typename__module-list-div #list_contents .item_element:hover {
    background: var(--color-sub4);
  }
}
.p-typename__module_overview .c-btn-1 a, .p-typename__module_overview .c-btn-1 button {
  background: var(--color-sub);
  color: var(--color-main);
}
.p-typename__module_overview .c-btn-1 a::after, .p-typename__module_overview .c-btn-1 button::after {
  content: "";
  display: inline-block;
  width: 15px;
  aspect-ratio: 1/1;
  background: url(/assets/img/ico-arrow-blue.svg) no-repeat center center/contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-bottom: 3px;
}
.p-typename__module_overview .c-btn-1 a.icon-angle-double-up::after, .p-typename__module_overview .c-btn-1 button.icon-angle-double-up::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (min-width: 960px) {
  .p-typename__module_overview .c-btn-1 a:hover, .p-typename__module_overview .c-btn-1 button:hover {
    opacity: 0.7;
  }
}
.p-typename .outline {
  display: none;
  margin-top: var(--marginTop);
}
.p-typename .outline table {
  margin: 0 auto;
}
.p-typename__option__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.p-typename__option__list__item {
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.p-typename__option__list__item .-ttl {
  padding: 0 0 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #CBCBCB;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-main);
  font-weight: var(--font-b);
}
.p-typename__option__list__item .c-checkbox-1 label {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-typename__option__list__item .c-checkbox-1 label + p {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-typename__option__list__item .c-checkbox-1 + .c-checkbox-1 {
  margin-top: 5px;
}
.p-typename__option__list__item .c-list-1 {
  margin-top: 10px;
}
.p-typename__btnColumn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-typename__btnColumn {
    grid-template-columns: repeat(2, auto);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px 40px;
  }
  .p-typename__btnColumn > .c-btn-1.-next {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-typename__btnColumn .c-btn-1.-next button::after, .p-typename__btnColumn .c-btn-1.-close button::before, .p-typename__btnColumn .c-btn-1.-prev button::before {
  content: "";
  display: inline-block;
  width: 15px;
  aspect-ratio: 1/1;
  background: url(/assets/img/ico-arrow-white.svg) no-repeat center center/contain;
  margin-bottom: 3px;
}
.p-typename__btnColumn .c-btn-1.-close button::before, .p-typename__btnColumn .c-btn-1.-prev button::before {
  --arrow-scale: -1;
  -webkit-transform: scaleX(var(--arrow-scale));
          transform: scaleX(var(--arrow-scale));
}
@media screen and (min-width: 960px) {
  .p-typename__btnColumn .c-btn-1 a::before, .p-typename__btnColumn .c-btn-1 button::before {
    --arrow-scale: -1;
  }
  .p-typename__btnColumn .c-btn-1 a:hover::before, .p-typename__btnColumn .c-btn-1 a:hover::after, .p-typename__btnColumn .c-btn-1 button:hover::before, .p-typename__btnColumn .c-btn-1 button:hover::after {
    -webkit-animation: arrowAnime2 0.7s forwards;
            animation: arrowAnime2 0.7s forwards;
  }
}
.p-typename__orderMessage {
  font-size: 1.2em;
  font-weight: var(--font-b);
}
.p-typename__orderMessage.impossible {
  color: var(--color-red);
}
.p-typename__dlBox-2 + .p-typename__dlBox-2 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox-2 {
    display: grid;
    grid-template-columns: 20% 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 960px) {
  .p-typename__dlBox-2 {
    grid-template-columns: 250px 1fr;
  }
}
.p-typename__dlBox-2 > dt {
  padding: 10px;
  background: var(--color-sub4);
  border: 1px solid var(--color-main);
  font-weight: var(--font-b);
  text-align: center;
}
.p-typename__dlBox-2 > dt .-sub {
  display: block;
  font-weight: var(--font-r);
  font-size: 0.9em;
}
.p-typename__dlBox-2 > dd {
  border: 1px solid var(--color-main);
  border-top: none;
  padding: 10px;
}
.p-typename__dlBox-2:not(.-full) > dt {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox-2:not(.-full) > dt {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox-2:not(.-full) > dd {
    border-top: 1px solid var(--color-main);
    border-left: none;
    height: 100%;
  }
}
@media screen and (min-width: 960px) {
  .p-typename__dlBox-2:not(.-full) > dd {
    padding: 20px 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox-2:not(.-full) > dt, .p-typename__dlBox-2:not(.-full) > dd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox-2.-full {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox-2.-full > dt {
    padding: 20px;
  }
}
.p-typename__dlBox-2.-full > dd {
  padding: 30px var(--sidePadding);
}
.p-typename__dlBox-2.-full > dd > * + * {
  margin-top: 20px;
}
.p-typename__dlBox-3 {
  border: 1px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox-3 {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
    border-bottom: 1px solid var(--color-main);
  }
}
.p-typename__dlBox-3 + .p-typename__dlBox-3 {
  margin-top: var(--marginTop);
}
.p-typename__dlBox-3 dt {
  padding: 5px;
  background: var(--color-main);
  color: #fff;
  font-weight: var(--font-m);
  text-align: center;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox-3 dt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3px 10px;
    height: 100%;
  }
}
.p-typename__dlBox-3 dd {
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .p-typename__dlBox-3 dd {
    padding: 0;
  }
}
.p-typename__dlBox-3 dd .c-list-2 {
  margin: 5px 0;
}
.p-typename__dlBox-3 dd .c-list-2 li + li {
  margin-top: 5px;
}
.p-typename__slotTable {
  overflow: auto;
}
.p-typename__slotTable table {
  min-width: 500px;
  border-top: 1px solid var(--color-fontsub);
  border-bottom: 1px solid var(--color-fontsub);
}
.p-typename__slotTable table tr {
  border-left: 1px solid var(--color-fontsub);
  border-right: 1px solid var(--color-fontsub);
}
.p-typename__slotTable table tr > *:not(:first-child) {
  border-left: 1px solid #D9D9D9;
}
.p-typename__slotTable table tr + tr {
  border-top: 1px solid #D9D9D9;
}
.p-typename__slotTable table th, .p-typename__slotTable table td {
  padding: 5px;
  text-align: center;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .p-typename__slotTable table th, .p-typename__slotTable table td {
    min-width: 100px;
  }
}
.p-typename__slotTable table th {
  background: #F6F6F6;
  font-weight: var(--font-r);
}
.p-typename__img img {
  max-height: 215px;
}

.p-download__textarea {
  width: 100%;
  min-height: 150px;
  border: 1px solid var(--color-fontsub);
  border-radius: 5px;
  padding: 10px;
}
.p-download__tab {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 3px;
}
.p-download__tab .-ttl {
  font-size: 0.9em;
  font-weight: var(--font-b);
  color: var(--color-main);
  padding-left: 10px;
}
.p-download__tab .-tabList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  word-break: keep-all;
}
.p-download__tab .-tabList a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  color: var(--color-font);
}
@media screen and (min-width: 768px) {
  .p-download__tab .-tabList a {
    padding: 10px;
  }
}
.p-download__tab .-tabList a.-active {
  background: var(--color-main);
  color: #fff;
}
@media screen and (min-width: 960px) {
  .p-download__tab .-tabList a:not(.-active):hover {
    background: var(--color-sub);
  }
}
.p-download__tab__box {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
  overflow-y: scroll;
  border-bottom: 2px solid var(--color-sub);
}
@media screen and (min-width: 960px) {
  .p-download__tab__box {
    overflow-y: auto;
  }
}
.p-download__input {
  position: relative;
}
.p-download__input:has(> input:focus) .p-download__placeholder {
  opacity: 1;
  bottom: calc(100% - 2px);
}
.p-download__placeholder {
  display: block;
  word-break: keep-all;
  padding: 5px;
  background: var(--color-sub4);
  border-radius: 5px;
  position: absolute;
  bottom: calc(100% - 8px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-download__placeholder::after {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--color-sub4);
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-download__table.-scroll table {
  min-width: 600px;
}
.p-download__table th, .p-download__table td {
  padding: 5px 10px;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .p-download__table th, .p-download__table td {
    padding: 8px 10px;
  }
}
.p-download__table th a, .p-download__table td a {
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .p-download__table th a:hover, .p-download__table td a:hover {
    text-decoration: none;
  }
}
.p-download__table tbody tr:nth-child(even) {
  background: var(--color-sub4);
}
.p-download__table tbody tr:nth-child(even) td {
  background: none;
}
.p-download__svg {
  width: 10px;
  aspect-ratio: 1/1;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .p-download__svg {
    width: 13px;
  }
}
.p-download *:has(> .p-download__svg) {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.p-download *:has(> .p-download__svg)::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background: var(--color-sub);
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-download *:has(> .p-download__svg)::before {
    width: 25px;
  }
}
@media screen and (min-width: 960px) {
  .p-download *:has(> .p-download__svg):hover .p-download__svg {
    color: #fff;
  }
  .p-download *:has(> .p-download__svg):hover::before {
    background: var(--color-main);
  }
}
.p-download__table-2 table {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-download__table-2 table {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-download__table-2 table colgroup col {
    min-width: 180px;
  }
}

@media screen and (min-width: 768px) {
  .p-noiseSupport__flow .c-flow-1__imgAndTxt {
    grid-template-columns: 20% 1fr;
  }
}
@media screen and (min-width: 960px) {
  .p-noiseSupport__flow .c-flow-1__imgAndTxt {
    grid-template-columns: 25% 1fr;
  }
}
.p-noiseSupport__flowTxt-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-noiseSupport__flowTxt-1 {
    grid-template-columns: auto auto auto;
    gap: 0 20px;
    justify-items: start;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.p-noiseSupport__flowTxt-1 > p {
  display: inline-block;
}
.p-noiseSupport__flowTxt-1 > p:not(:nth-child(2)) {
  padding: 10px 20px;
  background: var(--color-sub4);
  border-radius: 10px;
  margin-top: 0 !important;
}
.p-noiseSupport__flowTxt-1 > p:nth-child(2) {
  font-size: 1.4em;
  color: var(--color-main);
  margin-top: 5px;
  font-family: var(--font-en);
}
.p-noiseSupport__flowTxt-2 > p:nth-child(2) {
  display: inline-block;
  background: var(--color-sub4);
  color: var(--color-main);
  padding: 10px 20px;
  border-radius: 10px;
}

.c-noise_sup_calendar > * {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 960px) {
  .c-noise_sup_calendar .c-tab {
    display: grid;
    grid-template-columns: 1fr auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
  }
  .c-noise_sup_calendar .c-tab::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: var(--color-sub);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.c-noise_sup_calendar .c-tab > div:first-child ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .c-noise_sup_calendar .c-tab > div:first-child ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .c-noise_sup_calendar .c-tab > div:first-child ul {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .c-noise_sup_calendar .c-tab > div:first-child ul {
    grid-template-columns: repeat(auto-fill, minmax(0, auto));
    position: relative;
  }
}
.c-noise_sup_calendar .c-tab > div:first-child ul li {
  text-align: center;
  line-height: var(--lhM);
  position: relative;
}
.c-noise_sup_calendar .c-tab > div:first-child ul li p, .c-noise_sup_calendar .c-tab > div:first-child ul li a, .c-noise_sup_calendar .c-tab > div:first-child ul li button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 5px 10px;
  font-weight: var(--font-m);
  border-left: 1px solid var(--color-sub);
  border-bottom: 1px solid var(--color-sub);
  color: var(--color-font);
  line-height: var(--lhM);
}
@media screen and (min-width: 960px) {
  .c-noise_sup_calendar .c-tab > div:first-child ul li p, .c-noise_sup_calendar .c-tab > div:first-child ul li a, .c-noise_sup_calendar .c-tab > div:first-child ul li button {
    padding: 10px 20px;
    border: none;
  }
  .c-noise_sup_calendar .c-tab > div:first-child ul li p:hover, .c-noise_sup_calendar .c-tab > div:first-child ul li a:hover, .c-noise_sup_calendar .c-tab > div:first-child ul li button:hover {
    background: var(--color-sub);
  }
}
.c-noise_sup_calendar .c-tab > div:first-child ul li p.c-tab_active, .c-noise_sup_calendar .c-tab > div:first-child ul li a.c-tab_active, .c-noise_sup_calendar .c-tab > div:first-child ul li button.c-tab_active {
  background: var(--color-main);
  color: #fff;
  font-weight: var(--font-b);
}
.c-noise_sup_calendar .c-tab > div:first-child ul li:first-child a, .c-noise_sup_calendar .c-tab > div:first-child ul li:first-child button, .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(2) a, .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(2) button {
  border-top: 1px solid var(--color-sub);
}
@media screen and (min-width: 960px) {
  .c-noise_sup_calendar .c-tab > div:first-child ul li:first-child a, .c-noise_sup_calendar .c-tab > div:first-child ul li:first-child button, .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(2) a, .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(2) button {
    border-top: none;
  }
}
@media screen and (min-width: 768px) {
  .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(3) a, .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(3) button {
    border-top: 1px solid var(--color-sub);
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(3) a, .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(3) button {
    border-top: none;
  }
}
.c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(even) a, .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(even) button, .c-noise_sup_calendar .c-tab > div:first-child ul li:last-child a, .c-noise_sup_calendar .c-tab > div:first-child ul li:last-child button {
  border-right: 1px solid var(--color-sub);
}
@media screen and (min-width: 768px) {
  .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(even) a, .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(even) button, .c-noise_sup_calendar .c-tab > div:first-child ul li:last-child a, .c-noise_sup_calendar .c-tab > div:first-child ul li:last-child button {
    border-right: none;
  }
}
@media screen and (min-width: 768px) {
  .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(3n) a, .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(3n) button, .c-noise_sup_calendar .c-tab > div:first-child ul li:last-child a, .c-noise_sup_calendar .c-tab > div:first-child ul li:last-child button {
    border-right: 1px solid var(--color-sub);
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(3n) a, .c-noise_sup_calendar .c-tab > div:first-child ul li:nth-child(3n) button, .c-noise_sup_calendar .c-tab > div:first-child ul li:last-child a, .c-noise_sup_calendar .c-tab > div:first-child ul li:last-child button {
    border-right: none;
  }
}
.c-noise_sup_calendar .c-tab > div:last-child {
  text-align: center;
}
.c-noise_sup_calendar .c-tab > div:last-child strong {
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .c-noise_sup_calendar .c-tab > div:last-child strong {
    font-size: 0.9em;
  }
}
.c-noise_sup_calendar table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.c-noise_sup_calendar table tr th, .c-noise_sup_calendar table tr td {
  text-align: center;
  padding: 0;
}
.c-noise_sup_calendar table tr th {
  background: var(--color-sub4);
  color: #333;
  padding: 5px 0;
  border: 1px solid var(--color-line);
}
@media screen and (min-width: 768px) {
  .c-noise_sup_calendar table tr th {
    padding: 10px 0;
  }
}
.c-noise_sup_calendar table tr td {
  background: #fff;
  border: 1px solid var(--color-line);
}
.c-noise_sup_calendar table .c-td_color01 {
  background: #f4f4f4;
}
.c-noise_sup_calendar table .c-td_holiday {
  background: #FBE9EA;
  color: #E4595B;
}
@media screen and (min-width: 768px) {
  .c-noise_sup_calendar table tbody td {
    padding: 0 0 10px;
  }
}
.c-noise_sup_calendar table td > span {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-noise_sup_calendar table td > span + span {
    margin-top: 5px;
  }
}
.c-noise_sup_calendar > P {
  font-size: 0.9em;
  margin-top: 10px;
}

.p-minor_change__dlBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}
.p-minor_change__dlBox + .p-minor_change__dlBox {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-minor_change__dlBox {
    --dtWidth: auto;
    grid-template-columns: var(--dtWidth) auto;
  }
}
.p-minor_change__dlBox dd {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 15px;
  padding-left: 15px;
}
.p-minor_change__dlBox dd::before {
  content: "→";
  display: inline-block;
}

.c-pagination {
  margin-top: 30px;
}