@charset "UTF-8";

/*-------------------------
  body設定
-------------------------*/
body{
    font-size: 1.6rem;
    line-height: 1.5;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    overflow-x: hidden;
}


/*-------------------------
  section
-------------------------*/
section{
    margin: 0;
    padding: 0;
}

article{
    margin: 0;
    padding: 0;
}



/*-------------------------
  color
-------------------------*/


.main_mv {
    margin-bottom: 60px;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #f4efe8;
    border-bottom: 2px solid #f4efe8;
    background:repeating-linear-gradient(-35deg,#f4efe8,#f4efe8 1px,#fff 0,#fff 12px)
}
.main_mv h1,
.main_mv h2,
.main_mv h3,
.main_mv h4,
.main_mv h5,
.main_mv h6,
.main_mv div {
    font-size: 5rem;
    font-weight: bold;
    color: var(--main-color);
    text-align: center;
}
.main_mv h1 {
    font-size: 3.6rem;
    font-weight: 500;
}


.col_wrap {
    max-width: calc(1200px + 30px);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
}
.col_wrap .col_main {
    max-width: 850px;
    width: 71%;
}
.col_wrap .col_main .list01 {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    margin-bottom: 55px;
}
.col_wrap .col_main .list01_item {
    width: 32%;
    margin-bottom: 30px;
}
.col_wrap .col_main .list01_item a {
    display: block;
    transition: all .3s;
}
.col_wrap .col_main .list01_item a:hover {
    opacity: .7;
    transition: all .3s;
}
.col_wrap .col_main .list01_item_img {
    aspect-ratio: 16/10;
    width: 100%;
    height: auto;
}
.col_wrap .col_main .list01_item_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.col_wrap .col_main .list01_item_cont {
    padding: 9% 5.5%;
    background-color: #faf9f7;
}
.col_wrap .col_main .list01_item_cont .date {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: .01em;
}
.col_wrap .col_main .list01_item_cont .title {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--main-color);
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.col_wrap .col_main .list02 {
    padding: 10.5% 11.7%;
    border-radius: 10px;
    border: 1px solid #dfdfdf;
}
.col_wrap .col_main .list02_item:first-of-type {
    border-top: dashed 1px #dfdfdf;
}
.col_wrap .col_main .list02_item a {
    display: flex;
    align-items: center;
    padding: 16px 5px;
    font-size: 1.4rem;
    font-weight: bold;
    border-bottom: dashed 1px #dfdfdf;
    transition: all .3s;
}
.col_wrap .col_main .list02_item a:hover {
    opacity: .7;
}
.col_wrap .col_main .list02_item a .date {
    width: 20%;
    letter-spacing: .01em;
}
.col_wrap .col_main .list02_item a .title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*
 ページナビ
----------------------*/
.pagination {
    padding: 65px 0;
    text-align: center;
}
.pagination .nav_links {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .page_numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 8px 4px;
    padding: 8px 0;
    font-size: 1.6rem;
    font-weight: bold;
    background: #fff;
    color: #000;
    line-height: 1;
    border: 1px solid var(--sub-color);
}
.pagination .page_numbers:hover {
    background: var(--sub-color);
    color: #fff;
    border-color: var(--sub-color);
}
.pagination .current {
    background: var(--sub-color);
    color: #fff;
    border-color: var(--sub-color);
}
.pagination .first,
.pagination .last {
    width: 50px;
    height: 50px;
    position: relative;
}

.col_wrap .col_side {
    max-width: 240px;
    width: 20%;
}
.col_wrap .col_side .box + .box {
    margin-top: 35px;
}
.col_wrap .col_side .side_title {
    padding: 10px;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: .01em;
    color: #fff;
    background-color: var(--main-color);
}
.col_wrap .col_side .side_item a {
    display: block;
    padding: 14px 10px;
    font-size: 1.4rem;
    letter-spacing: .01em;
    font-weight: bold;
    border-bottom: dashed 1px #dfdfdf;
}


@media screen and (max-width: 768px) {

    .main_mv {
        margin-bottom: 45px;
        min-height: 100px;
    }
    .main_mv h1 {
        font-size: 2.4rem;
    }

    .col_wrap {
        padding: 0 15px;
        flex-direction: column;
    }
    .col_wrap .col_main {
        width: 100%;
    }
    .col_wrap .col_main .list01 {
        gap: 0;
        margin-bottom: 35px;
    }
    .col_wrap .col_main .list01_item {
        width: 100%;
        margin-bottom: 30px;
    }
    .col_wrap .col_main .list01_item_cont {
        padding: 9% 5.5%;
    }
    .col_wrap .col_main .list01_item_cont .date {
        font-size: 1.2rem;
    }
    .col_wrap .col_main .list01_item_cont .title {
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--main-color);
        overflow: hidden;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    
    .col_wrap .col_main .list02 {
        padding: 10% 5%;
    }
    .col_wrap .col_main .list02_item a {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 5px;
        font-size: 1.4rem;
    }
    .col_wrap .col_main .list02_item a .date {
        width: 100%;
    }
    .col_wrap .col_main .list02_item a .title {
        width: 100%;
        flex: unset;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /*
     ページナビ
    ----------------------*/
    .pagination {
        padding: 45px 0;
    }
    .pagination .page_numbers {
        width: 45px;
        height: 45px;
        margin: 8px 4px;
        padding: 8px 0;
        font-size: 1.4rem;
    }
    .pagination .first,
    .pagination .last {
        width: 45px;
        height: 45px;
    }
    .col_wrap .col_side {
        max-width: 100%;
        width: 100%;
        margin-bottom: 40px;
    }
    .col_wrap .col_side .box + .box {
        margin-top: 35px;
    }
    .col_wrap .col_side .side_title {
        padding: 10px;
        font-size: 1.4rem;
    }
    .col_wrap .col_side .side_item a {
        padding: 14px 10px;
        font-size: 1.4rem;
    }

}