@charset "UTF-8";

/* year-schedule
---------------------------------------------------------------------------*/

/* .sec-title
------------------------------------*/
.sec-title {
	margin-bottom: 100px;
}

.sec-title p {
	margin-top: 30px;
}

/* .sec-event
------------------------------------*/
.sec-event {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto 30px;
	padding: 0 60px 120px;
}

.sec-event .other {
	position: absolute;
	bottom: 0;
	left: 60px;
	width: calc((100% - 120px) * 0.28);
	opacity: 0;
}

.sec-event .other:after {
	display: block;
	content: '';
	position: absolute;
	top: -50px;
	right: 10px;
	background: #FFFBC8;
	border-radius: 50%;
	width: 210px;
	height: 210px;
	z-index: -1;
}

.sec-event .other i {
	display: block;
	position: absolute;
	top: -90px;
	left: -15px;
}

.sec-event .other h2 {
	margin-bottom: 10px;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.12em;
}

.sec-event .other p {
	margin-bottom: 20px;
	font-size: 16px;
	text-align: justify;
	letter-spacing: 0.08em;
}

.sec-event .other li {
	margin-bottom: 10px;
	font-size: 13px;
	letter-spacing: 0.1em;
}

/* .event-list
------------------------------------*/
.event-list {
	float: left;
	width: 28%;
	margin-right: 8%;
}

.event-list:last-of-type {
	margin-right: 0;
}

.event-list li {
	margin-bottom: 80px;
}

.event-list figure {
/* 	background: url(../img/share/line-dot-l.svg) repeat-x left bottom; */
	margin-bottom: 34px;
	position: relative;
}

.event-list figure:after{
  content: '';
  position: absolute;
  bottom: -7px;
  left: -3%;
  width: 106%;
  height: 3px;
  background: #78C4E9;
	border-radius: 2px 2px 2px 2px;
}

.event-list figure img {
	border-radius: 20px 20px 0 0;
}

.event-list h2 {
	margin-bottom: 17px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.18em;
}

.event-list h2 span {
	display: block;
	font-size: 13px;
	font-weight: 600;
}

.event-list p {
	margin-bottom: 10px;
	font-size: 16px;
	text-align: justify;
	letter-spacing: 0.06em;
}

.event-list p:last-of-type {
	margin-bottom: 0;
}

/* .event-list - media query
-----------------------------------*/
@media (max-width: 1180px) {
	.event-list figure img { width: 100%; height: auto; }
}