@charset "UTF-8";

/*　----------------------------------------　

コンテンツ部分

------------------------------------------*/
h3 {
    font-size: 16px;
    line-height: 24px;
}

h2.mi_title1 {
    font-size: 28px;
    margin-bottom: 20px;
    background-color: #d3def1;
    padding: 10px;
    text-align: center;
}

.mi_item {
    color: #001f58;
    font-weight: 600;
    margin: 20px 0;
}

p.p_title {
    font-size:20px;
}

p.data_small {
    font-size: 12px;
    font-weight: normal;
    margin: 10px 0 20px 0;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

@media (max-width: 768px){
  .product-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }
}

.product-grid a{ color:inherit; text-decoration:none; display:block; }
.product-grid a > div{
  height:100%;
  border:1px solid #0073c9;
  padding:12px;
  box-sizing:border-box;
}

.product-grid a > div > span{
  display:block;
  background:#0073c9;
  color:#fff;
  font-weight:700;
  padding:8px 10px;
  margin:-12px -12px 10px; /* 盒の上端まで帯を伸ばす */
}

.product-grid img{ width:100%; height:auto; display:block; margin:0 0 10px; }
.product-grid p{ margin:0 0 6px; }
.product-grid p:last-child{ margin-bottom:0; }


.product-grid p{
  margin:0 0 6px;
  font-size:0.9em;
  white-space:nowrap;
}
.product-grid p:last-child{ margin-bottom:0; }

@supports (font-size: clamp(1px, 1vw, 1px)){
  .product-grid p{
    font-size:clamp(0.75em, 1.1vw, 0.9em);
  }
}


/*　関連情報--------------------　*/

.relation_area {
    border: 1px solid #cdcdcd;
    padding: 10px 5px 5px 15px;
}
.relation_ttl {
    font-size: 1.6rem;
    font-weight: bold;
    color: #1f518e;
    margin-bottom: 10px;
}
.relation_area_link ul li {
    margin-bottom: 10px;
    display: block;
}

/* ダウンロードボタン */
.dbtn {
  display: block;
  margin: 0 auto;  
  background: #df5213; /* 背景色 */
  color: #fff; /* 文字色 */
  padding: 16px 40px; /* 上下の余白、左右の余白 */
  text-decoration: none; /* デフォルトで入る下線を消す */
  text-align: center;
  width: 100%;
   max-width:650px;	
  border-radius: 30px; /* 角を丸くする */
  transition-property: opacity;
　-webkit-transition-property: opacity;
  transition-duration: .5s;
  -webkit-transition-duration: .5s;
}
.dbtn:hover {
  opacity: .7;
}