@charset "UTF-8";

.main_inner {
  overflow-x: hidden;
}
.p-contents {
  margin: 0 auto 150px;
  padding: 0 20px;
  font-family: 'Arimo', 'Noto Sans JP', Helvetica, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.p-firstView {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 60px;
}
.p-firstView__keyvisual {
  display: block;
}
.p-firstView__leadText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 15px;
}
.p-firstView__heading {
  font-size: 20px;
  font-weight: 600;
}
.p-section {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  margin-top: 60px;
}
.p-productBlock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 15px;
}
.p-productBlock__imageBox {
  display: grid;
  grid-template-columns: repeat(var(--imageBox-col, 1), minmax(0, 1fr));
  gap: 10px;
  margin: 15px 0;
}
.p-productBlock__name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}
.p-section__insertImage {
  padding: 20px 0;
}
.p-button {
  display: grid;
  place-items: center;
  width: var(--button-width, 210px);
  height: var(--button-width, 33px);
  margin: 0 auto;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: #000;
}
.p-linkArea {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  row-gap: 5px;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .p-productBlock__imageBox.--spCol2 {
    --imageBox-col: 2;
  }
  .p-productBlock__imageBox.--spCol3 {
    --imageBox-col: 3;
  }
  .p-productBlock__imageBox.--spCol4 {
    --imageBox-col: 4;
  }
  .--spOrder {
    order: -1;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px), print {
  #breadcrumbs {
    width: 140rem;
  }
  .p-contents {
    width: 990px;
  }
  .p-productBlock__imageBox.--pcCol2 {
    --imageBox-col: 2;
  }
  .p-productBlock__imageBox.--pcCol4 {
    --imageBox-col: 4;
  }
  .p-productBlock__imageBox.--pcCol3 {
    --imageBox-col: 3;
  }
  .p-button:hover,
  .p-linkArea > a:hover {
    opacity: 0.6;
  }
}