.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; ページの縦の中央に配置 */
	padding: 2% 0 5%;
  }

  .centered-container .btn {
	display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    color: #161515;
    border: 1px solid #A40303;
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 0 10px;
    width: 35%;
    position: relative;
    height: 60px;
    padding: 0;
  }

  .btn-square {
    background-color: #A40303;
    width: 70px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
  }

  /* 画像スタイル */
  .btn-square img {
    /*width: 60%;
    height: 60%;*/
  }
  button.btn.footer-btn span {
   	width: 100%;
  }

/* レスポンシブ対応（小さい画面サイズ用） */
@media (max-width: 768px) {
	.centered-container {
		flex-wrap: wrap;
    	padding: 5% 0 10%
	}

	.centered-container .btn {
    	width: 80%;
    	margin-bottom: 3%;
	}
}