  /* 親要素のスタイル */
  .button-container {
    text-align: center; /* ボタンを中央に配置 */
    position: absolute;
    left: 0;
    right: 0;
    padding-top: 10px;
    z-index:1;
  }
  /* リンクボタンのスタイル */
  .button {
    display: inline-block;
    padding: 5px 15px;
    text-decoration: none;
    color: #4b4b4b;
    background-color: #e8e8e8;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-align: center; /* テキストを中央揃え */
    line-height: 5px; /* 高さを調整 */
    font-size: 1vmin; 
  }
  
  /* ホバー時のスタイル */
  .button:hover {
    background-color: #878787;
  }

  /* ボタン間の余白 */
  .button + .button {
    margin-left: 5px;
  }
  .center-right-align {
    display: flex;
    justify-content: flex-end; /* 右寄せ */
    align-items: center; /* 上下中央 */
}
@media screen and (max-width: 568px), screen and (max-height: 380px) {
    /* リンクボタンのスタイル */
    .button-container {
      text-align: center; /* ボタンを中央に配置 */
      position: absolute;
      left: 0;
      right: 0;
      padding-top: 0px;
    }
    .button {
      display: inline-block;
      padding: 2px 15px;
      text-decoration: none;
      color: #4b4b4b;
      background-color: #e8e8e8;
      border-radius: 8px;
      transition: background-color 0.3s ease;
      text-align: center; /* テキストを中央揃え */
      line-height: 5px; /* 高さを調整 */
      font-size: 1vmin; 
    }
}
#cover, #last_cover {
  background: #ffffff no-repeat;
  background-size: 100% 100%;
}

#cover {
  background-image: url("../img/cover-1.jpg");
}

#last_cover {
  padding: 0;
  background-image: url("../img/cover_last.jpg");
}
