@charset "utf-8";
/*--京pages.css--*/
/* ##########PC########## */
/*contents*/
.contents{}

.contents::before{
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url(../shared/home/bg_mv.jpg);
    /*
    background-size: cover;
    background-position: right top -1rem;
    */
    background-size: 56rem auto;
    background-position: right top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.7;
    transition: 1s all ease;
}

/*content_title*/
.content_title{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    /*margin-bottom: 1.5rem;*/
    height: 13rem;
    padding: 0 0 5rem 5vw;
    color: #4D4D4D;

}

    .content_title .lbl_ja{
        font-size: 1.8rem;
        font-weight: 400;
        position: relative;
        z-index: 1;
    }

    .content_title .lbl_en{
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 0.6em;
        position: relative;
        z-index: 1;
        font-family: var(--font_family2);
        color: #2db1b9;
    }

    /*page_title*/
    .index .page_title{
        display: none;
    }


.content_body{
    position: relative;
    z-index: 1;
    padding-bottom: 5rem;
}

/*column_wrapper*/
.column_wrapper{
    box-sizing: border-box;
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2.5rem;
}

.contents.index .column_wrapper{
    /*padding: 0;*/
}

    .column_wrapper .column_main{
        flex: 1;
    }

/*2カラム*/
.column_wrapper.two_col{
    flex-direction: row-reverse;
}

    .column_wrapper.two_col .column_sub{
        width: 16rem;
        margin-right: 3rem;
        position: relative;
    }

    .column_wrapper.two_col .column_sub .page_nav{
        position: sticky;
        top: 8rem;
        margin-bottom: 3rem;
    }

    .column_wrapper.two_col .column_sub .page_nav dl dt{
        font-weight: 450;
        font-size: 1.05em;
        border-bottom: 1px solid #ccc;
        padding: 2.4em 0 0.5em 0;
        margin-bottom: 1em;
        color: #4d4d4d;
    }

    .column_wrapper.two_col .column_sub .page_nav dl dd{}

        .column_wrapper.two_col .column_sub .page_nav dl dd > ul{
            line-height: 1.5;
            font-size: 0.92em;
        }

        .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li{}

            .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li > a{
                position: relative;
                display: block;
                color: var(--base_color1);
                text-decoration: none;
                padding: 0.5em 0.5em 0.5em 1.3em;
                border-radius: 0.25rem;
                transition: .3s all ease;
            }

            .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li > a:hover{
                background: rgba(45,177,185,0.15);
            }

            .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li.current_page_item > a{
                font-weight: 400;
            }

                .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li > a::before{
                    font-family: FontAwesome;
                    content:"\f0da";
                    position: absolute;
                    top: 0.5em;
                    left: 0.4em;
                    font-weight: normal;
                    color: rgba(0,0,0,0.15);
                }

                .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li.current_page_item > a::before{
                    color: #2db1b9;
                }

            .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li > ul{
                margin-left: 1em;
                display: none;
            }

            .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li.current_page_parent > ul{
                display: block;
            }


                .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li > ul > li{}

                    .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li > ul > li > a{
                        color: var(--base_color1);
                        display: block;
                        text-decoration: none;
                        position: relative;
                        padding: 0.3em 0.3em 0.3em 1em;
                        border-radius: 0.25rem;
                        transition: .3s all ease;
                    }

                    .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li > ul > li.current_page_item > a{
                        font-weight: 500;
                    }

                    .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li > ul > li > a:hover{
                        background: rgba(45,177,185,0.15);   
                    }

                        .column_wrapper.two_col .column_sub .page_nav dl dd > ul > li > ul > li > a::before{
                            content: "-";
                            display: inline-block;
                            position: absolute;
                            top: 0.3em;
                            left: 0.3em;
                        }

    .column_sub .bn_bfw{
        margin-top: 3em;
        display: flex;
    }

        .column_sub .bn_bfw a{
            width: 12rem;
            transition: .5s all ease;
        }

            .column_sub .bn_bfw a img{
                max-width: 100%;
                height: auto;
            }

        .column_sub .bn_bfw a:hover{
            transform: translateX(0.5rem);
            filter: brightness(1.05);
        }


/*topicpath*/
.topicpath{
    padding: 1.25rem 3vw 4rem;
    display: none;/*暫定非表示*/
}

    .topicpath ul{
        font-size: 0.84em;
    }

    .topicpath ul li{
        display: inline;
    }

        .topicpath ul li::after{
            font-family: FontAwesome;
            content:"\f105";
            color: #555;
            margin: 0 0.8em 0 1em;
        }

        .topicpath ul li:last-child::after{
            content: none;
        }

        .topicpath ul li a{
            text-decoration: none;
            color: #0f228b;
        }

        .topicpath ul li a:hover{
            text-decoration: underline;
        }

/*page_title*/
.page_title{
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ccc;
    margin-bottom: 3em;
    padding: 0 0 1em 0;
}

    .page_title p{
        font-family: var(--font_family2);
        font-weight: 500;
        letter-spacing: 0.1em;
        margin-bottom: 0.5em;
        color: #98CDB3;
    }

    .page_title h2{
        font-size: 1.6em;
        font-weight: 450;
        color: #4d4d4d;
    }



/*page_body*/
.page_body{
    min-height: 400px;
    line-height: 2;
    font-size: 0.92em;
    text-align: justify;
}
    
    .page_body h2{
        font-size: 1.6em;
        font-weight: 500;
        color: #4d4d4d;
        line-height: 1;
    }

    .page_body h2 + p.h2_en{
        font-family: var(--font_family2);
        font-size: 1.24em;
        font-weight: 500;
        color: #4d4d4d;
    }

        .page_body h2 + p.h2_en::after{
            content: "- Booster Future Women Program";
            color: var(--base_color2);
            font-size: 0.8em;
            margin-left: 0.5em;
        }


    .page_body h3{
        font-size: 1.4em;
        font-weight: 500;
        padding-left: 0.5em;
        border-left: 3px solid #98CDB3;
        margin: 2.2em 0 1.5em 0;
        line-height: 1.4;
    }

    .page_body > h3:nth-of-type(1){
        margin-top: 0;
    }

    .page_body > * + h3:nth-of-type(1){
        margin-top: 2.5em;
    }

    .page_body h3.mt_none{
        margin-top: 0;
    }

    .page_body h4{
        font-size: 1.15em;
        font-weight: 500;
        margin: 2em 0 0.9em 0;
        padding-left: 2rem;
        line-height: 1.4;
        position: relative;
        clear: both;
    }

    .page_body h4.line_ttl{
        font-size: 1.15em;
        font-weight: 500;
        padding:0 0 0.5rem 0;
        border-bottom: 1px solid #98CDB3;
        margin:0 0 0.7rem 0;
        width: fit-content;
    }

    .page_body h4::before{
        content:"";
        width: 1.625rem;
        aspect-ratio: 1 / 1;
        background: url(../shared/h4_icon.svg) no-repeat;
        background-size: contain;
        position: absolute;
        top: calc(50% - 0.9125rem);
        left: 0;
    }

    .page_body h4.line_ttl::before{
        display: none;
    }

    .page_body h5{
        font-size: 1.1em;
        font-weight: 500;
        margin: 1.5em 0 0.3em 0;
        line-height: 1.4;
        position: relative;
        clear: both;
    }

    .page_body p {
        margin: 0 0 1em;
    }

    /*グループ化されたh5に続くp*/
    .page_body .wp-block-group h5 ~ p{
        margin-left: 1.2em;
        margin-right: 1.2em;
        line-height: 1.7;
    }

    .page_body .wp-block-image figure {
        margin-bottom: 1em;
    }

    .page_body .wp-block-image figure.alignleft {
        margin-right: 2em;
    }

    .page_body .wp-block-image figure.alignright {
        margin-left: 2em;
    }

    .page_body ol,
    .page_body ul{
        line-height: 1.6;
    }

    .page_body ol{
        list-style: decimal;
        margin: 1em;
    }

        .page_body ol li{
            margin: 0 0 0.3em 1.3em;
        }

    .page_body ul{
        margin: 1em;
    }

        .page_body ul li{
            margin: 0 0 0.3em 0;
            padding-left: 0.85em;
            position: relative;
        }

            .page_body ul li:before{
                content: "";
                width: 0.25rem;
                height: 0.25rem;
                border-radius: 50%;
                display: block;
                background: #555;
                position: absolute;
                top: 0.6em;
                left: 0;
            }

        .page_body ul li ol,
        .page_body ul li ul,
        .page_body ol li ul,
        .page_body ol li ol{
            margin: 0;
        }

        .page_body ul li ol > li{
            padding-left: 0;
            margin-left: 0.3em;
        }

        .page_body ul li ol > li::before{
            content: none;
        }

    .page_body img{
        max-width:100%;
        height: auto;
    }

    .page_body a{
        color: #003d84;
    }

    /*
    .page_body a:hover{
        color: #2182b9;
    }
    */
    /*
    .page_body a[target="_blank"]::after{
        content: "";
        display: inline-block;
        width: 0.5rem;
        height: 0.5rem;
        background-image: url(../shared/icon/icon_target_blank.png);
        background-position: center;
        background-size: contain;
        margin-left: 0.3em;
    }
    */

    /*画像の時には表示しない*/
    .page_body a[target="_blank"]:has(> img):not(:has(> :not(img)))::after {
        content: none;
      }

    /*電話番号リンクをPCでは無効化*/
    .page_body a[href^="tel"]{
        pointer-events: none;
        color: inherit;
        text-decoration: none;
    }

    .page_body table{
        margin: 0.5em 0;
        line-height: 1.6;
        border-top: 2px solid #7f7f7f;
        /*border-collapse: separate !important;*/
        position: relative;
    }
    
        .page_body table th,
        .page_body table td{
            border: 1px solid #ccc !important;
            padding: 0.8em;
        }

        .page_body table th:first-child,
        .page_body table td:first-child{
            border-left-color: rgba(255,255,255,0) !important;
        }

        .page_body table th:last-child,
        .page_body table td:last-child{
            border-right-color: rgba(255,255,255,0) !important;
        }

        .page_body table th{
            text-align: center;
            background: #eaf5f0;
            font-weight: 500;
        }

        .page_body table thead tr:first-child th,
        .page_body table tbody tr:first-child th{
            border-top: none !important;
        }


        .page_body table tbody th,
        .page_body table tbody td{
        }

        .page_body table tbody th{
            text-align: left;
        }

        .page_body .centering table tbody th{
            text-align: center;
        }

        .page_body table tbody td{
            background: #fff;
        }

        .page_body strong{
            font-weight: 600;
        }

        .page_body em{
            font-style: italic;
        }

        .page_body .page_back{
            margin-top: 3em;
            display: flex;
            justify-content: center;
            clear: both;
        }

            .page_body .page_back a{
                display: block;
                color: #222;
                text-decoration: none;
                border-bottom: 1px solid #222;
                font-size: 0.9em;
                padding: 0.1em 0.5em 0;
                transition: .3s all ease;
            }

            .page_body .page_back a:hover{
                
            }

    .page_body .figs_layout1{
        margin-bottom: 3em;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page_body .figs_layout1 ul{
        margin-top: 2em;
        margin-left: 5em;
        margin-right: 5em;
        margin-bottom: 0.5em;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5em;
    }

        .page_body .figs_layout1 ul li{
            width: calc((100% - 1.5em) / 2);
            margin: 0;
            padding: 0;
        }

        .page_body .figs_layout1 ul li::before{
            content: none;
        }

    .page_body .figs_layout1 p{
        margin: 0;
    }

.next_page_btn{
    margin-top: 5rem;
    position: relative;
}

.next_page_btn:before{
    content:"";
    width: 100%;
    height: 100%;
    background: url(../shared/bg_button_shadow.png);
    background-size: 9px 9px;
    background-repeat: repeat;
    border-radius: 0.5rem;
    position: absolute;
    top: 0.3125rem;
    left: 0.3125rem;
    z-index: 0;
}

.next_page_btn a{
    border: 1px solid #305874;
    display: block;
    padding: 2.2rem 2rem;
    line-height: 1;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a4465;
    background: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: .3s all ease;
}

.next_page_btn a:hover{
    color: #1a4465;
}

.next_page_btn a:after{
    content:"";
    width: 0.875rem;
    height: 0.75rem;
    background: url(../shared/arr/arr_10.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.375rem);
    right: 1.7rem;
    z-index: 2;
    transition: .3s all ease;
}

.next_page_btn a:hover:after{
    right: 1.2rem;
}

.page_body .imgs_table{
    margin: 2em 0;
    display: block;
}

    .page_body .imgs_table tbody{
        display: block;
    }

    .page_body .imgs_table tbody tr{
        display: flex;
    }

    .page_body .imgs_table tbody tr td{
        border: none;
        flex: 1;
    }

.wp-block-file{
    text-align: center;
}

.wp-block-file .wp-block-file__button{
    display: none;
}

.page_body .child_page_list{
    margin-top: 5em;
}

.page_body .child_page_list a{
    text-decoration: none;
}

.contents.index .page_body .child_page_list{
    margin-top: 2em;
}

.page_body .child_page_list > ul{
    display: flex;
    flex-wrap: wrap;
    gap: 1em 2em;
    margin: 0;
}

    .page_body .child_page_list > ul > li{
        box-sizing: border-box;
        margin: 0;
        padding: 0.2em 0;
        width: calc((100% - 2em) / 2);
    }

    .page_body .child_page_list > ul > li::before{
        content: none;
    }

    .page_body .child_page_list > ul > li > a{
        box-sizing: border-box;
        display: flex;
        align-items: center;
        color: var(--base_color1);
        font-weight: 600;
        height: 4rem;
        padding: 0 2em 0 1em;
        font-size: 1.1em;
        background: #fff;
        border-bottom: 1px solid #ccc;
        text-decoration: none;
        position: relative;
        line-height: 1.3;
        transition: .3s all ease;
    }

        .page_body .child_page_list > ul > li > a::after{
            font-family: FontAwesome;
            content:"\f0da";
            position: absolute;
            top: calc(50% - 0.5rem);
            right: 1em;
            color: #98cdb3;
            font-weight: normal;
            transition: .3s all ease;
        }

    .page_body .child_page_list > ul > li > a:hover{
        /*
        background: #0f228d;
        color: #fff;
        */
        border-bottom-color: rgba(255,255,255,0);
        box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
    }

        .page_body .child_page_list > ul > li > a:hover::after{
            transform: translateX(0.5rem);
        }

    .page_body .child_page_list > ul > li > ul{
        /*
        margin: 1.5em 1em 0 1em;
        line-height: 1.4;
        */
        display: none;
    }

        .page_body .child_page_list > ul > li > ul > li{

        }

        .page_body .child_page_list > ul > li > ul > li::before{
            font-family: FontAwesome;
            content:"\f105";
            width: auto;
            height: auto;
            background: none;
            top: 0;
            font-size: 0.9em;
            color: #555;
        }

        .page_body .child_page_list > ul > li > ul > li a:hover{
            text-decoration: underline;
        }

    .page_body .child_page_list > ul > li > ul ul{
        display: none;
    }

.page_body .books_list{
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}

    .page_body .books_list > li{
        box-sizing: border-box;
        width: calc((100% - 2em) / 2);
        padding: 1em;
        margin: 0;
        display: flex;
        border: 1px solid rgba(0,0,0,0.2);
        line-height: 1.5;
        border-radius: 0.25rem;
    }

    .page_body .books_list > li::before{
        content: none;
    }

        .page_body .books_list > li .img,
        .page_body .books_list > li figure{
            margin: 0;
        }

        .page_body .books_list > li .text{
            flex: 1;
            margin-left: 1.5em;
            padding-top: 0.5em;
        }

        .page_body .books_list > li p{
            font-weight: 500;
            font-size: 1.05em;
        }

        .page_body .books_list > li ul{
            margin: 0;
        }

            .page_body .books_list > li ul li::before{
                font-family: FontAwesome;
                content:"\f105";
                width: auto;
                height: auto;
                background: none;
                color: #0f228b;
                top: 0;
                left: 0;
                font-size: 0.9em;
            }



.nav-links{
    display: flex;
    justify-content: center;
    gap: 0.375em;
    margin: 1em 0;
}

    .nav-links .page-numbers{
        box-sizing: border-box;
        width: 2rem;
        height: 2rem;
        background: #eee;
        border: 1px solid rgba(255,255,255,0);
        line-height: 1;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #222;
        border-radius: 0.25rem;
        transition: .3s all ease;
    }

    .nav-links .page-numbers:hover{
        border-color: #98cdb3;
        background: #fff;
    }

    .nav-links .page-numbers.current{
        background: #98cdb3;
        color: var(--base_color1);
    }

    .nav-links .page-numbers.dots{
        background: none;
        width: auto;
        border-radius: 0;
    }

    .nav-links .page-numbers.dots:hover{
        background: none;
        border-color: rgba(255,255,255,0);
    }

    .nav-links .page-numbers.prev,
    .nav-links .page-numbers.next{
        background: none;
        width: auto;
        border-color: rgba(255,255,255,0);
        border-radius: 0;
    }

    .nav-links .page-numbers.prev:hover,
    .nav-links .page-numbers.next:hover{
        border-bottom-color: var(--base_color1);
    }

    .nav-links .page-numbers.prev{
        margin-right: 1em;
    }

    .nav-links .page-numbers.next{
        margin-left: 1em;
    }


/*カラム割*/
.column_wrapper.two_c{
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

    .column_wrapper.two_c .column_main{
        width: auto;
        flex: 1;
    }

    .column_wrapper.two_c .column_sub{
        width: 10rem;
    }

        .column_sub .archives_box dl{
            line-height: 1.5;
            margin-bottom: 2em;
        }

        .column_sub .archives_box dl dt{
            font-weight: 450;
            border-bottom: 2px solid #cbcbcb;
            margin-bottom: 0.8em;
            color: #4d4d4d;
        }

        .column_sub .archives_box dl dd{
            padding: 0 0.5em;
        }

        .column_sub .archives_box dl dd ul{
            font-size: 0.92em;
        }

        .column_sub .archives_box dl dd ul li{
            margin-bottom: 0.3em;    
        }

        .column_sub .archives_box dl dd ul li a{
            color: #111;
            text-decoration: none;
            display: block;
            position: relative;
            padding-left: 1em;
            transition: .3s all ease;
        }

            .column_sub .archives_box dl dd ul li a::before{
                font-family: FontAwesome;
                content:"\f105";
                font-size: 0.9em;
                color: #555;
                display: inline-block;
                position: absolute;
                top: 0.2em;
                left: 0;
            }

        .column_sub .archives_box dl dd ul li a:hover,
        .column_sub .archives_box dl dd ul li a:hover::before{
            color: #2db1b9;
        }

.index_nav_box{}

    .page_body .index_nav_box hr{
        border: none;
        border-top: 1px solid #ccc;
        margin: 4em 0 5em;
    }

    .page_body .index_nav_box h2{
        color: #212121;
        font-size: 2em;
        margin: 3em 2.5rem 1em;
        padding: 0;
        background: none;
    }

    .page_body .index_nav_box h2:nth-of-type(1){
        margin-top: 0;
    }

    .page_body .index_nav_box ul{
        margin: 0 2.5rem;
    }

    .page_body .index_nav_box ul li{
        margin: 0;
        padding: 0;
    }

        .page_body .index_nav_box ul li::before{
            content: none;
        }

    .page_body .index_nav_box .index_img_nav{
        display: flex;
        gap: 2rem;
        margin-bottom: 3em;
    }

        .page_body .index_nav_box .index_img_nav li{
            width: calc((100% - 4rem) / 3);
        }

            .page_body .index_nav_box .index_img_nav li a{
                display: flex;
                flex-direction: column;
                text-decoration: none;
            }

            .page_body .index_nav_box .index_img_nav li a .fig{
                border-radius: 0.5rem;
                margin-bottom: 0.3em;
                overflow: hidden;
                transition: .3s all ease;
            }

            .page_body .index_nav_box .index_img_nav li a:hover .fig{
                box-shadow: 0 0 5px 2px rgba(0,0,0,0.1);
            }

                .page_body .index_nav_box .index_img_nav li a .fig img{
                    transition: .3s all ease;
                }

                .page_body .index_nav_box .index_img_nav li a:hover .fig img{
                    transform: scale(1.05);
                    filter: brightness(1.1);
                }

                    .page_body .index_nav_box .index_img_nav li a .lbl{
                        color: #212121;
                        font-size: 1.25em;
                        font-weight: 700;
                        position: relative;
                    }

                    .page_body .index_nav_box .index_img_nav li a:hover .lbl{
                        color: #0f218b;
                    }

                        .page_body .index_nav_box .index_img_nav li a .lbl::after{
                            content: "";
                            width: 1rem;
                            aspect-ratio: 1 / 1;
                            background-image: url(../shared/icon/icon_arrow_blue.png);
                            background-repeat: no-repeat;
                            background-size: contain;
                            position: absolute;
                            top: calc(50% - 0.5rem);
                            right: 0;
                            transition: .3s all ease;
                        }

    .page_body .index_nav_box .index_nav_catch_img{
        overflow: hidden;
        margin: 0 2.5rem 1.5em 2.5rem;
        border-radius: 0.5rem;
    }

    .page_body .index_nav_box .index_rc_nav{
        display: flex;
        justify-content: center;
        gap: 2em;
    }

        .page_body .index_nav_box .index_rc_nav li{
           box-sizing: border-box;
           width: 17.5rem;
           height: 3.5rem;
        }

                .page_body .index_nav_box .index_rc_nav li a{
                    box-sizing: border-box;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 100%;
                    color: #212121;
                    border: 1px solid #9f9f9f;
                    border-radius: 100vh;
                    background: #fff;
                    text-decoration: none;
                    font-weight: 600;
                    padding-top: 0.25em;
                    position: relative;
                    transition: .3s all ease;
                }

                .page_body .index_nav_box .index_rc_nav li a::after{
                    content: "";
                    width: 1rem;
                    aspect-ratio: 1 / 1;
                    background-image: url(../shared/icon/icon_arrow_gray.png);
                    background-repeat: no-repeat;
                    background-size: contain;
                    position: absolute;
                    top: calc(50% - 0.5rem);
                    right: 0.75em;
                    transition: .3s all ease;
                }

                .page_body .index_nav_box .index_rc_nav li a:hover{
                    border-color: #0f218b;
                    color: #0f218b;
                }

                .page_body .index_nav_box .index_rc_nav li a:hover::after{
                    background-image: url(../shared/icon/icon_arrow_blue.png);
                }

    .page_body .index_nav_box .index_basic_nav{
        display: flex;
        flex-wrap: wrap;
        gap: 0 2em;
    }

        .page_body .index_nav_box .index_basic_nav > li{
            box-sizing: border-box;
            margin: 0;
            padding: 0.2em 0;
            width: calc((100% - 2em) / 2);
            border-bottom: 2px solid #ccc;
        }

        .page_body .index_nav_box .index_basic_nav > li:nth-child(1),
        .page_body .index_nav_box .index_basic_nav > li:nth-child(2){
            border-top: 4px solid #ccc;
        }

        .page_body .index_nav_box .index_basic_nav > li > a{
            box-sizing: border-box;
            display: flex;
            align-items: center;
            color: #0d228d;
            font-weight: 600;
            height: 3.6rem;
            padding: 0 2em 0 1em;
            font-size: 1.1em;
            background: #fff;
            text-decoration: none;
            position: relative;
            line-height: 1.3;
            border: 2px solid rgba(13,34,141,0);
            transition: .3s all ease;
        }

            .page_body .index_nav_box .index_basic_nav > li > a::after{
                content: "";
                width: 1rem;
                aspect-ratio: 1 / 1;
                background-image: url(../shared/icon/icon_arrow_blue.png);
                background-repeat: no-repeat;
                background-size: contain;
                position: absolute;
                top: calc(50% - 0.5rem);
                right: 0.75em;
                transition: .3s all ease;
            }

        .page_body .index_nav_box .index_basic_nav > li > a:hover{
            background: rgba(13,34,141,1);
            color: #fff;
        }

            .page_body .index_nav_box .index_basic_nav > li > a:hover::after{
                filter: brightness(0) invert(1);
            }





@media screen and (min-width:1px) and (max-width:1400px) {
}

@media screen and (min-width:1px) and (max-width:1280px) {

}

@media screen and (min-width:1px) and (max-width:1200px) {

}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    .contents::before{
        background-size: 100% auto;
        background-position: right top;
    }

    .column_wrapper{
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .column_wrapper .column_main{
        padding-right: 1.5rem;
    }

    .column_wrapper.two_col .column_sub{
        width: 13rem;
    }




}
/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:479px) {
    .contents::before{
        background-size: 100% auto;
    }


    .content_title{
        height: 8rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

        .content_title .lbl_en{
            margin-bottom: 0.7em;
            font-size: 1.2rem;
        }

        .content_title .lbl_ja{
            font-size: 1.8rem;
        }

    .page_title{
        margin-bottom: 2em;
    }

    .page_title h2{
        font-size: 1.5em;
    }

    .page_body{
        line-height: 1.6;
    }

    .page_body h2{
        font-size: 1.6em;
        background-size: auto 0.8rem;
        margin: 2em 0 1.5em 0;
    }

    .page_body h3{
        font-size: 1.3em;
        margin: 1.5em 0 0.5em 0;
    }

        .page_body h3::before{
            width: 100%;
            left: 0;
        }

        .page_body h3::after{
            width: 50%;
            left: 0;
        }

    .page_body h4{
        font-size: 1.15em;
        margin: 1.5em 0 0.7em 0;
        padding-left: 2rem;
        font-weight: 600;
    }

        .page_body h4::before{
            width: 1.5rem;
        }

    .page_body h5{
        font-size: 1.05em;
        margin: 1em 0 0.4em 0;
    }

    .page_body p{
        margin: 0 0 1em;
    }

    .page_body ul,
    .page_body ol{
        margin: 0.5em 0;
    }


    /*カラム割*/
    .column_wrapper.two_col{
        flex-direction: column;
    }

    .column_wrapper.two_col .column_main{
        flex: initial;
        padding: 0;
    }

    .column_wrapper.two_col .column_sub{
        margin-top: 5em;
        width: auto;
        margin-right: 0;
    }

    .column_wrapper.two_col .column_sub .page_nav dl dt{
        padding-top: 0;
    }

    .column_sub .bn_bfw{
        justify-content: center;
    }

    .column_sub .archives_box dl dd ul{
        display: flex;
        flex-wrap: wrap;
        gap: 0 1em;
    }

        .column_sub .archives_box dl dd ul li{
            width: calc((100% - 1em) / 2);
        }

        .column_sub .archives_box dl.archive_year dd ul li{
            width: calc((100% - 3em) / 4);
        }

    .contents.index .page_body .child_page_list{
        margin-top: 0;
    }

    .page_body .child_page_list > ul{
        flex-direction: column;
        gap: 0;
    }

        .page_body .child_page_list > ul > li{
            width: 100%;
        }
}


/* ##########印刷用########## */
@media print{
    .column_wrapper{
        width: calc(100% - 4vw);
    }
}