@charset "utf-8";
.content_event {
  padding-block: 20px 30px;
}
.box_event {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 30px;
}
.event-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-inline: 30px;
}
.event-item {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  box-sizing: border-box;
  background-image: url(../images/event/bg_top.png), url(../images/event/bg_bottom.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top right, bottom left;
  border: 1px solid #acacac;
  position: relative;
  padding: 30px 69px;
  z-index: 0;
}
.event-item_img {
  width: 420px;
}
.event-item_img img {
  width: 100%;
  height: auto;
}
.event-item_title {
  color: #b60401;
  font-size: 20px;
  font-weight: bold;
  line-height: 26px;
}
.f_b {
  font-weight: bold;
}

/*------------------------------------------------------------
　カレンダー
-------------------------------------------------------------*/
.calendar {
  position: relative;
  width: 1140px;
  margin: 0 auto;
  padding: 40px 0;
  border: 2px solid #c18a2d;
  box-shadow: 0 2px 0 #fff inset, 0 -2px 0 #fff inset, 2px 0 0 #fff inset, -2px 0 0 #fff inset, 0 3px 0 #c18a2d inset,
    0 -3px 0 #c18a2d inset, 3px 0 0 #c18a2d inset, -3px 0 0 #c18a2d inset;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.calendar:before,
.calendar:after {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 200px;
  margin-top: -100px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 1%,
    rgba(255, 255, 255, 0.5) 25%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.5) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
}
.calendar:before {
  left: -2px;
}
.calendar:after {
  right: -2px;
}
.calendar * {
  box-sizing: border-box;
}
.calendar_ttl {
  margin-bottom: 40px;
  background: url(../images/event/calendar/calendar_ttl_bg.png) no-repeat center 35px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
}
.calendar_ttl span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.calendar_table {
  width: 1029px;
  margin: 0 auto;
}
.bold {
  font-weight: bold;
}
.red {
  color: #ff0000;
}
.orange {
  color: #ff6600;
}
.calendar_table tbody {
  border-top: 1px solid #a8a8a8;
  border-left: 1px solid #a8a8a8;
}
.calendar_table th,
.calendar_table td {
  width: 14%;
  text-align: center;
}
.calendar_table th {
  height: 20px;
  font-size: 12px;
  font-weight: normal;
}
.calendar_table td {
  padding: 0 8px 8px;
  border-right: 1px solid #a8a8a8;
  border-bottom: 1px solid #a8a8a8;
  background: rgb(248, 248, 248);
  background: linear-gradient(
    to bottom,
    rgba(248, 248, 248, 1) 1%,
    rgba(255, 255, 255, 1) 53%,
    rgba(255, 255, 255, 1) 99%
  );
}
.calendar_table td span {
  display: block;
  height: 30px;
  line-height: 30px;
}
.calendar_table tr > *:first-child {
  color: #ff0000;
}
.calendar_table tr > *:last-child {
  color: #008af2;
}
.calendar_event > * + * {
  margin-top: 4px;
}
.content_event > * + * {
  margin-top: 30px;
}
.event-topInfo {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}

.tit_calendar {
  font-size: 20px;
  text-align: center;
  background: url(../images/event/calendar/bg_tit.png) no-repeat center center;
  margin: 40px auto 30px;
}
