/*テンプレートについて */
.template-menu {
  display: flex;
  align-items: center; /* ← 画像とテキストの縦位置を中央に揃える */
 
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.template-menu img {
  width: 130px;
  height: auto;
  flex-shrink: 0;
  margin-right: 20px; /* ← 画像とテキストの間に20pxの余白 */
  
}
.template-menu img:hover{
  filter: brightness(0.8);
}
.template-menu dl {
  /**background-color:#ffffff;**/
  margin-left: 30px ;
  flex: 1;
}
.template-menu dt {
  font-weight: bold;
  font-size: 18px;
 /* margin-bottom: 30px ;*/
  flex: 1;
}
.template-menu dd {
  font-weight: bold;
  font-size: 14px;
  margin: 10px ;
  flex: 1;
}
.template_illustrator::before {
  content: url('/html/user_data/assets/img/common/template/illustrator20.png');
  position: relative;
  top: 5px;
  margin: 0 0 0 0;
}
.template_Photoshop::before {
  content: url('/html/user_data/assets/img/common/template/Photoshop20.png');
  position: relative;
  top: 5px;
  margin: 0 0 0 0;
}

.template_environment{
border: solid 1px #000; /* 実線、太さ1px、黒色 */
padding: 5px; /* 内側の余白 */
/* 幅 */
/* テキスト中央寄せ */

}

hr {
  border: none;
  border-top: 1px dashed #999;
}

@media screen and (max-width: 768px) {
.template-menu {
flex-direction: column;  /* スマホでは縦並び */
padding: 0;
}
.template-menu ul {
float: left;
padding: auto;
}
.template-menu dl {
margin-left: 0px ;  
}
.template-menu dt {
font-size: 13px;
margin-top:20px;
}
.template-menu dd {
  font-size: 12px;
}

}