﻿a.btn_01 {
    display: block;
    background: #e5007f;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 110px;
    margin: auto;
    padding: 0.3rem 1rem; /* 高さを低くするために上下のパディングを減らす */
    font-weight: bold;

    color: #fff;
    border-radius: 10px; /* 楕円から角が丸い長方形に変更 */
    transition: 0.5s;
}

a.btn_01:hover {
    color: #fff;
    background: #ef66b2;
}


.right-content {
    display: flex; /* フレックスボックスを使って要素を横並びにする */
    justify-content: flex-end; /* 右端に配置 */
    gap: 10px; /* ボタン間に少し間隔を設ける */
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 600px) {
    a.btn_01 {
        width: 100px; /* スマートフォンでの幅 */
        padding: 0.4rem 1rem; /* スマートフォンでの高さを低くする */
        font-size: 0.8rem; /* スマートフォンでのフォントサイズ */
    }
}


/* 店舗一覧ボタン（M-GARAGEマゼンタカラー統一） */
.shoplist-buttons {
  text-align: center;
  margin: 40px 0;
}

.shoplist-btn {
  display: inline-block;
  background-color: #000;         /* 背景：黒 */
  color: #fff;                    /* テキスト：白 */
  border: 2px solid #e5007f;      /* 枠線：マゼンタピンク */
  border-radius: 5px;
  padding: 12px 25px;
  margin: 10px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shoplist-btn:hover {
  background-color: #e5007f;      /* ホバー時：マゼンタ背景 */
  color: #fffeba;                 /* テキスト：淡い黄色（既存デザインに合わせ） */
}

/* スマホ用：ボタンを縦並びに */
@media (max-width: 767px) {
  .shoplist-btn {
    display: block;
    width: 80%;
    margin: 10px auto;
    font-size: 1em;
  }
}
