@charset "utf-8";

  .tab-group{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 10px;
}


.tab{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 273px;
    width: 100%;
    height: 58px;
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.5s ease;
    cursor: pointer;
    margin: 0 auto;
}

.tab>p {
    font-size: 18px;
}

.tab>p>strong {
    font-size: 25px;
    font-weight: 400;
}

.tab.shop01 {
    background-color: #A7191F;
    color: #fff;
    letter-spacing: 0.05em;
}

.tab.shop02 {
    background-color: #413B31;
    color: #fff;
}

.tab.shop01:hover {
  color: #A7191F;
  background-color: #fff;
}

.tab.shop02:hover {
  color: #413B31;
  background-color: #fff;
}

.panel{
  display:none;
}

.gjs-dashed .panel{
  display:block;
}

.tab.shop01.is-active{
  color: #A7191F;
  transition: all 0.5s ease-out;
  background-color: #fff;
}

.tab.shop02.is-active{
  color: #413B31;
  transition: all 0.5s ease-out;
  background-color: #fff;
}

.panel.is-show{
  display:block;
}



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 544px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

  .tab-group{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */