@charset "utf-8";
/* CSS Document */


/* ---------------------------------------------------------------------------------------------

   WHAT'S NEW（お知らせ一覧）※index.cssと常に合わせる必要あり

--------------------------------------------------------------------------------------------- */
#news ul li{
	width: 100%;
	border-bottom: 1px solid #ccc;
}
#news ul li a{
	display: block;
	padding: 15px;
}
#news ul li a:hover{
	background: #fff;
}

#news ul li a .day{/*新着日*/
	float: left;
	line-height: 1.5;
	margin-right: 15px;
	font-size: clamp(16px, 2vw, 18px);
    font-weight: bold;
    color: #f60;
}

#news ul li a .category{/*項目*/
	float: left;
	line-height: 1.5;
	margin-right: 15px;
	font-size: clamp(14px, 2vw, 16px);
	background: #f60;
	color: #fff;
	padding: 1px 15px 2.5px 15px;
	border-radius: 10em;
}

#news ul li a .detail{/*詳細文言*/
	float: left;
	line-height: 1.75;
	font-size: clamp(16px, 2vw, 18px);
}

#news ul li a .fa-arrow-right{
	float: right;
	font-size: clamp(24px, 3vw, 30px);
	line-height: 1.75;
	color: #f60;
}

@media screen and (max-width:1000px) {
    
#news ul li a{
	padding: 15px 10px;
}
    
#news ul li a .category{
    margin-bottom: 10px;
}
    
#news ul li a .fa-arrow-right{
    display: none;
}
}



/* ---------------------------------------------------------------------------------------------

   ANNUAL EVENT（年間イベント）

--------------------------------------------------------------------------------------------- */
.event-contents-wrap{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.event-contents-item{
    width: 47%;
    margin-bottom: 150px;/*6%*/
    position: relative;
}

.event-contents-item img{
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.event-contents-item h3{
    text-align: center;
	font-size: clamp(24px, 3vw, 30px);
    line-height: 1.5;
    margin-bottom: 25px;
    /*color: #069;*/
}

.event-detail{/*table*/
    margin: 25px 0;
}

.event-detail th,.event-detail td{
    padding: 15px;
    line-height: 1.5;
    vertical-align: middle;
	font-size: clamp(14px, 3vw, 16px);
}
.event-detail th.last,.event-detail td.last{
    border-bottom: 0;
}

.event-detail th{
    width: 25%;
    background: #e8d3c7;
    border-bottom: 0.5px solid #fff;
}
.event-detail td{
    border-bottom: 0.5px solid #999;
    background: #fff;
}

.annual-event-link{
    position: absolute;
    bottom: -5%;
    display: block;
    width: 100%;
    border: 1px solid #000;
    padding: 15px;
    border-radius: 25px;
    text-align: center;
    line-height: 1;
}
.annual-event-link span{
	font-size: clamp(16px, 2vw, 18px);
}


@media screen and (max-width:1200px) {
    
.event-detail th,.event-detail td{
    display: block;
    width: 100%;
}
    
.event-detail th{
    line-height: 1;
    padding: 10px 15px;
}
}

@media screen and (max-width:900px) {
    
.event-contents-item{
    width: 100%;
}
}

@media screen and (max-width:700px) {
    
.event-contents-item{
    margin-bottom: 100px;
}
}










































