<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*讌ｭ蜍呎｡亥�縺ｮ繝｡繝九Η繝ｼ繧｢繧､繝�Β*/
.item {
    position: relative;
}

.item span {          
    position: absolute;
    font-size: 0.8rem;
    font-weight: bold;
    color:white;
    top: 20%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
}

.item p {
    font-size: 0.8rem;
    font-weight: bold;  
    text-align: left;
    color: #432;
}

  /* 讌ｭ蜍吝�螳ｹ縺ｮ繝｡繝九Η繝ｼ繧ｰ繝ｪ繝�ラ */
  .grid-menu {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(120px, 150px));
    margin-top: 6%;
    margin-bottom: 50px;    
    width:auto;
    justify-content: center;
}

.big-box {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }


  /* 繝｢繝舌う繝ｫ迚�
------------------------------- */
@media (max-width: 599px) {

  /* 讌ｭ蜍吝�螳ｹ縺ｮ繝｡繝九Η繝ｼ繧ｰ繝ｪ繝�ラ */
  .grid-menu {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(120px, 150px));
    margin-top: 6%;
    margin-bottom: 50px;    
    width:auto;
    justify-content: center;
}

.big-box {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }


}</pre></body></html>