@charset "utf-8";

/*-----------------------------------------------
    index
-----------------------------------------------*/
/* secList */
.secList{
    padding-top: 4rem;
}
.secList .boxFlexTop{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.secList .txtTop{
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
}
.secList .boxRight{
    display: flex;
    align-items: center;
    gap: 1.8rem;
}
.secList .boxRight .txt{
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    font-weight: bold;
}
.secList .boxEventFilterSelect{
    min-width: 22rem;
    padding: 2.3rem 2rem 2.3rem 2rem;
    border: 0.1rem solid var(--textColor);
    border-radius: 0.5rem;
    font-size: var(--pcFontSize16);
    background-color: var(--ColorWhite);
    background-image: linear-gradient(45deg, transparent 50%, var(--textColor) 50%), linear-gradient(135deg, var(--textColor) 50%, transparent 50%);
    background-position: calc(100% - 2rem) 50%, calc(100% - 1.5rem) 50%;
    background-size: 0.6rem 0.6rem, 0.6rem 0.6rem;
    background-repeat: no-repeat;
    appearance: none;
    -webkit-appearance: none;
}
.secList .boxList{
    margin-top: 4rem;
}
.secList .boxList .item{
    border-bottom: 0.1rem dotted var(--borderColor);
    position: relative;
}
.secList .boxList .boxLink{
    display: flex;
    padding: 4rem 0;
}
.secList .boxImgArea{
    position: relative;
}
.secList .boxList .boxImgNew{
    position: absolute;
    top: -3rem;
    left: 2rem;
}
.secList .boxImgArea .boxImg{
    width: 58rem;
    padding-top: 62.07%;
}
.secList .boxImgArea .boxImgNoEvent{
    position: absolute;
    top: 0;
    left: 0;
}
.secList .boxList .boxEventRight{
    width: calc(100% - 58rem - 6rem);
    margin-left: 6rem;
    padding-top: 4.7rem;
}
.secList .boxList .boxTag{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.secList .boxList .itemTag{
    height: 3.6rem;
    padding: 1rem 2rem;
    border-radius: 0.2rem;
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    color: var(--ColorWhite);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.secList .boxList .titEvent{
    font-size: var(--pcFontSize26);
    line-height: var(--pcLineHeight26_42);
    letter-spacing: var(--pcLetterSpacing26_50);
    font-weight: bold;
    margin-top:1.6rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 8.4rem;
}
.secList .boxList .txtDate{
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_30);
    letter-spacing: var(--pcLetterSpacing16_50);
    margin-top: 1.2rem;
}
.secList .boxList .txtPlace{
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_30);
    letter-spacing: var(--pcLetterSpacing16_50);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: 9rem;
}
.secList .boxList .boxLinkArrow{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: absolute;
    bottom: 3.7rem;
    right: 0;
}
.secList .boxList .txtArrow{
    font-size: var(--pcFontSize16);
    font-weight: bold;
}
.secList .boxList .imgArrow{
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--ColorWhite);
    border: 0.1rem solid var(--textColor);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease-out;
}
.secList .boxLink:hover .imgArrow{
    background: var(--textColor);
}
.secList .boxLink:hover .imgArrow img{
    filter: brightness(0) invert(1);
}
@media only screen and (max-width:1215px){
    .secList{
        padding-top: 2.5rem;
    }
    .secList .boxFlexTop{
        flex-direction: column;
        align-items: flex-start;
    }
    .secList .txtTop{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_22);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secList .boxRight{
        width: 100%;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 2.5rem;
    }
    .secList .boxRight .txt{
        width: 10rem;
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secList .boxFilter{
        width: calc(100% - 10rem - 0.8rem);
    }
    .secList .boxEventFilterSelect{
        width: 100%;
        min-width: unset;
        padding: 2rem 1.5rem 1.9rem 1.5rem;
        font-size: var(--spFontSize12);
    }
    .secList .boxList{
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 4.7rem;
    }
    .secList .boxList .item{
        border-bottom: unset;
    }
    .secList .boxList .item:first-child{
        padding-top: 0;
    }
    .secList .boxList .boxLink{
        padding: 0 0 2.6rem;
        flex-direction: column;
    }
    .secList .boxList .boxImgNew{
        width: 6.2rem;
        top: unset;
        bottom: -1rem;
        left: 0.9rem;
    }
    .secList .boxImgArea .boxImg{
        width: 100%;
        padding-top: 62.07%;
    }
    .secList .boxList .boxEventRight{
        width: 100%;
        margin-left: 0;
        padding-top: 1rem;
    }
    .secList .boxList .boxTag{
        gap: 0.3rem;
    }
    .secList .boxList .itemTag{
        height: 2.7rem;
        padding: 0.8rem 1rem;
        border-radius: 0.2rem;
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secList .boxList .titEvent{
        font-size: var(--spFontSize18);
        line-height: var(--spLineHeight18_28);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 1rem;
        -webkit-line-clamp: 2;
        max-height: 5.6rem;
    }
    .secList .boxList .txtDate{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_24);
        letter-spacing: var(--pcLetterSpacing0);
        margin-top: 0.9rem;
    }
    .secList .boxList .txtPlace{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_24);
        letter-spacing: var(--pcLetterSpacing0);
    }
    .secList .boxList .item::after{
        content: '';
        width: calc(100% - 11.4rem - 1rem);
        height: 0.1rem;
        background: var(--borderColor);
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .secList .boxList .boxLinkArrow{
        gap: 0.9rem;
        bottom: -1.7rem;
        right: 0;
    }
    .secList .boxList .txtArrow{
        font-size: var(--spFontSize14);
    }
    .secList .boxList .imgArrow{
        width: 3.5rem;
        height: 3.5rem;
    }
    .secList .boxList .imgArrow img{
        width: 1.3rem;
    }
}

/*-----------------------------------------------
    details
-----------------------------------------------*/
/* secDetails */
.secDetails{
    padding-top: 6rem;
}
.secDetails .boxFlexTop{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.secDetails .boxTag{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.secDetails .itemTag{
    height: 3.6rem;
    padding: 1rem 2rem;
    border-radius: 0.2rem;
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    color: var(--ColorWhite);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.secDetails .txtDate{
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_32);
    letter-spacing: var(--pcLetterSpacing16_50);
}
.secDetails .titEvent{
    font-size: var(--pcFontSize40);
    line-height: var(--pcLineHeight40_60);
    font-weight: bold;
    margin-top: 2rem;
}
.secDetails .txtPlace{
    font-size: var(--pcFontSize20);
    line-height: var(--pcLineHeight20_30);
    letter-spacing: var(--pcLetterSpacing20_50);
    font-weight: bold;
    margin-top: 1.8rem;
}
.secDetails .boxNoEvent{
    width: 100%;
    padding: 5rem 0;
    background: var(--cmnTitBg);
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_32);
    letter-spacing: var(--pcLetterSpacing16_50);
    font-weight: bold;
    text-align: center;
    margin-top: 5rem;
}
.secDetails .boxNoEvent .link{
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}
.secDetails .boxImg{
    width: 100%;
    padding-top: 57.972%;
    margin-top: 5rem;
}
.secDetails .boxTableInfo{
    width: 100%;
    border-collapse: collapse;
    border: 0.1rem solid var(--borderColor);
    margin-top: 5rem;
}
.secDetails .boxTableInfo .boxTr{
    border-top: 0.1rem solid var(--borderColor);
}
.secDetails .boxTableInfo .boxTr:first-child{
    border-top: none;
}
.secDetails .boxTableInfo .boxTh{
    width: 20rem;
    padding: 2.4rem 2rem;
    background: var(--cmnTitBg);
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_32);
    letter-spacing: var(--pcLetterSpacing16_50);
    font-weight: bold;
    text-align: left;
    vertical-align: top;
}
.secDetails .boxTableInfo .boxTd{
    padding: 2.4rem 2rem;
    background: var(--ColorWhite);
    border-left: 0.1rem solid var(--borderColor);
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_32);
    letter-spacing: var(--pcLetterSpacing16_50);
    vertical-align: top;
}
.secDetails .boxTableInfo .boxTd .linkMap{
    color: var(--keyColor);
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}
.secDetails .boxImgBnr{
    display: block;
    margin-top: 5rem;
    text-align: center;
}
@media only screen and (max-width:1215px){
    .secDetails{
        padding-top: 2rem;
    }
    .secDetails .boxFlexTop{
        gap: 0.9rem;
    }
    .secDetails .boxTag{
        gap: 0.3rem;
    }
    .secDetails .itemTag{
        height: 2.7rem;
        padding: 0.8rem 1rem;
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secDetails .txtDate{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_22);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secDetails .titEvent{
        font-size: var(--spFontSize18);
        line-height: var(--spLineHeight18_28);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 1rem;
    }
    .secDetails .txtPlace{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_24);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 0.8rem;
    }
    .secDetails .boxNoEvent{
        padding: 2rem 1.5rem;
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_20);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 3rem;
    }
    .secDetails .boxImg{
        margin-top: 2rem;
    }
    .secDetails .boxTableInfo{
        margin-top: 2rem;
    }
    .secDetails .boxTableInfo .boxTh{
        width: 10rem;
        padding: 2.6rem 1rem 2.6rem 2rem;
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_20);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secDetails .boxTableInfo .boxTd{
        padding: 1rem 1rem;
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_20);
        letter-spacing: var(--spLetterSpacing0);
        vertical-align: middle;
    }
    .secDetails .boxImgBnr{
        margin-top: 3rem;
    }
}

/* secEditor */
.secEditor{
    margin-top: 8rem;
    padding-bottom: 8rem;
    border-bottom: 0.1rem dotted var(--borderColor);
}
@media only screen and (max-width:1215px){
    .secEditor{
        margin-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* secAccess */
.secAccess{
    margin-top: 8rem;
}
.secAccess .boxMap{
    margin-top: 2rem;
    position: relative;
    width: 100%;
    padding-top: 32.609%;
    overflow: hidden;
}
.secAccess .boxMap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.secAccess .txtPlace{
    font-size: var(--pcFontSize30);
    line-height: var(--pcLineHeight30_42);
    letter-spacing: var(--pcLetterSpacing20_50);
    font-weight: bold;
    margin-top: 4.5rem;
}
.secAccess .txtAccess{
    font-size: var(--pcFontSize20);
    letter-spacing: var(--pcLetterSpacing20_50);
    font-weight: bold;
    text-align: center;
    position: relative;
    display: table;
    margin: 7.2rem auto 0;
}
.secAccess .txtAccess::after,
.secAccess .txtAccess::before{
    content: '';
    width: 1.1rem;
    height: 2.9rem;
    position: absolute;
    top: 0.5rem;
    left: -3rem;
}
.secAccess .txtAccess::before{
    left: unset;
    right: -3rem;
}
.secAccess .txtAccess.lazyloaded::after{
    background: url(../img/common/imgTxtDecorationLeft.png) center top / cover;
}
.secAccess .txtAccess.lazyloaded::before{
    background: url(../img/common/imgTxtDecorationRight.png) center top / cover;
}
.secAccess .txtAccess .inner{
    position: relative;
}
.secAccess .txtAccess .inner::after{
    content: '';
    width: 100%;
    height: 0.8rem;
    background: var(--ColorYellow);
    position: absolute;
    bottom: -0.1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.secAccess .secCmnBtnForm{
    margin-top: 3.7rem;
}
@media only screen and (max-width:1215px){
    .secAccess{
        margin-top: 2.9rem;
    }
    .secAccess .boxMap{
        margin-top: 1rem;
        padding-top: 77.615%;
    }
    .secAccess .txtPlace{
        font-size: var(--spFontSize20);
        line-height: var(--spLineHeight20_30);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 3rem;
    }
    .secAccess .txtAccess{
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing0);
        margin: 1.9rem auto 0;
    }
    .secAccess .txtAccess::after,
    .secAccess .txtAccess::before{
        width: 0.8rem;
        height: 1.9rem;
        top: 0.5rem;
        left: -3rem;
    }
    .secAccess .txtAccess::before{
        left: unset;
        right: -3rem;
    }
    .secAccess .txtAccess .inner::after{
        height: 0.6rem;
        bottom: -0.1rem;
    }
    .secAccess .secCmnBtnForm{
        margin-top: 2rem;
    }
}

@media only screen and (max-width:1215px){
    #footer .boxFooterBottom{
        margin-bottom: 0;
    }
    .secCmnBtnFormTop .cmnBtnFormTop .icoFormTop{
        left: 7rem;
    }
}
@media only screen and (max-width:370px){
    .secCmnBtnFormTop .cmnBtnFormTop .icoFormTop{
        left: 6rem;
    }
}
@media only screen and (max-width:350px){
    .secCmnBtnFormTop .cmnBtnFormTop .icoFormTop{
        left: 5rem;
    }
}