
/*-===============
section
===============-*/

section {
	position: relative;
	width: 100%;
	margin: 0 auto 100px;
	}
@media screen and (max-width: 1024px) {
section {
	margin: 0 auto 0;
	}
	}

.ss-event .ss-eventlistwrap{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
	}
@media screen and (max-width: 1024px) {
.ss-event .ss-eventlistwrap{
	flex-direction: column;
	}
	}

.ss-event .ss-eventlistwrap::after{
	content: "";
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
	height: 1px;
	z-index:10;
	background:#fff;
	}

.ss-event .ss-eventlistwrap .ss-eventlist{
	display: block;
	width: 50%;
	border-bottom:1px solid #777;
	aspect-ratio: 2 / 1;
	}
@media screen and (max-width: 1024px) {
.ss-event .ss-eventlistwrap .ss-eventlist{
	width: 100%;
	}
	}

.ss-event .ss-eventlistwrap .ss-eventlist:nth-child(odd){
	border-right: 1px solid #777;
	box-sizing: border-box;
	}
@media screen and (max-width: 1024px) {
.ss-event .ss-eventlistwrap .ss-eventlist:nth-child(odd){
	border-right: none;
	}
	}

.ss-event .ss-eventlistwrap .ss-eventlist a{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	flex-direction: row;
	width: 100%;
	height: 100%;
	align-items: stretch;
	transition: background-color .6s;
	}

.ss-event .ss-eventlistwrap .ss-eventlist a:hover{
	background-color:#f6f6f6;
	}

.ss-event .ss-eventlistwrap .ss-eventlist a .ss-textwrap{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: nowrap;
	flex-direction: column;
	width: 50%;
	border-right: 1px solid #f2f2f2;
	box-sizing: border-box;
	padding: 30px;
	}
@media screen and (max-width: 1024px) {
.ss-event .ss-eventlistwrap .ss-eventlist a .ss-textwrap{
	padding: 20px;
	}
	}

.ss-event .ss-eventlistwrap .ss-eventlist a .ss-textwrap p{
	font-size: 1.35em;
	line-height: 1.6em;
	text-decoration: none;
	}
@media screen and (max-width: 1024px) {
.ss-event .ss-eventlistwrap .ss-eventlist a .ss-textwrap p{
	font-size: 1.3em;
	line-height: 1.5em;
	}
	}

.ss-event .ss-eventlistwrap .ss-eventlist a .ss-textwrap p:last-child{
	margin-top:2em;
	font-size: 1em;
	}
@media screen and (max-width: 1024px) {
.ss-event .ss-eventlistwrap .ss-eventlist a .ss-textwrap p:last-child{
	font-size: 1.1em;
	}
	}

.ss-event .ss-eventlistwrap .ss-eventlist a .ss-imagewrap{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	}

.ss-event .ss-eventlistwrap .ss-eventlist a .ss-imagewrap .ss-images{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 86%;
	aspect-ratio: 1;
	}

.ss-event .ss-eventlistwrap .ss-eventlist a .ss-imagewrap .ss-image{
	width: 100%;
	height:100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	}


/*-===============
detail
===============-*/

.ss-calendar-header {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	height: 60px;
	margin-bottom: 0;
	position: relative;
	}
@media (max-width: 1024px) {
.ss-calendar-header {
	position: sticky;
	top: 0;
	justify-content: space-between;
	height: 60px;
	z-index:500;
	background:#fff;
	border-bottom: 1px solid #777;
	}
	}

#ss-currentMonth {
	display: flex;
	align-items: center;
	justify-content: center;
	}

.ss-currentyearText {
	width: 100px;
	text-align: center;
	display: inline-block;
	font-size: 1.2em;
	}
@media (max-width: 1024px) {
.ss-currentyearText {
	width: 60px;
	text-align: center;
	}
	}

.ss-currentmonthText {
	font-size: 2.2em;
	margin-left: 15px;
	margin-right: 15px;
	}
@media (max-width: 1024px) {
.ss-currentmonthText {
	font-size: 1.9em;
	}
	}
@media (max-width: 360px) {
.ss-currentmonthText {
	margin-left: 8px;
	margin-right: 8px;
	}
	}

.ss-currentdowText {
	width: 100px;
	text-align: center;
	display: inline-block;
	font-size: 1.2em;
	}
@media (max-width: 1024px) {
.ss-currentdowText {
	width: 60px;
	text-align: center;
	font-size: 1.2em;
	}
	}


/*-===============
#main-section
===============-*/

#ss-main-section {
	position:relative;
	margin-bottom: 80px;
	}
@media (max-width: 1024px) {
#ss-main-section {
	margin-bottom: 0;
	}
	}

#ss-main-section .ss-postwrap {
	position:relative;
	display: grid;
	grid-template-columns: .9fr 1.2fr .9fr;
	/*min-height: 700px;*/
	}
@media (max-width: 1024px) {
#ss-main-section .ss-postwrap {
	display: block;
	min-height: auto;
	}
	}

#ss-main-section .ss-postwrap .ss-titles{
	position: sticky;
	top: 60px;
	height: auto;
	/*height: calc(100dvh - 60px);*/
	padding-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	}
@media (max-width: 1024px) {
#ss-main-section .ss-postwrap .ss-titles{
	position: relative;
	top: auto;
	height: auto;
	padding-top: 0;
	}
	}

#ss-main-section .ss-postwrap .ss-photos{
	height: auto;
	/*height: 100%;*/
	padding-top: 30px;
	aspect-ratio: 4 / 5;
	}
@media (max-width: 1024px) {
#ss-main-section .ss-postwrap .ss-photos{
	padding-top: 0;
	aspect-ratio: auto;
	}
	}

#ss-main-section .ss-postwrap .ss-photos .ss-inner{
	width: 100%;
	}

#ss-main-section .ss-postwrap .ss-photos .ss-inner div{
	width: 100%;
	aspect-ratio: 4 / 5;
	}

#ss-main-section .ss-postwrap .ss-photos .ss-inner img{
	width: 100%;
	}

#ss-main-section .ss-postwrap .ss-details{
	position: sticky;
	top: 60px;
	height: auto;
	/*height: calc(100dvh - 60px);*/
	padding-top: 20px;
	}
@media (max-width: 1024px) {
#ss-main-section .ss-postwrap .ss-details{
	position: relative;
	top: auto;
	height: auto;
	padding-top: 0;
	}
	}


/*-===============
contents
===============-*/


.ss-postwrap .ss-titles p.ss-categoly{
	width: 100%;
	position: absolute;
	top: 30px;
	left: 0;
	font-size: .9em;
	text-align: center;
	height: 30px;
	color:#777;
	}
@media (max-width: 1024px) {
.ss-postwrap .ss-titles p.ss-categoly{
	top: auto;
	left: auto;
	position: relative;
	padding-top: 10px;
	line-height: 30px;
	height: 40px;
	}
	}

.ss-postwrap .ss-titles .ss-heading {
	width: 90%;
	}
@media (max-width: 1024px) {
.ss-postwrap .ss-titles .ss-heading {
	display: none;
	}
	}

.ss-postwrap .ss-titles .ss-heading h1{
	font-size: 2.2em;
	line-height: 1.3em;
	text-align: center;
	}

.ss-postwrap .ss-titles .ss-heading p{
	margin-top: .5em;
	font-size: 1.1em;
	text-align: center;
	color: #000;
	}

.ss-postwrap .ss-details .ss-heading {
	display: none;
	}
@media (max-width: 1024px) {
.ss-postwrap .ss-details .ss-heading {
	display: block;
	padding-top: 10px;
	margin: 0 auto;
	width: 86%;
	}
	}

.ss-postwrap .ss-details .ss-heading h1{
	font-size: 2.2em;
	text-align: center;
	line-height: 1.3em;
	}

.ss-postwrap .ss-details .ss-heading p{
	font-size: 1.2em;
	text-align: center;
	margin-top: .5em;
	}

.ss-postwrap .ss-details .ss-detailinner {
	margin: auto;
	width: 86%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	}
@media (max-width: 1024px) {
.ss-postwrap .ss-details .ss-detailinner {
	width: 86%;
	height: auto;
	display: block;
	}
	}

.ss-postwrap .ss-details .ss-detail {
	width: 100%;
	}
@media (max-width: 1024px) {
.ss-postwrap .ss-details .ss-detail {
	padding-top: 20px;
	}
	}

.ss-postwrap .ss-details .ss-detail p.ss-info{
	font-size: 1.05em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break:break-all;
	line-height: 1.7em;
	}
@media (max-width: 1024px) {
.ss-postwrap .ss-details .ss-detail p.ss-info{
	font-size: 1.2em;
	line-height: 1.9em;
	padding-top: 20px;
	}
	}

.ss-postwrap .ss-details .ss-detail .ss-link{
	width: 250px;
	height: 30px;
	margin: auto;
	margin-top:50px;
	}

.ss-postwrap .ss-details .ss-detail .ss-link a{
	width: 100%;
	height: 100%;
	border: 1px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .6s;
	}
@media (max-width: 1024px) {
.ss-postwrap .ss-details .ss-detail .ss-link a{
	font-size: 1.2em;
	}
	}

.ss-postwrap .ss-details .ss-detail .ss-link a:hover{
	background: #000;
	color: #fff !important;
	}


/*-===============
.imagewrap-post
===============-*/

.ss-imagewrap-post {
	position: relative;
	touch-action: pan-y;
	margin-bottom: 20px;
	}

.ss-images-post {
	user-select: none;
	-webkit-user-drag: none;
	transition: transform 0.4s ease;
	}

.ss-image-post {
	width: 100%;
	aspect-ratio: 4 / 5;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
	}

.ss-imagewrap-post .ss-indicator {
	display: none;
	}

@media (max-width: 1024px) {
.ss-imagewrap-post {
	width: 80%;
	margin: 0 auto 20px;
	}

.ss-images-post {
	display: flex;
	padding: 0;
	}

.ss-image-post {
	flex: 0 0 100%;
	border: 10px solid #fff;
	box-sizing: border-box;
	}

.ss-imagewrap-post .ss-indicator {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 10px;
	}

.ss-imagewrap-post .ss-indicator-line {
	width: 20px;
	height: 1px;
	transition: background-color 0.3s ease;
	background-color: #ccc;
	}

.ss-imagewrap-post .ss-indicator-line.ss-active {
	background-color: #000;
	}
	}

@media (min-width: 1025px) {
.ss-images-post {
	display: block;
	transform: none !important;
	}

.ss-image-post + .ss-image-post {
	margin-top: 30px;
	}
	}






