@charset "UTF-8";

/*--------------------------------------------------
**************************************************
トップ画像
**************************************************
--------------------------------------------------*/
div#sub_top .top_wrap .top_text {
  display: flex;
  top: 0;
  align-items: center;
  justify-content: center;
  color: #333;
}
div#sub_top .top_wrap .top_text h1{
  font-size: 20px;
}
/*--------------------------------------------------
**************************************************
イベント情報
**************************************************
--------------------------------------------------*/

div#event_info {
  width: 100%;
  height: auto;
  background: #faf8f8;
}
div#event_info .event_wrap {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
}
div#event_info .event_wrap .event_cont {
  position: relative;
  width: calc(100% - 20px);
  margin: 10px auto 50px auto;
}
div#event_info .event_wrap .event_cont::before {
  position: absolute;
  content: "";
  width: calc(100% - 40%);
  height: 3px;
  left: 0;
  right: 0;
  bottom: -15px;
  background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22point%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.04%205.1%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3B%7D.cls-2%7Bfill%3A%23bbb%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Crect%20class%3D%22cls-1%22%20width%3D%2215.04%22%20height%3D%225.1%22%2F%3E%3Ccircle%20class%3D%22cls-2%22%20cx%3D%222.5%22%20cy%3D%222.5%22%20r%3D%222%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: repeat;
  background-size: 10px;
  margin: auto;
}
div#event_info .event_wrap .event_cont:last-child::before {
  background: none;
}
div#event_info .event_wrap .event_cont .cont_title {
  background: #71da76;
  padding: 5px 20px;
}
div#event_info .event_wrap .event_cont .cont_title h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.15em;
}
div#event_info .event_wrap .event_cont .event_date {
  font-size: 14px;
  color: #333333;
  margin: 10px;
}
div#event_info .event_wrap .event_cont .event_inner {
  display: inline-block;
  align-items: center;
}
div#event_info .event_wrap .event_cont .event_inner span.event_photo {
  display: block;
  width: calc(100% - 40px);
  margin: 0 auto;
}
div#event_info .event_wrap .event_cont .event_inner .event_text {
  width: calc(100% - 40px);
  margin: 20px auto;
}
div#event_info .event_wrap .event_cont .event_inner .event_text span.sub_title {
  display: block;
  font-size: 15px;
  color: #378fcb;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
div#event_info .event_wrap .event_cont .event_inner .event_text span.text_cont {
  font-size: 12px;
  color: #333333;
}
div#event_info .event_wrap .event_cont .event_bth {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}
div#event_info .event_wrap .event_cont .event_bth a {
  display: inline-block;
  color: #fff;
  background: #e85050;
  border-radius: 17px;
  padding: 5px 20px;
  transition: opacity 1s;
}
div#event_info .event_wrap .event_cont .event_bth a:hover {
  opacity: 0.8;
}
