@charset "UTF-8";

/* === 本文（コンテンツ） =============== */

:root {
  --date_color: #ed3030;
}

h1 {
  visibility: hidden;
  display: none;
}

h2 {
  text-align: center;
  margin: 35px 0 30px;
  font-size: min(7vw, 2rem);
}

main .container>h2:first-child {
  margin-top: 0;
}

/*　=== 出店エリア　================= */

h2.tit_kit,
h2.tit_ins,
h2.tit_mar {
  color: transparent;
  user-select: none;
  -webkit-user-select: none;
  padding: 12px 0;
}

h2.tit_kit {
  background: url(images/tit_kitchen.svg) no-repeat center;
}

h2.tit_ins {
  background: url(images/tit_insyoku.svg) no-repeat center;
}

h2.tit_mar {
  background: url(images/tit_marche.svg) no-repeat center;
}


.shop {
  background-color: #fff4c5;
  background-image: repeating-linear-gradient(135deg, transparent 0 8px, rgba(175, 4, 4, 0.08) 8px 16px), repeating-linear-gradient(-135deg, transparent 0 8px, rgba(175, 4, 4, 0.08) 8px 16px);
  padding: 30px 0 20px;
}

/* 分割 */
.box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.item {
  padding: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.item dl {
  margin-bottom: 0.5rem;
}

/* 店名 */
.item dt {
  margin-top: 0.5rem;
  border-bottom: 2px solid #05990f;
  font-size: 1rem;
  padding-bottom: 0.4rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
  color: #260f0f;
}

.item dt::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(images/flag.svg) no-repeat center;
  margin: auto 3px -5px 0;

}

.item dd {
  color: #650c0c;
  line-height: 1.6;
}

/* 出店日 */
.item .date {
  margin-bottom: 0;
  text-align: center;
  margin-top: auto;
}

.item .date span {
  font-size: 4vw;
  display: inline-block;
  background-color: var(--date_color);
  color: #fff;
  margin: 0 3px;
  padding: 0.4em 0.25em;
  border-radius: 50%;
}

.item .date span small {
  font-size: 0.6em;
}

/* 休みの日 */
.item .date span.close {
  background-color: #eeeeea;
}

.item .date span:last-child {
  margin: 0 0 0 5px;
}

/* 表示・非表示 */
.disp_pc {
  display: none;
}

/*　=== アクセス　================= */

.access {
  padding: 30px 0;
}

.access .box {
  display: block;
}

/* 注意書き */
.access .box>p {
  border: #b3ccb5 3px dotted;
  padding: 10px;
  line-height: 1.8;
}

/* 会場 */
.kaijou {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.kaijou span {
  background-color: #05990f;
  color: #fff;
  padding: 5px 10px 4px;
  margin-right: 10px;
}

.kaijou strong {
  color: inherit;
  font-size: 1.3em;
}

@media (min-width:600px) {

  /* 出店日 */
  .item .date span {
    line-height: 1.6;
  }
}

@media (min-width:750px) {

  .shop {
    padding: 40px 0 50px;
    background-image: repeating-linear-gradient(135deg, transparent 0 15px, rgba(175, 4, 4, 0.08) 15px 30px), repeating-linear-gradient(-135deg, transparent 0 15px, rgba(175, 4, 4, 0.08) 15px 30px);
  }

  .item dt::before {
    width: 30px;
    height: 30px;
    margin: auto 5px -8px 0;

  }

  /* 分割 */
  .box {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 25px;
  }

  .item {
    padding: 15px;
  }


  /* 表示・非表示 */
  .disp_sp {
    display: none;
  }

  .disp_pc {
    display: block;
  }

  /* 店名 */
  .item dt {
    font-size: 1.25rem;
  }

  /* 出店日 */
  .item .date {
    text-align: right;
  }

  .item .date span {
    font-size: 1rem;
    margin: 0 5px;
    padding: 5px 6px;
    line-height: 2;
  }

  /*　=== アクセス　================= */

  .access {
    padding: 40px 0 45px;
  }


}

@media (min-width:992px) {
  .access .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  /* 注意書き */
  .access .box>p {
    padding: 8px 0 5px 1rem;
    margin-top: 15px;
    margin-bottom: 2.5rem;
  }
}