@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/********************************************************************
コンテンツ
********************************************************************/
.btn, a.btn, button.btn {
  line-height: 1.5;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 36px;
  font-size: 0.7rem;
  position: relative;
  margin: 0 auto;
  padding: 0.6rem 1.6rem;
}

.next,
.prev {
  display: flex;
  justify-content: center;
  align-items: center;
}

.next.hidden,
.prev.hidden {
  visibility: hidden;
}

.next .btn,
.prev .btn {
  color: #333;
  line-height: 1;
}

.prev::before {
  content: "";
  height: 20px;
  display: inline-block;
  -webkit-clip-path: polygon(0 0, 60% 50%, 0 100%, 30% 50%);
          clip-path: polygon(0 0, 60% 50%, 0 100%, 30% 50%);
  transform: rotate(180deg);
  aspect-ratio: 1;
  background-color: #333;
}

.next::after {
  content: "";
  height: 20px;
  display: inline-block;
  -webkit-clip-path: polygon(0 0, 60% 50%, 0 100%, 30% 50%);
          clip-path: polygon(0 0, 60% 50%, 0 100%, 30% 50%);
  aspect-ratio: 1;
  background-color: #333;
}

@media screen and (min-width: 768px) {
  .btn, a.btn, button.btn {
    font-size: 0.9rem;
  }
}
.bg_pink {
  background: #C2A15E;
}

.fair_area {
  width: 90%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  box-sizing: border-box;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .fair_area {
    width: 100%;
    min-width: 1000px;
    max-width: 1150px;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 0;
  }
}
.fair_title {
  width: 100%;
  color: #fff;
  font-size: 18px;
  padding: 6px 0 6px 1em;
  background-color: #3d2700;
  box-sizing: border-box;
}

.calender_area {
  margin: 0 20px 30px;
}

@media screen and (min-width: 960px) {
  .calender_area {
    margin: 0 0 30px;
  }
}
.month_txt {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.month_txt span {
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1;
}

.month_txt span:nth-of-type(1) {
  font-weight: bold;
}

.month_txt span:nth-of-type(2) {
  font-size: 26px;
}

@media screen and (min-width: 768px) {
  .month_txt span:nth-of-type(2) {
    font-size: 34px;
  }
}
.fair_list {
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .fair_list {
    width: 60%;
    min-width: 500px;
    margin-bottom: 0;
  }
}
.fair_list_inner {
  height: 400px;
  overflow: auto;
  padding: 5%;
  border: 1px solid #A795B4;
  border-top: none;
}

@media screen and (min-width: 768px) {
  .fair_list_inner {
    padding: 10px;
    /* border: 1px solid #A795B4; */
    border: none;
  }
}
.fair_itempage {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.fair_itempage_bottom {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #A795B4;
}

.fair_itempage img {
  width: 100%;
  max-width: initial;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.fair_itempage .date_title {
  font-weight: bold;
}

.fair_itempage .date {
  margin-bottom: 10px;
}

.fair_itempage .description {
  margin-bottom: 10px;
}

.classification {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.classification .icon {
  display: inline-block;
  padding: 1px 1em;
  margin: 0 0.5rem 10px 0;
  font-weight: bold;
  font-size: 12px;
  border: 2px solid #e56867;
  color: #e56867;
}

.classification .icon.selected {
  border: 2px solid #e56867;
  background: #e56867;
  color: #fff;
}

.calc_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 5%;
}

.calc_flex p {
  margin: 0 5px;
}

.fair_caption {
  /*width: 170px;*/
  font-size: 11px;
  letter-spacing: -0.5px;
  padding: 10px 0;
}

a.fair_more {
  width: 160px;
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 5px 0;
  color: #fff;
  border: 1px solid #C2A15E;
  margin: 0 auto;
  background-color: #C2A15E;
  transition: background-color 0.5s ease-out;
}

@media screen and (min-width: 768px) {
  a.fair_more:hover {
    color: #C2A15E;
    border: 1px solid #C2A15E;
    background-color: #fff;
  }
}
.calc_table {
  width: 100%;
  margin: 0 auto 20px !important;
}

@media screen and (min-width: 768px) {
  .calc_table {
    width: 90%;
    margin: 0 auto 20px !important;
  }
}
.calc_table th, .calc_table td {
  padding: 6px;
  text-align: center;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .calc_table th, .calc_table td {
    padding: 8px;
  }
}
.calc_table th, .calc_table td {
  vertical-align: middle;
  border-bottom: 1px solid #A795B4;
}

.calc_table .sun {
  color: #d50000;
}

.calc_table .sat {
  color: #202b8c;
}

.calc_table .is-today {
  background-color: #ff9966;
  color: #fff;
}

.calc_table .is-selected {
  background-color: #f3d5f7;
  color: #000;
}

.calc_table .is-disable {
  color: #c2c2c2;
  pointer-events: none;
}

.calc_table .is-usual {
  font-weight: bold;
}

.calc_table .is-limited {
  font-weight: bold;
  color: #fff;
  background-color: #e56867;
}

@media (min-width: 768px) {
  /* div[id^="limited"],
    div[id^="usual"] {
    padding-top: 160px;
    margin-top: -160px;
  } */
  .fair_itempage {
    width: 100%;
    margin-bottom: 20px;
  }
  .archive_fair_area img {
    width: 100%;
    display: block;
  }
  .fair_icon_wrapper {
    margin-top: 1rem;
    margin-bottom: 20px;
  }
  .fair_icon_wrapper span {
    display: inline-block;
    padding: 1px 1em;
    margin: 0 0.5rem 10px 0;
    font-weight: bold;
    color: #e56867;
    background: #fff;
    border: 2px solid #e56867;
  }
  .fair_icon_wrapper .selected {
    color: #fff;
    border: 2px solid #e56867;
    background: #e56867;
  }
}
@media screen and (max-width: 768px) {
  .fair_icon_wrapper {
    margin-top: 1rem;
  }
  .fair_icon_wrapper span {
    display: inline-block;
    padding: 1px 1em;
    margin: 0 0.5rem 10px 0;
    font-weight: bold;
    color: #e56867;
    background: #fff;
    border: 2px solid #e56867;
  }
  .fair_icon_wrapper .selected {
    color: #fff;
    border: 2px solid #e56867;
    background: #e56867;
  }
}
.fairpage_sub_title {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: normal;
}
@media print, screen and (min-width: 768px) {
  .fairpage_sub_title {
    font-size: 20px;
  }
}

.fairpage_title {
  display: block;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .fairpage_title {
    font-size: 26px;
    margin-bottom: 40px;
  }
}

@media print, screen and (min-width: 768px) {
  .fairpage_img {
    max-width: 30%;
  }
}

@media print, screen and (min-width: 768px) {
  .fairpage_txt {
    width: 65%;
  }
}

.fair_itempage p, .fair_itempage_bottom p {
  font-size: 14px;
}
@media print, screen and (min-width: 768px) {
  .fair_itempage p, .fair_itempage_bottom p {
    font-size: 16px;
  }
}

.fairpage_nittei span {
  background-color: #bda570;
  color: #fff;
  text-align: center;
  padding: 6px 15px;
}/*# sourceMappingURL=fair.css.map */