/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 25 2025 | 04:09:39 */
  .rows {
    display: grid;
  gap: 10px;
  font-family: sans-serif;
  font-size: 15px;
  width: max-content;   /* コンテンツ幅だけにする */
  margin: 100px auto;       /* 左右中央寄せ */ 
	  
  }

.bi{
	font-size:45px;
	
}
  .row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 8px;
    align-items: start;
  }
  .label {
    font-weight: bold;
    color: #555;
  }
  .content a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted #888;
  }
  .content a:hover {
    opacity: 0.8;
  }

@media screen and (max-width: 768px) {

	.bi{
	font-size:25px;
}
.row {
    display: grid;
    grid-template-columns: none;
    gap: 8px;
    align-items: start;
}
}