/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 15 2026 | 15:29:59 */
/* フレックスボックスで使用するCSSは、まとめて、ここに記述 */

/* パターン１：一般的なレイアウトの表 */
.flex-box-basic {
  display: flex;
  flex-wrap: wrap;
  width: 100%;    /* 全体の幅（任意） */
	border-top: 1px solid #333;
  border-left: 1px solid #333;
}
.flex-box-basic-item {
  display: flex;
  align-items: center;   /* 垂直方向中央 */
  justify-content: center; /* 水平方向中央 */
  
  /* 3列にするための計算 */
  width: calc(100% / 3); 
	height:auto;
  
  box-sizing: border-box; /* 枠線を含めてサイズ計算 */
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;

	padding:10px;
}
