@charset "utf-8";
/*--京pages.css--*/
/* ##########PC########## */

.contents{
    overflow: hidden;
}

    /*topicpath_content_title*/
    .topicpath_content_title{
        box-sizing: border-box;
        width: 100%;
        height: 28.75rem;
        position: relative;
        background: url(../shared/sub_h_bg.png) no-repeat;
        background-size: 120rem 35rem;
        background-position: top -6.25rem center;
        margin: 0 0 1em 0;
        padding: 7.1875rem 0 0 0;
        z-index: 0;
        position: relative;
    }

        .topicpath{
            width: 62rem;
            box-sizing: border-box;
            position: relative;
            display: flex;
            margin: 0 auto 3rem auto;
            z-index: 2;
        }

            .topicpath ul{
                font-size: 0.9rem;
            }

                .topicpath ul li{
                    display: inline;
                    margin-right: 1.8em;
                    color: #fff;
                    position: relative;
                    font-weight: 500;
                }

                .topicpath ul li:after{
                    font-family: FontAwesome;
                    content: "\f105";
                    font-size: 1rem;
                    position: absolute;
                    top: calc(50% - 0.5rem);
                    right: -1rem;
                    color: #fff;
                }

                .topicpath ul li:first-child:after{
                    font-family: FontAwesome;
                    content: "\f105";
                    font-size: 1rem;
                    position: absolute;
                    top: calc(50% - 0.5rem);
                    right: -1.05rem;
                    color: #fff;
                }

                .topicpath ul li:last-child{
                    padding: 0;
                    margin-right: 0;
                }

                .topicpath ul li:last-child:after{
                    display: none;
                }

                .topicpath ul li a{
                    color: #fff;
                    text-decoration: none;
                }

                .topicpath ul li:first-child a{
                    color: #6bf0ff;
                }

                .topicpath ul li a:hover{
                    text-decoration: underline;
                }

            /*index以外*/
            .content_title{
                width: 62rem;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

                .content_title .lbl_ja{
                    font-size: 2.2rem;
                    font-weight: 600;
                    color: #fff;
                }

                .content_title .lbl_en{
                    font-size: 1.1rem;
                    color: #6bf0ff;
                    margin-bottom: 0.8rem;
                }


            .page_title{
                z-index: 1;
            }

                .page_title h1{
                    font-size: 2.3rem;
                    font-weight: 600;
                }

/*page_nav_box*/
.page_nav_box{
    width: 60.625rem;
    margin: -7.5rem auto 5.5rem auto;
    position: relative;
    z-index: 1;
}

.page_nav_box ul{
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.page_nav_box ul li{}

.page_nav_box ul li a{
    font-size: 1.1rem;
    padding: 0 0.6rem 0.2rem 0.6rem;
    line-height: 1.5;
    color: #222;
    text-decoration: none;
    transition: .3s all ease;
}

.page_nav_box ul li.current-menu-item a{
    background: #2d4164;
    color: #6bf0ff;
}

.page_nav_box ul li a:hover{
    background: #2d4164;
    color: #6bf0ff;
}


/*content_body*/
.content_body{
    transition: 1s all ease;
    transition-delay: .3s;
    opacity: 0;
}

.content_body.show{
    opacity: 1;
}

    .column_wrapper{
        display: flex;
        flex-direction: row-reverse;
        width: calc(100% - 16vw);
        margin: 0 auto;
        max-width: 980px;
    }

        .column_wrapper .column_main{
            width: 100%;
        }

        .main_page_nav{
            display: flex;
            justify-content: center;
            width: calc(100% - 12.5vw);
            margin: 0 auto;
            max-width: 1100px;
        }

        .main_page_nav ul {
            width: 100%;
            justify-content: flex-start;
            display: flex;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }

        .main_page_nav ul li {
            width: calc((100% - 3.6rem) / 3);
            margin: 0 1.8rem 1.4rem 0;
            padding: 0;
            font-weight: 600;
        }

        .main_page_nav ul li:nth-child(3n){
            margin-right: 0;
        }

        .main_page_nav ul li a{
            display: flex;
            position: relative;
            background-color: #fff;
            height: 5rem;
            text-decoration: none;
            align-items: center;
            justify-content: space-between;
            color: #111111;
            font-size: 1rem;
            line-height: 1.4;
            border: 1px solid #9f9f9f;
            padding: 0 3em 0 1.8em;
            transition: .5s all ease;
        }

        .main_page_nav ul li a:after{
            content: "";
            display: block;
            position: absolute;
            width: 2.625rem;
            height: 2.625rem;
            top: calc(50% - 1.3rem);
            right: 0.75rem;
            background-image: url("../shared/icon_cir_arr_orange_w.png");
            background-repeat: no-repeat;
            background-size: contain;
        }

        .main_page_nav ul li.current_page_item a{
            border: 1px solid #463c9b;
            color: #463c9b;
        }

        .main_page_nav ul li.current_page_item a:after{
            transform: rotate(-90deg);
        }

        .main_page_nav ul li a:hover{
            box-shadow: 4px 4px 0 0 rgba(0,0,0,0.08);
            filter: brightness(1.03);
        }

        
        .contents.about.index .main_page_nav ul,
        .contents.divisions.index .main_page_nav ul,
        .contents.staff.index .main_page_nav ul{
            border-bottom: none;
        }

/*page_title*/
.page_title{
    width: 61.25rem;
    margin: 0 auto;
    line-height: 1.8;
}

    .page_title h2{
        font-size: 2.1em;
        font-weight: 600;
        margin-bottom: 1rem;
        position: relative;
        color: #2d4164;
        padding-bottom: 0.5rem;
    }

    .page_title h2:after{
        content:"";
        display: block;
        width: 7rem;
        height: 4px;
        background: #2d4164;
        position: absolute;
        bottom: 0;
        left: 0;
    }

/*page_body*/
.page_body{
    margin: 0 auto;
    min-height: 400px;
    line-height: 1.8;
}

    .page_body h2{
        font-size: 2.1em;
        font-weight: 600;
        margin-bottom: 1rem;
        position: relative;
        color: #2d4164;
        padding-bottom: 0.5rem;
    }

    .page_body h2:after{
        content:"";
        display: block;
        width: 7rem;
        height: 4px;
        background: #2d4164;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .page_body h2 .lbl a[id^="anc_"]{
        position: absolute;
        top: 1.8rem;
        left: 0;
    }

    .page_body h2:first-child{
        margin-top: 0;
    }

    .page_body h3{
        color: #463c9b;
        font-size: 1.6em;
        font-weight: 700;
        margin: 2em 0 0.5em 0;
        line-height: 1.4;
    }

    .page_body h4{
        font-size: 1.15em;
        font-weight: 500;
        margin: 1.8em 0.5em 0.5em 0;
        line-height: 1.4;
        position: relative;
        padding-left: 0.7em;
    }

        .page_body h4:before{
            content: "";
            display: block;
            width: 0;
            border-left: 0.25rem solid #463c9b;
            height: 1em;
            position: absolute;
            top: 0.2em;
            left: 0;
        }

    .page_body h5{
        font-weight: 600;
    }

    .page_body p {
        font-size: 1.1em;
        margin: 0 0 1em 0;
        line-height: 2;
    }

    .page_body ol{
        list-style: decimal;
        margin: 0 1.2em 1.2em 1.2em;
    }

        .page_body ol li{
            margin: 0 0 0.3em 1.3em;
        }

            .page_body ol li ol{
                margin: 0.5em 0;
            }

    .page_body ul{
        margin: 0 1.2em 1.2em 1.35em;
    }

        .page_body ul li{
            margin: 0 0 0.5em 0;
            padding-left: 1.7em;
            position: relative;
        }

        .page_body ul li:last-child{
            margin: 0;
        }
            .page_body ul li:before{
                font-family: FontAwesome;
                content: "\f111";
                color: rgba(47, 67, 102,0.5);
                position: absolute;
                top: 0;
                left: 0;
            }

    .page_body .fig{
        text-align: center;
    }

    .page_body img{
        max-width:100%;
        height: auto;
    }

    .page_body a{
        color: #003d84;
    }

    .page_body a:hover{
        color: #2182b9;
    }

    .page_body table{
        margin: 1em 0;
        line-height: 1.6;
        border-collapse: separate;
        border-top: 3px solid #2d4164;
    }

    .page_body table.no_border{
        border-bottom: 3px solid #2d4164;
    }

        .page_body table th,
        .page_body table td{
            border-right: 1px solid rgba(0,0,0,0.15);
            border-bottom: 1px solid rgba(0,0,0,0.15);
        }

        .page_body table.no_border th{
            text-align: center;
        }

        .page_body table.no_border th,
        .page_body table.no_border td{
            border-right: none;
            border-bottom: none;
        }
    
        .page_body table th:last-child,
        .page_body table td:last-child{
            border-right: none;
        }

        .page_body table thead th{
            text-align: center;
            font-weight: 600;
            padding: 0.25em 1em;
            color: #2d4164;
            white-space: nowrap;
        }

        .page_body table tbody th,
        .page_body table tbody td{
            padding: 0.5em 1em;
        }

        .page_body .table_w_auto table.no_border tr:first-child th,
        .page_body .table_w_auto table.no_border tr:first-child td{
            padding: 1em 1em 0.5em 1em;
        }

        .page_body .table_w_auto table.no_border tbody tr:last-child th,
        .page_body .table_w_auto table.no_border tbody tr:last-child td{
            padding: 0.5em 1em 1em 1em;
        }

        .page_body table tbody th{
            color: #2d4164;
            font-weight: 600;
            white-space: nowrap;
        }

        .page_body table tbody td{
            background: #fff;
        }

        .page_body strong{
            font-weight: 700;
        }

        .page_body em{
            font-style: italic;
        }

        .kiyaku_btn{
            width: 31.25rem;
            margin: 5rem auto 0 auto;
        }

        .kiyaku_btn a{
            font-size: 1.2em;
            display: block;
            padding: 0.75em 2.5em 0.85em 2.5em;
            text-align: center;
            background: #2d4164;
            color: #fff;
            border-radius: 2em;
            text-decoration: none;
            position: relative;
            transition: .3s all ease;
        }

        .kiyaku_btn a::after{
            font-family: FontAwesome;
            content: "\f0f6";
            margin-left: 0.8rem;
        }

        .kiyaku_btn a:hover{
            color: #fff;
            filter: brightness(1.2);
        }

        .jimukyoku_box{
            margin: 6.25rem 0 0 0;
            padding-top: 5rem;
            position: relative;
        }

        .jimukyoku_box::before{
            content:"";
            display: block;
            width: 100vw;
            height: 1px;
            background: #ccc;
            position: absolute;
            top: 0;
            left: calc(50% - 50vw);
        }

/*電話番号用*/
.page_body a[href^="tel"] {
    /* pointer-events: none; */
    color: inherit;
    text-decoration: none;
}

/*content_body*/
.content_body{
    transition: 1s all ease;
    transition-delay: .3s;
    opacity: 0;
}

.content_body.show{
    opacity: 1;
}

    .index .column_main .page_title{
        display: none;
    }

/*理事長挨拶*/
.greeting_box{
    display: flex;
    justify-content: flex-start;
}

.greeting_box .text{
    flex: 1;
}

.greeting_box .rijicho{
    width: 17.6875rem;
    margin-left: 2.5rem;
}

.greeting_box .rijicho .rijicho_img{
    margin-bottom: 1rem;
}

.greeting_box .rijicho .rijicho_img img{
    max-width: 100%;
    height: auto;
}

.greeting_box .rijicho .rijicho_name{
    font-size: 1.1rem;
    text-align: right;
}

/*理事・会員*/
.members_box{
    margin-top: 2rem;
}

.members_box table{
    width: 100%;
    font-size: 1.1rem;
}

.members_box table th{
    width: 10em;
}

/*開催案内*/
.guidance_list{}

.guidance_box{
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dotted #aaa;
}

.guidance_box .guidance_ttl{
    color: #2d4164;
    font-size: 1.6em;
    font-weight: 700;
    margin: 0 0 0.5em 0;
    line-height: 1.4;
}

.guidance_box dl{
    /*color: #2c3f6a;*/
    font-size: 1.1rem;
    line-height: 1.8;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0.2rem;
}

.guidance_box dl dt{
    min-width: 4rem;
    white-space: nowrap;
}

.guidance_box dl dt:after{
    content:"：";
}

.guidance_box dl dd{
    flex: 1;
}

.guidance_box .detail_btn{
    width: 15rem;
    margin: 1.6rem auto 0 auto;
}

.guidance_box .detail_btn.disabled{
    display: none;
}

.guidance_box .detail_btn a{
    font-size: 1em;
    display: block;
    padding: 0.45em 2.5em 0.55em 2.5em;
    text-align: center;
    background: #fff;
    border: 1px solid #2d4164;
    color: #2c3f6a;
    border-radius: 2em;
    text-decoration: none;
    position: relative;
    transition: .3s all ease;
}

.guidance_box .detail_btn a:after{
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #2c3f6a;
    border-right: 0;
    position: absolute;
    top: calc(50% - 5px);
    right: 1.3em;
    transition: .3s all ease;
}

.guidance_box .detail_btn a:hover{
    background: #2d4164;
    color: #fff;
}

.guidance_box .detail_btn a:hover:after{
    border-left: 7px solid #fff;
    right: 1em;
}

/*活動報告*/
.activity_list{}

.activity_box{
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px dotted #aaa;
}

.activity_box .activity_ttl{
    color: #2d4164;
    font-size: 1.6em;
    font-weight: 700;
    margin: 0 0 0.5em 0;
    line-height: 1.4;
}

.activity_box .activity_content{}

.activity_box .activity_content ul{
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.activity_box .activity_content ul li{
    width: calc((100% - 3rem) / 4);
    max-height: 10.9375rem;
    /*height: auto;
    aspect-ratio: 4 / 3;*/
    overflow: hidden;
    margin: 0;
    padding-left: 0;
}

.activity_box .activity_content ul li:before{
    display: none;
}

.activity_box .activity_content ul li img{
    max-width: 100%;
    height: auto;
}

/*リンク集*/
.links_box{
    font-size: 1.1rem;
}

.links_box ul li a{
    text-decoration: none;
    color: #222;
}

.links_box ul li a:hover{
    color: #222;
    text-decoration: underline;
}


@media screen and (min-width:1px) and (max-width:1400px) {
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    .topicpath_content_title{
        height: 25.875rem;
        background: url(../shared/sub_h_bg.png) no-repeat;
        background-size: 108rem 31.5rem;
        background-position: top -5.625rem center;
        margin: 0 0 1em 0;
        padding: 7.1875rem 0 0 0;
    }

    .topicpath{
        width: 90%;
        margin: 0 auto 2rem auto;
    }

    .content_title{
        width: 90%;
    }

    .page_nav_box{
        width: 90%;
    }

    .activity_box .activity_content ul li{
        width: calc((100% - 2rem) / 3);
    }

}
/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:479px) {
    .topicpath_content_title{
        padding: 18vw 0 0 0;
        height: 20.875rem;
    }

    .content_title .lbl_ja{
        font-size: 2rem;
    }

    .page_nav_box{
        margin: 0 auto 2.5rem auto;
    }

    .page_title{
        width: auto;
    }

    .page_body h2{
        font-size: 1.8em;
    }

    .kiyaku_btn{
        width: 100%;
        margin: 3rem auto 0 auto;
    }

    .jimukyoku_box{
        margin: 4.25rem 0 0 0;
        padding-top: 3rem;
    }

    .greeting_box{
        flex-direction: column;
    }

    .greeting_box .rijicho{
        width: auto;
        margin: 2rem auto 0 auto;
    }

    .greeting_box .rijicho .rijicho_img{
        width: 50vw;
        margin: 0 auto 1rem auto;
    }

    .page_body .members_box table tr th{
        width: 5em;
        white-space: normal;
    }

    .guidance_box .guidance_ttl{
        font-size: 1.4em;
    }

    .activity_box .activity_ttl{
        font-size: 1.4em;
    }

    .activity_box .activity_content a{
        word-break: break-all;
    }

    .activity_box .activity_content ul li{
        width: calc((100% - 1rem) / 2);
        max-height: 8rem;
    }

}


/* ##########印刷用########## */
@media print{

}