@charset "UTF-8";

/**
 * Waku Wwaku Base - Event Stylesheet
 *
 * - Event
 * - Entries
 * - Category
 * - Panel
 * - Summary
 *
 */


/* ----------------------------
	Event
---------------------------- */
.event {

}

/* Event Head
---------------------------- */
.event-head {
	margin-bottom: 8px;
    padding: 35px 0;
    width: 236px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/icon/icon-event.png);
    text-align: center;
    font-size: 18px;
}

@media screen and (max-width: 767px) {
	.event-head {
		margin-bottom: 0;
	    width: 100%;
		background-size: 32.5px auto;
	    font-size: 16px;
	}
}


/* Event Main
---------------------------- */
.event-main:after {
	content: "";
	display: block;
	clear: both;
}


/* Event Body
---------------------------- */
.event-body {
	margin-top: -56px;
	padding: 14px 24px 52px;
	border: 6px solid #42b7e9;
	width: 672px;
	float: right;
	box-sizing: border-box;
}

@media screen and (max-width: 767px) {
	.event-body {
		margin-top: 0;
		padding: 15px 15px 25px;
		border: 3px solid #42b7e9;
		width: 100%;
		float: none;
	}
}

/* Event Side
---------------------------- */
.event-side {
	width: 236px;
	float: left;
}

@media screen and (max-width: 767px) {
	.event-side {
		margin-top: 60px;
		width: 100%;
		float: none;
	}
}


/* ----------------------------
	Entries
---------------------------- */

/* Entries Head
---------------------------- */
.entries-head {
	padding: 12px 0 12px 40px;
	background-repeat: no-repeat;
	background-position: 2px center;
	background-image: url(../img/icon/icon-calendar.png);
	border-bottom: 1px solid;
	line-height: 1.25;
	font-size: 24px;
}

@media screen and (max-width: 767px) {
	.entries-head {
		padding: 8px 0 8px 20px;
		background-size: 14px auto;
		font-size: 18px;
	}
}


/* Entry
---------------------------- */
.entry {
	margin-top: 27px;
	position: relative;
}
.entry:after {
	content: "";
	display: block;
	clear: both;
}


/* Entry Image
---------------------------- */
.entry-image {
	width: 150px;
	float: left;
	overflow: hidden;
}
.entry-image a {
	display: block;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.entry-image a:hover {
	opacity: 0.6;
}

@media screen and (max-width: 767px) {
	.entry-image {
		margin-bottom: 20px;
		width: 100%;
		float: none;
		text-align: center;
	}
	.entry-image a:hover {
		opacity: 1;
	}
}

/* Entry No Image
---------------------------- */
.entry-noimage {
	display: block;
	height: 200px;
	position: relative;
}
.entry-noimage img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}



/* Entry Head
---------------------------- */
.entry-head {
	padding-left: 175px;
}
.entry-title a,
.entry-title span {
	display: block;
	margin-bottom: 18px;
	padding: 20px 20px 20px 42px;
	background-repeat: no-repeat;
	background-position: 14px center;
	background-color: #42b7e9;
	background-image: url(../img/icon/icon-calendar-white.png);
	line-height: 1.25;
	font-weight: bold;
	color: #fff;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.entry-title a:hover {
	opacity: 0.6;
}
.entry-date {
	margin-bottom: 18px;
	padding: 0 4px 8px;
	border-bottom: 1px solid #42b7e9;
	font-size: 14px;
	color: #18a9ec;
}

@media screen and (max-width: 767px) {
	.entry-head {
		padding-left: 0;
	}
	.entry-title a,
	.entry-title span {
		margin-bottom: 12px;
		padding: 10px 10px 10px 30px;
		background-position: 10px center;
		background-size: 12px auto;
	}
	.entry-title a:hover {
		opacity: 1;
	}
	.entry-date {
		margin-bottom: 12px;
		padding: 0 4px 4px;
		font-size: 13px;
	}
}


/* Entry Body
---------------------------- */
.entry-body {
	padding-left: 175px;
}
.entry-body:after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (max-width: 767px) {
	.entry-body {
		padding-left: 0;
	}
}


/* Entry Content
---------------------------- */
.entry-body *:first-child {
	margin-top: 0;
}
.entry-body p,
.entry-body ul,
.entry-body ol,
.entry-body blockquote {
	margin-top: 1.5em;
}
.entry-body h1,
.entry-body h2,
.entry-body h3,
.entry-body h4,
.entry-body h5,
.entry-body h6 {
	margin-top: 1.25em;
	margin-bottom: -0.5em;
	font-weight: bold;
}
.entry-body h1 {
	line-height: 1.25;
	font-size: 2em;
}
.entry-body h2 {
	line-height: 1.25;
	font-size: 1.8em;
}
.entry-body h3 {
	line-height: 1.25;
	font-size: 1.6em;
}
.entry-body h4 {
	line-height: 1.4;
	font-size: 1.4em;
}
.entry-body h5 {
	line-height: 1.4;
	font-size: 1.2em;
}
.entry-body h6 {
	font-size: 1em;
}
.entry-body ul,
.entry-body ol {
	padding-left: 2em;
}
.entry-body ul li {
	list-style: disc;
}
.entry-body ol li {
	list-style: decimal;
}
.entry-body blockquote {
	padding: 0.5em 1.25em;
	border-left: 5px solid #cecece;
	color: #888;
}
.entry-body em {
	font-weight: normal;
	font-style: italic;
}
.entry-body a {
	color: #42b7e9;
}
.entry-body a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	.entry-body blockquote {
		border-left: 3px solid #cecece;
	}
	.entry-body a:hover {
		text-decoration: none;
	}
}


/* Entry Detail
---------------------------- */
.entry-detail {
	margin-top: 30px;
	padding-left: 175px;
}
.entry-detail-head {
	margin-bottom: 24px;
	padding-bottom: 8px;
	padding-left: 6px;
	border-bottom: 1px solid;
	color: #42b7e9;
}
.entry-detail-body dl {
	padding-left: 12px;
	line-height: 1.25;
}
.entry-detail-body dl:after {
	content: "";
	display: block;
	clear: both;
}
.entry-detail-body dt {
	width: 56px;
	float: left;
	clear: both;
}
.entry-detail-body dd {
	padding-left: 56px;
	padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
	.entry-detail {
		margin-top: 20px;
		padding-left: 0;
	}
	.entry-detail-head {
		margin-bottom: 12px;
		padding-bottom: 4px;
		padding-left: 0;
		font-size: 15px;
	}
	.entry-detail-body dl {
		padding-left: 0;
	}
}


/* Entry More
---------------------------- */
.entry .btn-more {
	margin-top: 20px;
	padding-bottom: 6px;
	background-repeat: repeat-x;
	background-position: left bottom;
	background-image: url(../img/event/common/bg-dot.png);
	position: static;
}

@media screen and (max-width: 767px) {
	.entry .btn-more {
		margin-top: 10px;
		padding-bottom: 3px;
		background-size: auto 3px;
	}
}


/* ----------------------------
	Category
---------------------------- */
.category {
	margin-bottom: 38px;
}
.category-head {
	padding-left: 42px;
	background-repeat: no-repeat;
	background-position: 12px center;
	background-image: url(../img/icon/icon-tree.png);
	line-height: 1.25;
	font-size: 18px;
	color: #42b7e9;
}
.category-list {
	margin-top: 12px;
	padding-left: 10px;
}
.category-list li {
	margin-top: 8px;
	line-height: 1.25;
}
.category-list a {
	display: inline-block;
	padding-left: 20px;
	vertical-align: top;
	position: relative;
}
.category-list a:hover {
	text-decoration: underline;
}
.category-list a:before {
	content: "＃";
	color: #42b7e9;
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 767px) {
	.category {
		margin-bottom: 19px;
	}
	.category-head {
		padding-left: 24px;
		background-size: 16px auto;
		background-position: left center;
		font-size: 16px;
	}
	.category-list {
		margin-top: 8px;
		padding-left: 0;
	}
	.category-list li {
		margin-top: 0;
	}
	.category-list a {
		display: block;
		padding: 4px;
		padding-left: 20px;
	}
	.category-list a:hover {
		text-decoration: none;
	}
	.category-list a:before {
		top: 4px;
	}
}



/* ----------------------------
	Panel
---------------------------- */
.panel {
	margin-bottom: 38px;
	border: 6px solid #42b7e9;
}
.panel-head {
	padding-bottom: 6px;
	background: #42b7e9;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
}
.panel-body {
	padding: 10px 0;
}

@media screen and (max-width: 767px) {
	.panel {
		margin-bottom: 19px;
		border: 3px solid #42b7e9;
	}
	.panel-head {
		padding-bottom: 3px;
		font-size: 16px;
	}
}


/* ----------------------------
	Summary
---------------------------- */
.summary {
	margin-top: 20px;
	padding: 20px 14px 0;
	background-position: 7px top;
	background-repeat: repeat-x;
	background-image: url(../img/event/common/bg-dot.png);
}
.summary:first-child {
	margin-top: 0;
	padding-top: 0;
	background: none;
}
.summary-head {
	margin-bottom: 14px;
	border-bottom: 1px solid;
	line-height: 1.25;
	color: #42b7e9;
}
.summary-head a {
	display: block;
	padding: 8px 8px 8px 30px;
	background-repeat: no-repeat;
	background-position: 4px 7px;
	background-image: url(../img/icon/icon-calendar.png);
	background-size: 20px auto;
	color: #42b7e9;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.summary-head a:hover {
	opacity: 0.6;
}
.summary-body {
	padding-bottom: 32px;
	position: relative;
}
.summary-list {
	padding-left: 4px;
	line-height: 1.4;
	font-size: 14px;
}
.summary-list:after {
	content: "";
	display: block;
	clear: both;
}
.summary-list dt {
	width: 50px;
	float: left;
	clear: left;
}
.summary-list dd {
	padding-bottom: 6px;
	padding-left: 50px;
}
.summary-body .btn-more {
	right: -14px;
}

@media screen and (max-width: 767px) {
	.summary {
		margin-top: 15px;
		padding: 15px 15px 0;
		background-size: auto 3px;
	}
	.summary-head {
		margin-bottom: 10px;
	}
	.summary-head a {
		padding-left: 24px;
		background-position: left 8px;
		background-size: 14px auto;
	}
	.summary-head a:hover {
		opacity: 1;
	}
	.summary-body {
		padding-bottom: 27px;
		position: relative;
	}
	.summary-list {
		padding-left: 0;
		font-size: 13px;
	}
	.summary-list dd {
		padding-bottom: 4px;
	}
	.summary-body .btn-more {
		right: -15px;
	}

}


/* ----------------------------
	Button More
---------------------------- */
.btn-more {
	text-align: right;
	font-size: 13px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.btn-more a {
	display: inline-block;
	padding: 3px 0 2px 35px;
	width: 130px;
	background-repeat: no-repeat;
	background-position: 16px center;
	background-color: #42b7e9;
	background-image: url(../img/icon/icon-arrow-right.png);
	box-sizing: border-box;
	border-radius: 5px 0 0 0;
	vertical-align: top;
	text-align: left;
	font-weight: bold;
	color: #fff;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.btn-more a:hover {
	opacity: 0.6;
}

@media screen and (max-width: 767px) {
	.btn-more a {
		background-size: 8px auto;
		border-radius: 3px 0 0 0;
	}
	.btn-more a:hover {
		opacity: 1;
	}
}