@charset "utf-8";

.topContents {
	position: relative;
    .mainimage {
        img {
            width: 100%;
            vertical-align: bottom;
        }
        .slick-dots {
            bottom: 0!important;
        }
    }
    .topStage {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 50px;
        position: absolute;
        display: flex;
        align-items: center;
        @media (width <= 999px) {
            background: #000;
    		padding: 15px;
            position: relative;
            text-align: center;
            display: block;
        }
        p {
            font-size: 4.0rem;
            font-weight: bold;
            line-height: 1.3;
            color: #fff;
            @media (width <= 999px) {
        		font-size: 1.6rem;
                color: #fff;
            }
        }
    }
}

.infoSection {
    .sectionInner {
        h2 {
            margin-bottom: 25px;
            font-size: 3.2rem;
            font-weight: bold;
            @media (width <= 999px) {
                font-size: 2.6rem;
                text-align: center;
            }
        }
        .info-headlilne {
            margin-bottom: 35px;
            font-size: 1.8rem;
            @media (width <= 999px) {
                font-size: 1.6rem;
            }
            a {
                background: var(--color-orange-deep);
                border-radius: 3px;
                top: -2px;
                margin-left: 10px;
                padding: 6px 10px 7px 10px;
                font-size: 1.3rem;
                text-decoration: none;
                line-height: 1;
                color: #fff;
                display: inline-block;
                position: relative;
                &:hover {
                    background: var(--color-orange);
                }
                &::after {
                    font-family: var(--fa);
                    content: "\f101";
                    font-weight: 900;
                    margin-left: 5px;
                    display: inline-block;
                    @media (width <= 999px) {
                        position: absolute;
                        right: 10px;
                    }
                }
                @media (width <= 999px) {
                    border-radius: 6px;
                    margin: 10px 0 0 0;
                    padding: 15px 30px 16px 5px;
                    font-size: 1.6rem;
                    display: block;
                    text-align: center;
                    top: unset;
                }
            }
        }
        .info-box {
            .info-box_img {
                margin-bottom: 10px;
                img {
                    vertical-align: bottom;
                }
            }
        }
    }
}

.newsSection {
    #newsBox-header {
        margin-bottom: 20px;
        display: flex;
        @media (width <= 999px) {
            display: block;
        }
        h2 {
            margin-right: 25px;
            font-size: 2.5rem;
            font-weight: bold;
            line-height: 1;
            display: flex;
            align-items: center;
            @media (width <= 999px) {
                margin-bottom: 15px;
                margin-right: 0;
                display: block;
            }
        }
        #newsMenu {
            margin-bottom: 0;
            display: flex;
            position: relative;
            @media (width <= 999px) {
                flex-wrap: wrap;
                gap: 2px;
            }
            li {
                margin: 0 5px 0 0;
                list-style: none;
                position: relative;
                cursor: pointer;
                @media (width <= 999px) {
                    width: calc(50% - 2px);
                    margin-right: 0;
                }
                &:last-child {
                    margin-right: 0;
                }
                span, a {
                    background: #ccc;
                    padding: 10px 20px;
                    display: inline-block;
                    text-align: center;
                    line-height: 1;
                    color: #fff;
                    font-size: 1.4rem;
                    text-decoration: none;
                    @media (width <= 999px) {
                        width:100%;
                        display: block;
                    }
                    &.cat_all {
                        background: var(--color-orange);
                        &:hover {
                            background: var(--color-orange-deep);
                        }
                    }
                    &.cat_info {
                        background: var(--color-red);
                        &:hover {
                            background: var(--color-red-deep);
                        }
                    }
                    &.cat_convention {
                        background: var(--color-blue);
                        &:hover {
                            background: var(--color-blue-deep);
                        }
                    }
                    &.cat_journal {
                        background: var(--color-main);
                        &:hover {
                            background: var(--color-main-deep);
                        }
                    }
                    /*&.cat_standards {
                        background: var(--color-orange);
                        &:hover {
                            background: var(--color-orange-deep);
                        }
                    }*/
                    &.cat_all_list {
                        background: #999;
                        padding: 10px 15px 10px 20px;
                        position: relative;
                        &:hover {
                            background: #333;
                        }
                        &::after {
                            margin-left: 10px;
                            font-family: var(--fa);
                            content: "\f101";
                            font-weight: 900;
                        }
                    }
                }
            }
            li.active {
            }
        }
    }
    #newsBox-footer {
        @media (width <= 999px) {
            display: block;
        }
        ul {
            margin-bottom: 0;
            li {
                margin: 0;
                list-style: none;
                a {
                    background: #999;
                    width: 100%;
                    padding: 10px 15px 10px 20px;
                    position: relative;
                    color: #fff;
                    text-align: center;
                    text-decoration: none;
                    display: block;
                    &:hover {
                        background: #333;
                    }
                    &::after {
                        margin-left: 10px;
                        font-family: var(--fa);
                        content: "\f101";
                        font-weight: 900;
                    }
                }
            }
        }
    }
    #newsBox {
        > .newsBoxInner {
            display: none;
        }
        > .newsBoxInner.active {
            display: block;
        }
        .newsList1 {
            border: 1px solid #ccc;
            margin-bottom: 50px;
            padding: 15px;
            @media (width <= 999px) {
                margin-bottom: 15px;
            }
        }
    }
    .not_post li {
        text-align: center;
        padding: 25px;
        box-shadow: unset!important;
    }
}