
/* event
------------------------------------------------------------*/

.event_list {
    display: flex;
    flex-wrap: wrap;
	/*justify-content:center;*/
    gap: 30px 0px;
    margin-top: 0%;
	margin-bottom: 5%;
}
.event_list li {
    padding-top: 1%;
    padding-right: 0%;
    padding-bottom: 1%;
    padding-left: 0%;
    /*border: 1px solid #E3E3E3;   */ 
    background-color: rgba(255,255,255,1.00);
}
.event_list > li {
    width: calc( ( 100% / 3 ) - 0px ); 
}
@media screen and (max-width: 991px) {
.event_list > li {
    width: calc( ( 100% / 2 ) - 0px ); 
}
}
@media screen and (max-width: 575px) {
.event_list > li {
    width: calc( 100% ); 
}
}
.event_list_day {
    font-size: 14px;
    font-feature-settings: "palt";
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    letter-spacing: 0.1em;
    color: rgba(146,146,146,1.00);
}
.event_list_ttl {
    font-size: 18px;
    font-feature-settings: "palt";
    padding-left: 5px;
    padding-right: 5px;
    letter-spacing: 0.1em;
    font-weight: bold;
}
.nav-below {	
	margin-bottom: 1%;	
	margin-top: 1%;
}

/* .move_bottom-lineを基点にします */
.move_bottom-line{
    display: inline-block;
    position: relative;
}
/* ::afterの擬似要素を作ります。 */
.move_bottom-line::after{
    content: "";
    position: absolute;
    bottom:0;
    left:0;
    width: 0;                   /* hoverしていない時の横幅は0に指定 */
    height: 10px;                /* 線の太さ */
    background-color: rgba(202,192,145,1.00);  /* 線色 */
    transition: .3s;            /* アニメーション時間 */
}
/* .move_bottom-lineがホバーされた時に線の横幅を100%にします */
.move_bottom-line:hover::after{
    width: 100%;
}


.event_ttl {
    font-size: 24px;
    padding-bottom: 5px;
    margin-bottom: 30px;
    font-weight: bold;
    font-feature-settings: "palt";
    color: rgba(202,192,145,1.00)
}
@media screen and (max-width: 575px) {
.event_ttl {
    font-size: 17px;
	margin-bottom: 0px;
	margin-top: 30px;
}
}
.event_box p {
  font-size: 16px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .event_box p {
    font-size: 14px;
  }
}

.photo_gallery_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
    margin-top: 30px;
    position: relative;
}

@media screen and (max-width: 575px) {
.photo_gallery_3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 10px;
}
}
.photo_gallery_4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
    margin-top: 30px;
}
@media screen and (max-width: 991px) {
.photo_gallery_4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 10px;
}
}
@media screen and (max-width: 575px) {
.photo_gallery_4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 10px;
}
}
/* トリミング
---------------------------------*/
.trimming {
  overflow: hidden;
  position: relative;
  padding-top: 65%;
  margin-bottom: 15px;
}
.trimming2 {
  overflow: hidden;
  position: relative;
  padding-top: 100%;
  margin-bottom: 15px;
}
.photo {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
