@charset "UTF-8";


/* eventslist.php
 * *****************************************/

.p-eventslist .select_box {
	position: relative;
}
.p-eventslist select {
	position: absolute;
	right: 0;
	width: 150px;
	line-height: 1.3;
	padding: 12px 28px 12px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #000;
    border: 1px solid #BA9847;
    background: #fff url(../images/icon/select-arrow.webp) no-repeat;
    background-position: right center;
    background-size: 28px, 100%;
    font-size: 1em;
    border-radius: 0;
}
.p-eventslist .eventslist_box {
	
}
.eventslist:nth-of-type(n+2) {
	display: none;
}
.p-eventslist .month {
	display: inline-block;
	position: relative;
	padding: 0 0 0 75px;
}
.p-eventslist .month:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #BA9847;
	width: 60px;
	height: 1px;
}

ul.items li {
	padding: 18px 18px;
	border-bottom: 1px solid #BA9847;
}
ul.items li.head {
	background: #F7F4EC;
	border-top: 1px solid #BA9847;
	border-bottom: 1px solid #BA9847;
}
ul.items li .flex {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
ul.items li .flex .cat {
	width: 14%;
	padding-right: 18px;
}
ul.items li .flex .cat span {
	display: inline-block;
	padding: 5px 8px;
	border-radius: 3px;
	font-size: .7em;
	line-height: 1.2;
}
ul.items li .flex .cat span.cat_trial { /*体験クラス*/
	background: #FFC84D;
}
ul.items li .flex .cat span.cat_manifest {
	background: #1b3f8d;
	color: #FFF;
}
ul.items li .flex .cat span.cat_manifest_call {
	background: #1b3f8d;
	color: #FFF;
}
ul.items li .flex .cat span.cat_homapooja {
	background: #fc7805;
	color: #FFF;
}
ul.items li .flex .cat span.cat_peacehome {
	background: #47B750;
	color: #FFF;
}
ul.items li .flex .cat span.cat_ekamdeeksha {
	background: #A867F7;
	color: #FFF;
}
ul.items li .flex .cat span.cat_awakening {
	background: #785330;
	color: #FFF;
}
ul.items li .flex .cat span.cat_oneness {
	background: #cde4ef;
	color: #1b3f8d;
}
ul.items li .flex .cat span.cat_general {
	background: #B7476B;
	color: #FFF;
}
ul.items li .flex .cat span.cat_lfmeditation {
	background: #AEB747;
	color: #FFF;
}
ul.items li .flex .cat span.cat_foryoung {
	background: #6747B7;
	color: #FFF;
}
ul.items li .flex .cat span.cat_indiacourse {
	background: #B76747;
	color: #FFF;
}
ul.items li .flex .cat span.cat_seeker {
	background: #745D00;
	color: #FFF;
}
ul.items li .flex .cat span.cat_ekamevent {
	background: #FF6394;
    color: #FFF;
}
ul.items li .flex .cat span.cat_others {
	background: #ededed;
}

ul.items li .flex .date {
	width: 14%;
	min-width: 120px;
	text-align: left;
	padding-right: 18px;
}
ul.items li .flex .date span {
	display: block;
}
ul.items li .flex .program {
	width: 37%;
	text-align: left;
}
ul.items li .flex .program span {
	display: inline-block;
	line-height: 1.4;
}
ul.items li .flex .location {
	width: 15%;
	padding-right: 18px;
	font-size: .82em;
	text-align: left;
}
ul.items li .flex .location span.instructor {
	display: block;
	color: #BA9847;
	line-height: 1.4;
}
ul.items li .flex .add {
	width: 20%;
	padding-left: 18px;
	text-align: center;
}
ul.items li .flex .add span {
	display: block;
}
ul.items li .flex .add span:not(:first-child) {
	margin-top: 6px;
}
ul.items li .flex .add p.event_finish {
	font-weight: bold;
}

/*詳細を見るボタン*/
ul.items li .flex .add a.more {
	display: inline-block;
	position: relative;
	width: 100%;
	padding: 12px 35px 12px 18px;
	line-height: 1.4;
	border: 1px solid;
	box-shadow: 2px 2px 6px -1px rgb(19 71 52 / 30%) !important;
}
ul.items li .flex .add a.more:before {
	content: '';
	width: 10px;
	height: 10px;
	border: 0;
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
ul.items li .flex .add a.more:hover {
	opacity: 1;
	background: #BA9847;
	color: #FFF;
	box-shadow: 2px 2px 6px -1px rgb(19 71 52 / 30%) !important;
}
ul.items li .flex .add a.more:hover:before {
	border-top: solid 1px #FFF;
	border-right: solid 1px #FFF;
}

/* 詳細を見るボタン（直接決済）*/
ul.items li .flex .add a.more.payment {
	font-size: .8em;
	line-height: 1.4;
	padding: 12px 32px 12px 18px;
}

/*イベントなし*/
.noevents {
	width: 100%;
	background: #F1F0ED;
	padding: 60px 45px;
	display: flex;
	align-items: stretch;
	justify-content: center;
}
.noevents p.noevents_msg {
	text-align: center;
	font-size: 1.3em;
	font-family: serif;
}

.go_pastevents {
	text-align: right;
	margin: 12px 12px 0 0;
}
.go_pastevents a {
	text-decoration: underline;
}

.eventslist_box p.drag {
	display: none;
}

@media screen and (max-width: 1194px) {
	ul.items {
		font-size: .9em;
	}
	ul.items li .flex > div:last-child {
		padding-right: 0 !important;
	}
	ul.items li .flex .cat span {
		letter-spacing: -.08em;
	}
	
	/*詳細を見るボタン*/
	ul.items li .flex .add a.more {
		padding: 12px 24px 12px 12px;
	}
	ul.items li .flex .add a.more:before {
		width: 8px;
		height: 8px;
	}
	ul.items li .flex .add a.more.payment {
		padding: 12px 24px 12px 18px;
	}
}
@media screen and (max-width: 768px) {
	.items_box {
		overflow-x: scroll;
	}
	
	ul.items {
		width: 860px;
		margin: 0 0 12px;
	}

	/*スライドできます*/
	.eventslist_box p.drag {
		display: block;
		text-align: right;
		margin: 0 30px 12px;
		line-height: 1;
		animation: SlideIn 1.6s infinite;
	}
	.eventslist_box p.drag span {
		font-weight: 500;
		font-size: .8em;
	}
	@keyframes SlideIn {
		0% {
			opacity: 0;
			transform: translateX(30px);
		}
		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}
	/*スライドできます end*/
}
@media screen and (max-width: 559px) {
	.p-eventslist .month {
		padding: 0 0 0 38px;
		margin-bottom: 18px;
	}
	.p-eventslist .month:before {
		width: 32px;
	}
	.p-eventslist select {
		width: 125px;
		padding: 9px 26px 9px 12px;
		background-size: 20px, 100%;
		line-height: 1;
	}
	ul.items li {
		padding: 15px 15px;
	}
}
@media screen and (max-width: 430px) {
	
	.p-eventslist .month {
		padding: 0 0 0 38px;
		margin-bottom: 18px;
	}
	.p-eventslist .month:before {
		width: 26px;
	}
	
	ul.items {
		width: 820px;
	}
	ul.items li .flex .program {
		width: 34%;
	}
	ul.items li .flex .add {
		width: 23%;
	}
	
	/*詳細を見るボタン*/
	ul.items li .flex .add a.more:before {
		width: 6px;
		height: 6px;
	}
	
	.noevents {
		padding: 60px 30px;
	}
	.noevents p.noevents_msg {
		font-size: 1.1em;
	}
}
@media screen and (max-width: 320px) {
	.p-eventslist .month {
		padding: 0 0 0 26px;
	}
	.p-eventslist .month:before {
		width: 20px;
	}
	.p-eventslist select {
		width: 116px;
		font-size: .9em;
	}
	
	ul.items {
		width: 680px;
	}
	ul.items li .flex .cat {
		width: 16%;
	}
	ul.items li .flex .date {
		min-width: 110px;
	}
	ul.items li .flex .program {
		width: 33%;
	}
	
	.noevents {
		padding: 45px 30px;
	}
	.noevents p.noevents_msg {
		font-size: 1em;
	}
}


/* archive-event.php
 * *****************************************/



/* single-event_default.php
 * *****************************************/

.contents_text {
	padding: 60px 60px 0;
	line-height: 1.8;
	position: relative;
}
.contents_text:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translate(-50%, 0);
	background: url(images/event/single_icon.png) no-repeat;
	background-size: 100%;
	width: 60px;
	height: 60px;
	z-index: 1;
}
.contents_text:after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	background: #BA9847;
	width: 100%;
	height: 1px;
}
.contents_text .btn_box {
	text-align: center;
	margin: 45px auto 0;
}
.contents_text dl.event_info {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 45px auto 0;
	padding: 45px 0 0;
	position: relative;
}
.contents_text dl.event_info:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	background: url(images/event/single_icon.png) no-repeat;
	background-size: 100%;
	width: 45px;
	height: 45px;
	z-index: 1;
}
.contents_text dl.event_info dt {
	padding: 30px;
	font-size: 1.3em;
}
.contents_text dl.event_info dt span {
	font-size: .9em;
	margin-left: 10px;
}
.contents_text dl.event_info dd {
	padding: 30px;
	font-size: 1.3em;
}
.contents_text dl.event_info dd span.date {
	color: #2D3675;
	font-weight: bold;
}
.contents_text dl.event_info dd span.time {
	color: #2D3675;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.contents_text {
		padding: 75px 0 0;
	}
}
@media screen and (max-width: 560px) {
	.contents_text dl.event_info {
		padding: 60px 0 0;
	}
	.contents_text dl.event_info dt,
	.contents_text dl.event_info dd {
		padding: 20px;
	}
}
@media screen and (max-width: 430px) {
	.contents_text dl.event_info {
	    flex-direction: column;
		padding: 90px 0 0;
	}
	.contents_text dl.event_info dt,
	.contents_text dl.event_info dd {
		display: block;
		width: 100%;
		text-align: center;
		padding: 0;
	}
	.contents_text dl.event_info dt span {
		margin: 0;
	}
}
@media screen and (max-width: 320px) {
	.contents_text:before {
		top: -22px;
		width: 45px;
		height: 45px;
	}
}

