@charset "UTF-8";
/* 基本リセット */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  color : #ffffff;
}

.background{
    justify-content: center;
    align-items: center;
    background : url(gaso.jpg) center center / cover no-repeat fixed padding-box border-box transparent;
}

.overlay{
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7); /* 背景を少し暗くしてテキストを読みやすくする */
}

.main-header h1{
    font-size: 2.5em;
    color: #d4af37;
    margin-bottom: 0.5em;
}

.main-header h2{
    font-size: 1.2em;
    color: #d4af37;
    margin-bottom: 1em;
}

.title-line{
    width: 80%;
    height: 2px;
    background-color: #d4af37;
    margin: 0.5em auto;
}

.flex-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 1000px; /* 幅を1000pxに指定 */
    margin: 0 auto; /* コンテナを中央に配置 */
}

.flex-item{
    width: 160px;
    text-align: center;
}

.flex-item img{
    width: 160px;
    height: auto;
    border: 0;
}

.flex-item p{
    margin-top: 10px;
    font-size: 12px;
    color: #ffffff;
}
  .two-line-height{
    height: 35px; /* 高さを設定 */
  background-color: rgba(100, 100, 100, 0.7); /* グレーの背景色を透明に設定 */
}

  .one-line-height{
    height: 15px; /* 高さを設定 */
    vertical-align : bottom;
    text-align: center;
  background-color: rgba(100, 100, 100, 0.7); /* グレーの背景色を透明に設定 */
  }
  .no-margin p{
    margin: 0; /* マージンをゼロに設定 */
  }
  .flex-item img:hover {
        transform: scale(1.05);
  }