/* header */
header {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background-color: #fff;
    transition: background-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1316px;
    padding: 20px;
    margin: 0 auto;
    font-size: var(--font16);
}
header .inner a.title {
    display: block;
    width: 76px;
    height: 40px;
    cursor: pointer;
}
header .inner a.title h1 {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/img/logo.svg');
    text-indent: -9999px;
}

section.top {
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/img/main_top.png');
}
section.top .inner {
    max-width: 1316px;
    height: auto;
    padding: 40px 20px;
    margin: 0 auto;
}
section.top .inner h1 {
    margin: 40px 0 20px;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
}
section.top .inner p {
    font-size: var(--font20);
    font-weight: 400;
    color: rgba(255 255 255 / 75%);
}
section.top .inner .logo {width:100%;}
section.top .inner .logo img {width:100px;}

/* tab status */
.tab-status {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: var(--font16);
}
.tab-status .tab-list {
    display: flex; 
    align-items: center; 
}
.tab-status .tab-list .tab-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;  
    padding: 16px 0px;
    box-sizing: border-box;
    background: var(--bgGray);
    border: 1px solid var(--bgGray);
    color: #aaa;
    white-space: nowrap;
}
.tab-status .tab-list .tab-item.active {
    background: #fff;
    border: 1px solid var(--main-black);
    color: var(--main-black);
}
.tab-status .tab-list .tab-item:last-child {border-left: 0px;}
.tab-status .tab-list .tab-item.active:last-child {border-left: 1px solid var(--main-black);}

section.thumnail-board {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
section.thumnail-board .inner {max-width:932px; margin: 40px auto;}
section.thumnail-board .board-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 16px;

    margin-top: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lineGray);
}
section.thumnail-board .board-list .content {
    padding-bottom: 1.25rem;
    text-align: center;
}
section.thumnail-board .board-list .content .thumnail {
    width: 100%;
    aspect-ratio: 1/ 1 ;
    margin-bottom: 12px;
}
section.thumnail-board .board-list .content .thumnail img {width:100%;}
section.thumnail-board .board-list .content p {
    font-size: var(--font16);
    color: var(--darkGray);
}

/* pagenation */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    font-size: var(--font18);
}
.pagination .ico {
    display: block;
    width: 16px;
    height: 16px;
}
.pagination a {
    display: block;
    padding: 16px;
    line-height: 1;
    text-decoration: none;
    color: var(--lineGray);
}
.pagination a:hover {color: var(--darkGray);}
.pagination .active {
    font-weight: 600;
    color: var(--main-black)
}
.pagination .disabled {pointer-events: none;}


@media (min-width: 1024px) and (max-width: 1279px) {
}

@media (min-width: 768px) and (max-width: 1023px) {
    section.top .inner {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 60px 20px;
        margin: 0 auto;
    }
    /* thumnail board */
    section.thumnail-board {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    section.thumnail-board .inner {
        margin: 40px 0px;
        padding: 0px 20px;
    }

}

@media (max-width: 539px) {
}

@media (min-width: 480px) and (max-width: 767px) {
    section.top .inner {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 40px 20px;
        margin: 0 auto;
    }
    section.top .inner h1 {
        font-size: var(--font32);
    }
    section.top .inner p {
        font-size: var(--font20);
        font-weight: 400;
        color: rgba(255 255 255 / 75%);
        line-height: 1.5;
    }
    /* thumnail board */
    section.thumnail-board .inner {padding: 0px 20px;}    
    section.thumnail-board .board-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 16px;

        margin-top: 16px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--lineGray);
    }

}

@media (max-width: 479px) {
    section.top .inner {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        margin: 0 auto;
    }
    section.top .inner h1 {
        font-size: var(--font32);
    }
    section.top .inner p {
        font-size: var(--font20);
        font-weight: 400;
        color: rgba(255 255 255 / 75%);
        line-height: 1.5;
    }
	section.top .inner .logo {text-align:center;}
	section.top .inner .logo img {width:auto; height:40px;}

    /* thumnail board */
    section.thumnail-board {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }
    section.thumnail-board .inner {
        margin: 40px 0px;
        padding: 0px 20px;
    }
    section.thumnail-board .board-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 16px;

        margin-top: 16px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--lineGray);
    }
	section.thumnail-board .board-list .content p {
		font-size: 4vw;
		letter-spacing: -1px;
	}
}