@charset "utf-8";

.g-wrap .event_tab_area {
  font-weight: 700;
}

/*======================================================================
 * event_共通
======================================================================*/
.g-wrap .event_tab_area {
  margin: 100px auto;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1;
  max-width: 750px;
  white-space: nowrap;
}

.g-wrap .event_tab_area._calendar {
  margin-top: 0;
  margin-bottom: 80px;
}

.g-wrap .event_tab_list {
  display: flex;
}

.g-wrap .event_tab {
  width: calc(100%/3);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.g-wrap .event_tab:not(:first-child) {}

.g-wrap .event_tab:not(:first-child)::before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 26px);
  background: #004471;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.g-wrap .event_tab a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 20px 0 20px;
  width: calc(100% - 60px);
}

.g-wrap .event_tab._current a {
  background: #F2F5F8;
}

.g-wrap .event_tab span {
  display: block;
  width: 100%;
}

.g-wrap .event_tab span::before {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 20px;
}

.g-wrap .event_tab._all span::before {
  background-image: url(../images/event/event_btn_all.svg);
}

.g-wrap .event_tab._today span::before {
  background-image: url(../images/event/event_btn_today.svg);

}

.g-wrap .event_tab._calendar span::before {
  background-image: url(../images/event/event_btn_calendar.svg);
  transform: translateX(-3px);
  /*見かけ上調整*/
}

.g-wrap .event_tab._calendar span {
  transform: translateX(3px);
  /*見かけ上調整*/
}

@media (max-width: 1400px) {
  .g-wrap .event_tab_area {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .g-wrap .event_tab_area {
    font-size: 12px;
    margin: 50px auto 40px;
  }

  .g-wrap .event_tab_area._calendar {
    margin-bottom: 40px;
  }

  .g-wrap .event_tab_list {
    justify-content: space-between;
  }

  .g-wrap .event_tab {
    width: 31%;
  }

  .g-wrap .event_tab:not(:first-child)::before {
    left: -6.5%;
    height: calc(100% - 10px)
  }

  .g-wrap .event_tab a {
    border-radius: 12px;
    padding: 10px 0 12px;
    width: 100%;
  }

  .g-wrap .event_tab span::before {
    height: 34px;
    margin-bottom: 10px;
  }

  .g-wrap .event_tab._calendar {
    letter-spacing: -0.05em;
    font-feature-settings: "palt";
  }

  .g-wrap .event_tab._calendar span::before {
    transform: translateX(0);
    /*見かけ上調整*/
  }

  .g-wrap .event_tab._calendar span {
    transform: translateX(0);
    /*見かけ上調整*/
  }
}

/*======================================================================
 * shop_list
======================================================================*/
@media (max-width: 600px) {
  .g-wrap .shop_list {}

  .g-wrap .shop_item {
    width: 48%;
  }

  .g-wrap .shop_img {
    width: 100%;
  }

  .g-wrap .shop_text {
    width: 100%;
    margin-top: calc(8px * 1.5);
  }
}