@charset "utf-8";
.header{
    z-index: 999;
    position: fixed;
    width: 100%;
}
/*====下層ページ共通のDJエリア====*/
.section__event{
    padding: 257px  5.3% 30px ;
    position: relative;
    background-image: url(../images/event-bg-sp.webp);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

@media screen and (min-width:769px) {
    .section__event{
        padding:  336px  12.5% 0;
        position: relative;
        background-image: url(../images/bg-event-pc.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        overflow: hidden;
    }
}/*pc769px*/

/*===================
archive
=====================*/
.section__archive{
    padding: 110px 4.2% ;
    background-image: url(../images/event-bg-sp.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.archive-ttlarea{
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-ttlarea img{
    width: 25%;
    max-width: 200px;

    
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}
    @keyframes yurayura {
        0% , 100%{
            transform: rotate(11deg);
        }
        50%{
            transform: rotate(-8deg);
        }
}

.archive-ttlarea img:last-of-type{
    animation: yurayura 3.5s linear infinite;
}
    @keyframes yurayura {
        0% , 100%{
            transform: rotate(8deg);
        }
        50%{
            transform: rotate(-8deg);
        }
}


.archive__ttl{
    color: var(--primary-yellow);
    text-align: center;
    text-shadow: 4px 4px 0px var(--primary-white);
    font-family: Montserrat;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1; 
}

.archive__subttl{
    color: var(--primary-yellow);
    text-align: center;
    font-family: Montserrat;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5; 
    margin-top: 6px;
}

/*過去のイベントフライヤー*/
.archive-grid{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2,1fr);/*スマホ2列*/
    grid-auto-flow: dense;/*児童で空きを埋める*/
    margin-top: 40px;
}

.archive-item img{
    width: 100%;
    height: auto;
    display: block;
}

.archive-item.full-width{
    grid-column: span 2;/*2列分*/
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

.archive-item:hover {
  animation: shake 0.3s ease;
}

/*モーダル*/
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--primary-white);
  padding: 2em;
  width: 90%;
  max-width: 600px;
  position: relative;
  color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
}

.modal-day{
    font-size: 2rem;  
    font-weight: 900;
}
    
.modal-day::before{
    display: inline-block;
    content: '';
    width: 4px;
    height: 16px;
    background-color: var(--primary-orange);
    text-align: center;
    margin-right: 4px;
}

.modal-ttl{
   font-size: 2.6rem;
   font-weight: 900;

}

.modal-dj{
    margin-bottom: 10px;
    font-size: 2.2rem;  
    font-weight: 900;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: var(--primary-orange);
  cursor: pointer;
}



/*SNSエリア*/
.sns__area{
    display: flex;
    margin-top: 80px;
    justify-content: space-between;
    align-items: end;
}

.sns-mitake01{
    width: 100%;
    max-width: 120px;
}

.sns-mitake02{
    display: none;
}

.sns__txt{
    color: var(--primary-white);
    text-align: right;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 16px;
}

.sns__items{
    margin: 11px 0 0 0;
    display: flex;
    justify-content: flex-end;
}

.sns__icon{
    width: 48px;
    height: 48px;
    background-color: var(--primary-white);
    border-radius: 8px;
    padding: 8px;
}

.sns__X{
    margin-right: 27px;
}

@media screen and (min-width:500px) {
    .section__archive{
        padding: 110px 8%;
    }
}
/*
@media screen and (min-width:768px) {
    .section__archive{
        padding: 125px 8%;
        background-image: url(../images/bg-event-pc.jpg);
    }

    .archive__ttl{
        font-size: 7.6rem;
}

.archive__subttl{
        font-size: 2.4rem;
    }
}
*/
@media screen and (min-width:768px) {
    .section__archive{
        padding: 180px 11.1% ;
    }

    .archive__ttl{
        font-size: 9.6rem;
    }

    .archive__subttl{
        font-size: 3.2rem;
    }

/*過去のイベントフライヤー*/
    .archive-grid{
        max-width: 960px;
        margin: 0 auto;
        gap: 16px;
        grid-template-columns: repeat(4,1fr);/*PC4列*/
        margin-top: 100px;
    }

    .archive-item.full-width{
    grid-column: span 2;/*3列分*/
    }
    
    
}

/*ここからSNS*/
@media screen and (min-width:769px) {
    .sns__area{
        display: flex;
        margin-top: 110px;
        justify-content: space-between;
        align-items: flex-start;
    }
        
    .sns-mitake02{
        width: 100%;
        max-width: 400px;
        display: block;
    }

    .sns-mitake01{
        display: none;
    }

    .sns__txt{
        font-size: 2rem;
    }

    .sns__items{
        margin: 27px 0 0 0;
    }

    .sns__icon{
        width: 80px;
        height: 80px;
    }

}/*pc769px