/* style.css */

/* 全体 */
html{
  scroll-behavior: smooth;
}

body {
  margin-top: 10rem;
  font-family: "IPAex明朝", serif;
  background-color: #2A2F41;
  color: #E7E2C1;
}

/* 全体中央ぞろえ */
.container {
  padding: 1.5rem;
  text-align: center;
  color: #E7E2C1;
  font-family: "IPAex明朝", serif;
}

/* 出店案内 */
.section-title {
  /* margin-bottom: 2rem; */
  font-weight: bold;
  color: #E7E2C1;
}

/* 白いフレーム */
.frame {
  position: relative;
  margin: 0 auto 2rem auto;
  width: 80%;
  max-width: 50rem;
  padding: 0.375rem;
}

/* 営業時間ボックス */
.schedule-box {
  background: linear-gradient(90deg, rgba(47, 58, 98, 0.4), rgba(174, 143, 199, 0.4));
  padding: 0.5rem 1.5rem;
  border-radius: 0.23rem;
  font-family: "IPAex明朝", serif;
  color: #E7E2C1;
}

/* 営業時間テキスト */
.schedule-box p {
  margin: 0.125rem 0;
  line-height: 1.2;
}

.schedule-box,
.schedule-box .scheduls,
.schedule-box .scheduls p{
  text-align: center;
}


/* 営業時間タイトル */
.schedule-title {
  font-size: 1.2rem;
  margin-bottom: 0.375rem;
  font-weight: bold;
  color: #E7E2C1;
  text-align: center;
}

/* フレームの角 */
.corner {
  width: 1rem;
  height: 1rem;
  border: 0.125rem solid #E7E2C1;
  position: absolute;
}
.corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* 模擬店一覧タイトル */
.list-title {
  /* margin: 2.5rem 0 0.5rem; */
  font-weight: bold;
  text-align: center;
  /* padding: 1.5rem; */
  color: #E7E2C1;
  font-family: "IPAex明朝", serif;
}

/* 白い棒 */
.divider {
  border: 0.0625rem solid #E7E2C1;
  margin: 0 auto 2rem auto;
  width: 90%;
  max-width: 62.5rem;
}

/* エリアタイトル */
.area-title {
  /* margin-bottom: 1.5rem; */
  font-weight: bold;
  color: #E7E2C1;
  font-family: "IPAex明朝", serif;
}

/* 模擬店ボックス */
.shop-box {
  cursor: pointer;
  background: linear-gradient(90deg, rgba(47, 58, 98, 0.4), rgba(174, 143, 199, 0.4));
  margin: 0.75rem auto;
  padding: 1rem 1.5rem;
  border-left: 4px solid #E7E2C1;
  width: 80%;
  max-width: 50rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  font-family: "IPAex明朝", serif;
  color: #E7E2C1;
}

.shop-box:hover
{
  opacity: 0.7;
}

/* ➀切り替えボタン（全体中央寄せ） */
.frame {
    text-align: center;
    margin: 2rem auto;
}

/* ➁ボタン単体 */
.button12 {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0.5rem;
    background-color: #ad6299;   /* 通常時の背景色 */
    color: #E7E2C1;
    text-decoration: none;
    border-radius: 1.9rem;
    border: 1px solid #E7E2C1;
    transition: background-color 0.3s, transform 0.2s;
}

/* カーソルを合わせたとき */
.button12:hover {
    background-color: #c97ab3;   /* 明るく変化 */
    transform: scale(1.05);
}

/* 選択中ボタン */
.btn12-selected {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0.5rem;
    background-color: #E7E2C1;   /* 背景を反転 */
    color: #2A2F41;              /* 文字を暗く */
    text-decoration: none;
    border-radius: 1.9rem;
    font-weight: bold;
    border: 1px solid #ad6299;
}
