body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

/* ヘッダーのスタイル */
header {
    position: fixed; /* ヘッダーを固定 */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #eff4ef; /* ヘッダーの背景色 */
    color: white;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000; /* 他の要素より手前に表示 */
    box-sizing: border-box; /* paddingをwidthに含める */
}

header h1 {
    margin: 0;
    font-size: 1.2em;
}

/* フッターのスタイル */
footer {
    position: fixed; /* フッターを固定 */
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background-color: #2196f3; /* フッターの背景色を変更 */
    color: #6c757d; /* フッターの文字色を変更 */
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1000; /* 他の要素より手前に表示 */
    box-sizing: border-box; /* paddingをwidthに含める */
    display: flex; /* Flexboxレイアウトを適用 */
    justify-content: space-around; /* ボタンを均等に配置 */
}

footer a {
    display: block; /* リンクをブロック要素にする */
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 8px 0;
    flex-grow: 1; /* 各ボタンが均等に幅を取るように */
    font-size: 0.8em;
}

footer a:hover {
    background-color: #e9ecef;
    color: #495057;
}

footer a  > span{
    position: relative;
    bottom: -29px;
}
/* メインコンテンツのスタイル */
main {
    padding-top: 60px; /* ヘッダーの高さ分スペースを空ける */
    padding-bottom: 60px; /* フッターの高さ分スペースを空ける（調整） */
    max-width: 800px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.6;
}

main section {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

main section h2 {
    color: #4CAF50;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 0;
}
/*MenuBtn*/
.homeBtn{
  background: url(../img/home.png) no-repeat center
}

.couponBtn{
  background: url(../img/coupon.png) no-repeat center
}
.noticeBtn{
  background: url(../img/notice.png) no-repeat center
}
.loginBtn{
  background: url(../img/credit-card.png) no-repeat center
}
.menuBtn{
  background: url(../img/menu.png) no-repeat center
}

.pushBtn {
  margin: 20px;
  padding: 10px;
  background: #ea8e15;
  width: 200px;
}
