@charset "UTF-8";
/* ====================================
	製品トップ共通スタイル
 ==================================== */
/* 製品概要・基本情報 */
.prod-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
/* 製品概要・製品タイプ */
.prod-item:not(:first-child) {
  margin-top: 1em;
}
.product-type {
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  background-color: #D9D9D9;
  padding: .5em .4em;
  width: 135px;
  margin-right: .8em;
}
.prod-item .product-name {
  min-width: 170px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: .2em;
}
.prod-item .product-name span {
  margin-left: .5em;
  font-size: 1.2rem;
  font-weight: 300;
}
/* 製品ピクト個別スタイル */
ul.list-pict-icons li.police, ul.list-pict-icons li.bouhan {
  width: 100%;
  height: auto;
}
ul.list-pict-icons li.police img {
  width: 100%;
  max-width: 400px;
}
ul.list-pict-icons li.bouhan img {
  width: 100%;
  max-width: 280px;
}
/* 注釈内リンク */
#about ul.star a {
  text-decoration: underline;
}
/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {
  /* 製品概要・製品カラー */
  ul.list-prod-colors {
    margin-top: 1em;
  }
  /* ページャー */
  #pager {
    padding-top: 0;
  }
}
/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print, screen and (min-width: 768px) {
  /* 製品概要・製品タイプ */
  .prod-item:not(:first-child) {
    margin-top: 2rem;
  }
  .product-type {
    font-size: 1.3rem;
    width: 145px;
  }
  .prod-item .product-name {
    font-size: 1.8rem;
  }
  .prod-item .product-name span {
    font-size: 1.4rem;
  }
  /* 製品概要・製品カラー */
  ul.list-prod-colors {
    margin-top: 2rem;
  }
  /* 製品ピクト個別スタイル */
  ul.list-pict-icons li.police img {
    max-width: 500px;
  }
  ul.list-pict-icons li.bouhan img {
    max-width: 300px;
  }
  /* ページャー */
  #pager {
    padding-top: 9rem;
  }
}