body {
    background-color: #fff5ee
   /* font-family: "BIZ UDGothic",system-ui*/
}


.containerimg {
    width: 150px;               /* ‰æ‘œƒTƒCƒY’²® */
    height: auto;
    border-radius: 8px;         /* ŠpŠÛi”CˆÓj */
  }



.container {
  display: flex;
  flex-direction: row; /* ‰¡•À‚ÑiƒfƒtƒHƒ‹ƒgj*/
  justify-content: flex-start; /* æ“ª‘µ‚¦‚Ícenter */
  align-items: center; /* Œð·Ž²(c) ’†‰› */
	gap: 5px;
  height: 100px;
  background: #f0f8ff; /* #f0f0f0 */
  /*font-family: "UD Digi Kyokasho N-R","BIZ UDGothic",system-ui*/
}
.item {
  display: flex;
  flex-direction: row; /* ‰¡•À‚ÑiƒfƒtƒHƒ‹ƒgj*/
  justify-content: flex-start; /* æ“ª‘µ‚¦‚Ícenter */
  align-items: center; /* Œð·Ž²(c) ’†‰› */
	gap: 5px;
  height: 100px;
  background: #f0f8ff; /* #EEFFFF */
  /*font-family: "UD Digi Kyokasho N-R","BIZ UDGothic",system-ui*/
}


/* 013 */
.button013 a {
    background: #f0f8ff;/*#f5fffa*/
    position: relative; /* inline */
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
    border-left: solid 5px #6bb6ff;
}
.button013 a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #6bb6ff;
    transition: .3s;
    left:0;
}
.button013 a:hover {
    color: #FFF;
}
.button013 a:hover:before {
    width: 100%;
    z-index: -1;
}