@charset "utf-8";

/* 大会情報  */

.archive.meeting {
    .meeting-headline {
    }
    .meeting-latest-box {
        margin-bottom: 50px;
        .meeting-latest-box_outline {
            margin-bottom: 25px;
        }
        .meeting-latest-box_more {
            text-align: right;
            a {
                background: var(--color-orange-deep);
                border-radius: 3px;
                padding: 10px 18px 10px 20px;
                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;
                    display: block;
                    text-align: center;
                }
            }
        }
    }
}

/* 刊行物 */

.archive.publication, .single-publication {
    /* layout */
    .sectionInner {
        display: flex;
        align-items: flex-start;
        gap: 35px;
        position: relative;
        --inner_width: 250px;
        @media (width <= 999px) {
            display: block;
            --inner_width: 100%;
        }
        .inner-content {
            width: calc(100% - var(--inner_width));
            @media (width <= 999px) {
                width: 100%;
            }
        }
        aside {
            width: var(--inner_width);
            overflow: scroll;
            position: sticky;
            right: 0;
            top: 130px;
            height: calc(100vh - 130px);
            @media (width <= 999px) {
                display: none;
            }
        }
    }
    
    /* inner-content */
    .publication-headline {
        margin-bottom: 50px;
    }
    .publication-latest-box {
        margin-bottom: 50px;
        display: flex;
        @media (width <= 999px) {
            display: block;
        }
        .plb-thumb {
            width: 300px;
            margin-right: 25px;
            text-align: center;
            @media (width <= 999px) {
                width: 100%;
                margin-bottom: 30px;
                margin-right: 0;
            }
            img {
                @media (width <= 999px) {
                    width: 60%;
                    height: auto;
                }
            }
        }
        .plb-content {
            width: calc(100% - 25px - 300px);
            @media (width <= 999px) {
                width: 100%;
            }
            .plb-content_head {
            }
            .plb-content_body {
                ol {
                    margin-bottom: 0;
                    li {
                        font-size: 1.4rem;
                        @media (width <= 999px) {
                            font-size: 1.3rem;
                        }
                        &:last-child {
                            margin-bottom: 0;
                        }
                    }
                }
                p.separator {
                    margin-top: 10px;
                    margin-bottom: 0!important;
                    margin-left: -20px;
                    position: relative;
                }
            }
        }
    }
    
    /* aside */
    .publication-sidebar {
        .ps-title {
            background: var(--color-main);
            margin-bottom: 10px;
            padding: 5px 15px;
            font-weight: bold;
            text-align: center;
            color: #fff;
        }
        .ps-book-box {
            font-size: 1.2rem;
            .ps-book-box_thumb {
                margin-bottom: 15px;
                text-align: center;
                img {
                    width: 70%;
                    vertical-align: bottom;
                }
            }
            .ps-book-box_content {
                @media (width <= 999px) {
                    margin-bottom: 30px;
                }
                .psbb_title {
                    border-bottom: 1px solid #999;
                    margin-bottom: 10px;
                    padding-bottom: 10px;
                    font-weight: bold;
                    text-align: center;
                    span {
                        display: block;
                    }
                }
                .psbb_body {
                    
                }
            }
        }
    }
}
.sp-publication {
    display: none;
    @media (width <= 999px) {
        display: block;
    }
    .content_block {
        background: #fff;
        position: fixed;
        width: 100vw;
        height: calc(100% - var(--size-header-height));
        bottom: -100vh;
        transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        .publication-sidebar {
            padding: 25px 25px 35px 25px;
        }
        .ps-title {
            display: none;
        }
    }
    .open_button {
        background: var(--color-main);
        width: 100%;
        height: 50px;
        bottom: 0;
        left: 0;
        padding: 10px;
        color: #fff;
        text-align: center;
        position: fixed;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }
}
.publication-opened {
    .sp-publication {
        .content_block {
            bottom: 0;
            z-index: 9;
            overflow-y: scroll;
        }
    }
}
body.publication {
    @media (width <= 999px) {
        margin-bottom: 50px;
    }
}

/* 大会情報（過去の大会）、刊行物（バックナンバー）  */

.archive.meeting, .archive.publication {
    .meeting-history, .publication-history {
        .history_list, .history_list {
            li {
                a {
                    background: var(--color-main);
                    border-radius: 500px;
                    padding: 6px 15px 8px 15px;
                    display: block;
                    color: #fff;
                    text-align: center;
                    text-decoration: none;
                    position: relative;
                    font-size: 1.3rem;
                    @media (width <= 999px) {
                        font-size: 1.2rem;
                    }
                    &:hover {
                        background: var(--color-main-light);
                    }
                    &::after {
                        display: none!important;
                    }
                    &.mh-list_link-pdf {
                        /*background: var(--color-red);*/
                        &:hover {
                            /*background: var(--color-red-light);*/
                        }
                        span {
                            top: -1px;
                            margin-left: 5px;
                            font-size: 1.3rem;
                            position: relative;
                            @media (width <= 999px) {
                                font-size: 1.1rem;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* English */
.page.en {
    .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;
                }
            }
        }
    }
}