@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@388&display=swap');

/**********************************************/
/*メイン*/
/**********************************************/

main {
    margin-top: 30px;
}

/*リード文*/
.intro {
    margin-top: 30px;
    font-size: 3.6rem;
    font-weight: bold;
    color: #142474;
}
.read {
    margin-bottom: 40px;
    font-size: 1.8rem;
}
.read h2 {
    font-size: 3.6rem;
}


/*リスト*/
.news dl {
    margin: 0;
    padding: 10px;
    line-height: 140%;
    display: flex;
    flex-wrap: wrap;
    background: url("../img/line.png") repeat-x bottom center;

    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
.news dt {
    width: 160px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news dd {
    margin: 0;
    padding: 5px 10px 5px 20px;
    flex: 1;
}


/*トピックス*/
#topicsLsist dl {
    font-size: 1.8rem;
}

/*カレンダー*/
#eventlist {
    display: flex;
    flex-wrap: wrap;

    /*カラムの位置調整用*/
    width: calc(100% + 20px);
    margin-left: -20px;
}
#eventlist dl {
    width: calc((100% / 3) - 20px);
    margin: 10px 0 10px 20px;
    padding: 25px 20px 20px;

    background-color: #f1f4f8;
    border-radius: 5px;
    line-height: 100%;

    display: flex;
    flex-direction: column;

    min-height: 140px;

}
#eventlist dl~dl {
    margin-top: 10px;
}

#eventlist dt {
    height: 20px;
    margin-bottom: 10px;
    position: relative;
}
#eventlist dt::before{
    position: absolute;
    top: -25px;
    left: 0;
    width: 60px;
    height: 2px;
    content: '';
    border-radius: 3px;
    /* background: #6c98da; */
    background: #eb8789;
} 
#eventlist dt span {
    display: inline-block;
    margin-right: 5px;
}

#eventlist dd {
    margin: 0;
    line-height: 140%;
    font-weight: bold;
}
#eventlist dl a {
    color: #0f347f;
    text-decoration: none;
}
#eventlist dl a:hover {
    text-decoration: underline;
}

/*更新情報*/
#updateslist {}


/*お知らせバナー*/
.infobnr {
    /*margin-bottom: 30px;*/
    margin-top: 40px;
    padding: 0 10px;
}
.infobnr ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    line-height: 100%;

    display: flex;
}
.infobnr li~li {
    margin-left:20px;
}
.infobnr img {
    display: block;
}


/*-------------------------*/
/*スライダー*/
/*-------------------------*/
.sliderbox {
    /*
    width: 100%;
    max-width: calc(1920px - 20px);
    */
    width: 100%;
    max-width: calc(930px - 20px);
    margin: 30px auto 50px;
}
.slick-slide {
    transition: .3s ease;
    transform: scale(.85);
}
.slick-current {
    transform: scale(1);
}

.multiple-item {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
    opacity:0;
    text-align: center;
}
.multiple-item .slick-prev,
.multiple-item .slick-next {
    display:none;
}
.multiple-item .slick-prev:before,
.multiple-item .slick-next:before {
    display:none;
}
.multiple-item .slick-initialized {
    margin:0;
    padding:0;
}
.multiple-item .slick-dots {
    bottom: 0;
    left: 0;  
    position:relative;
    margin: 0;
    padding: 0;
}
.multiple-item .slick-slide img {
    display: block;
    margin-bottom: 10px;
    border-radius: 10px;
}
.multiple-item .slick-track .slide {
    margin: 0 40px 20px;
    max-width: 400px;
    /* padding: 0; */
}


/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1380px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 780px) {
}
@media screen and (max-width: 580px) {
}
@media screen and (max-width: 380px) {
}


