@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/*--京base.css--*/
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
    outline-offset: -2px;
}

/*
    font-family: "IBM Plex Sans JP", sans-serif;
    font-family: "Open Sans", sans-serif;
*/

html {
    font-size: 16px;
}

body {
    width: 100%;
    height: 100%;
    color: #000;
    font-family: "IBM Plex Sans JP", sans-serif;
    background-color: #fff;
    line-height: 1.0;
    -webkit-text-size-adjust: 100%;
}

html.side_nav_show {
    overflow-y: hidden;
}

button,
input[type="search"],
input[type="text"],
input[type="email"],
input[type="submit"]{
    font-family: "IBM Plex Sans JP", sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

img{
    vertical-align:bottom;
}

#container{
    width: 100%;
    position: relative;
}

/*----------header----------*/
header{
    box-sizing: border-box;
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    transition: .5s all ease;
}

    header > .box_inner{
        box-sizing: border-box;
        height: 7rem;
        padding: 1rem 7rem 1rem 1rem;
        display: flex;
        transition: .3s all ease;
    }

        header > .box_inner img{
            max-width: 100%;
            height: auto;
        }

        header > .box_inner .site_title{
            transition: .3s all ease;
        }

            header > .box_inner .site_title a{
                display: flex;
                justify-content: center;
                align-items: center;
                width: 5rem;
                aspect-ratio: 1 / 1;
                background: #fff;
                border-radius: 0.25rem;
                transition: .3s all ease;
            }

            header > .box_inner .site_title a:hover{
                filter: brightness(1.1);
            }

                header > .box_inner .site_title a .logo{
                    width: 4rem;
                }

    header .lang_changer{
        margin-left: 1rem;
    }

    header .lang_changer a{
        display: flex;
        color: #0f208a;
        border: 1px solid #0f208a;
        text-decoration: none;
        padding: 0.4em 1em 0.3em;
        border-radius: 100vh;
        background: #fff;
        transition: .3s all ease;
    }

    header .lang_changer a:hover{
        color: #fff;
        background: #0f208a;
    }

/*small_header*/
.small_header header > .box_inner{
    background: #fff;
    box-shadow: 0 10px 5px -5px rgba(0,0,0,0.1);
    height: 5rem;
    padding: 0 7rem 0 1rem;
}

/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:2;
    padding-top: 7rem;
    padding-bottom: 8rem;
}


/*-----footer-----*/
footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fafafa;/*仮色*/
}

    footer > .box_inner{
        display: flex;
        justify-content: center;
        gap: 8rem;
        padding: 4.5rem 3vw 3rem;
    }

        footer > .box_inner .f_site_title{
            width: 25rem;
        }

            footer > .box_inner .f_site_title a{
                display: block;
            }

                footer > .box_inner .f_site_title a img{
                    max-width: 100%;
                    height: auto;
                }

        footer > .box_inner .campus_info_box{
            display: flex;
            gap: 5em;
            line-height: 1.4;
        }

            footer > .box_inner .campus_info_box dl{}

                footer > .box_inner .campus_info_box dl dt{
                    font-size: 1.05em;
                    font-weight: 500;
                    text-indent: -0.5em;
                    margin-bottom: 0.5em;
                }

                    footer > .box_inner .campus_info_box dl dt::before{
                        content: "［";
                    }

                    footer > .box_inner .campus_info_box dl dt::after{
                        content: "］";
                    }

                footer > .box_inner .campus_info_box dl dd{
                    font-size: 0.9em;
                }

                footer > .box_inner .campus_info_box dl dd a[href^="tel:"]{
                    color: #111;
                    text-decoration: none;
                    pointer-events: none;
                }

    footer > .box_footer{
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        width: calc(100% - 6rem);
        padding: 3rem 1rem;
        border-top: 2px solid rgba(0,0,0,0.1);
        font-size: 0.9em;
    }

        footer > .box_footer .footer_links ul{
            display: flex;
            gap: 2em;
        }

            footer > .box_footer .footer_links ul li{}

                footer > .box_footer .footer_links ul li a{
                    color: #111;
                    text-decoration: none;
                }

                footer > .box_footer .footer_links ul li a:hover{
                    text-decoration: underline;
                }

        footer > .box_footer .copyright{}

/*-----nav_oc-----*/
.nav_oc{
    width: 5rem;
    height: 5rem;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 11;
    transition: .3s all ease;
}

    .menu-trigger{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        background: none;
        background: #0f228b;
        border: none;
        border-radius: 0.25rem;
        padding-bottom: 0.5rem;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        transition: .3s all ease;
    }

    .menu-trigger.active{
        background: #0f228b;
        border-color: #0f228b;
    }

    .menu-trigger:hover{
        filter: brightness(1.1);
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 2rem;
            height: 1.375rem;
            margin-bottom: 0.75rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: #fff;
                position: absolute;
                width: 2rem;
                left: 0;
                height: 2px;
            }

            .menu-trigger .lines span:nth-of-type(1) {
                top: 0;
            }

            .menu-trigger .lines span:nth-of-type(2) {
                top: calc(50% - 1px);
            }
            .menu-trigger .lines span:nth-of-type(3) {
                bottom: 0;
            }

            .menu-trigger.active .lines span:nth-of-type(1) {
                transform: rotate(35deg) scaleX(1.15);
                transform-origin: left top;
            }

            .menu-trigger.active .lines span:nth-of-type(2) {
                opacity: 0;
            }

            .menu-trigger.active .lines span:nth-of-type(3) {
                transform: rotate(-35deg) scaleX(1.15);
                transform-origin: left bottom;
            }

        .menu-trigger .lbl{
            color: #fff;
            font-size: 0.875rem;
            line-height: 1;
        }

.small_header .nav_oc{
    top: 0.5rem;
    width: 4rem;
    height: 4rem;
}

.small_header .menu-trigger .lines{
    margin-bottom: 0.5rem;
}

/*-----side_nav-----*/
.side_nav{
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    transition: .3s all ease;
    background: rgba(0,0,0,0);
    transform: translateX(0.5rem);
}

.side_nav.active{
    z-index: 10;
    opacity: 1;
    transform: translateX(0);
    background: rgba(0,0,0,0.75);
    overflow-y: auto;
}

    .side_nav_box{
        box-sizing: border-box;
        background: #f5f5f5;
        padding: 1rem;
        width: 81.25%;
        height: 100vh;
        overflow-y: auto;
        box-shadow: 1rem 0 1rem 1rem rgba(0,0,0,0.2);
    }

        .side_nav_box > .box_header{
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding: 0 10rem 0 0
        }

            .sn_site_title_lang_changer{
                display: flex;
                align-items: center;
            }

            .sn_site_title{
                width: 20rem;
                border-radius: 0.5rem;
                overflow: hidden;
            }

                .sn_site_title a{
                    display: block;
                }

                    .sn_site_title a img{
                        max-width: 100%;
                        height: auto;
                    }

            .sn_lang_changer{
                margin-left: 1.5rem;
            }

                .sn_lang_changer a{
                    display: flex;
                    color: #0f208a;
                    border: 1px solid #0f208a;
                    text-decoration: none;
                    padding: 0.4em 1em 0.3em;
                    border-radius: 100vh;
                    background: #fff;
                    transition: .3s all ease;
                }

                .sn_lang_changer a:hover{
                    color: #fff;
                    background: #0f208a;
                }
            
            .sn_search{
                margin-bottom: 0.5rem;
            }

                .sn_search .input_submit_box{
                    display: flex;
                    height: 2.5rem;
                    border-radius: 100vh;
                    overflow: hidden;
                    border: 1px solid rgba(204,204,204,0.5);
                }

                    .sn_search .input_submit_box .input_box{
                        display: flex;
                        align-items: center;
                        background: #fff;
                        padding: 0 0.5rem 0 1rem;
                    }

                        .sn_search .input_submit_box .input_box input[type="search"]{
                            box-sizing: border-box;
                            border: none;
                            font-size: 0.9em;
                            width: 20em;
                            padding: 0.1em 0.2em 0 0.2em;
                            height: 100%;
                            outline: none;
                        }

                    .sn_search .input_submit_box .submit_box{}

                        .sn_search .input_submit_box .submit_box button{
                            background: #0f228b;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            border: none;
                            width: 2.75rem;
                            height: 100%;
                            padding: 0;
                            cursor: pointer;
                        }

                            .sn_search .input_submit_box .submit_box button img{
                                width: 1rem;
                                height: auto;
                            }

        .side_nav_box > .box_inner{
            display: flex;
            gap: 2rem;
            padding: 3rem 3rem 0 3rem;
        }

            .side_nav_box > .box_inner a{
                color: #111;
                text-decoration: none;
                transition: .3s all ease;
            }

            .side_nav_box > .box_inner a:hover{
                color: #0f228b;
            }


            .side_nav .side_global_nav1{
                width: 33%;
            }

                .side_nav .side_global_nav1 > ul{}

                    .side_nav .side_global_nav1 > ul > li{
                        position: relative;
                        border-bottom: 1px solid #ccc;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h{
                        position: relative;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h a{
                        display: flex;
                        align-items: center;
                        padding: 1rem;
                        transition: .3s all ease;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h a:hover{
                        background: #fff;
                    }

                        .side_nav .side_global_nav1 > ul > li > .sgn_h a .icon{
                            width: 2rem;
                        }

                            .side_nav .side_global_nav1 > ul > li > .sgn_h a .icon img{
                                max-width: 100%;
                                height: auto;
                            }

                        .side_nav .side_global_nav1 > ul > li > .sgn_h a .lbl{
                            flex: 1;
                            font-weight: 700;
                            font-size: 1.05em;
                            padding-left: 1.25em;
                            padding-right: 4rem;
                        }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h button{
                        position: absolute;
                        top: 0;
                        right: 0;
                        background-color: rgba(255,255,255,0);
                        background-image: url(../shared/icon/icon_plus.png);
                        background-repeat: no-repeat;
                        background-size: 1rem auto;
                        background-position: center center;
                        width: 3rem;
                        height: 100%;
                        border: none;
                        cursor: pointer;
                    }

                    .side_nav .side_global_nav1 > ul > li > .child_nav{
                        position: relative;
                        line-height: 1.4;
                        border-top: 1px solid #ccc;
                        padding: 0;
                        height: 0;
                        opacity: 0;
                        overflow: hidden;
                        transition: .3s all ease;
                    }

                    .side_nav .side_global_nav1 > ul > li.active > .child_nav{
                        padding: 0.5em 0;
                        height: auto;
                        opacity: 1;
                    }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul{
                            position: relative;
                        }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li{
                            position: relative;
                        }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a{
                            position: relative;
                            display: block;
                            padding: 0.4em 2em 0.3em 0.8em;
                        }

                            .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a::after{
                                content: "";
                                display: inline-block;
                                width: 1rem;
                                aspect-ratio: 1 / 1;
                                background-image: url(../shared/icon/icon_arrow_gray.png);
                                background-size: contain;
                                background-position: center center;
                                position: absolute;
                                top: calc(50% - 0.5rem);
                                right: 1em;
                            }

                        /*区切り用*/
                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a[href="#"]{
                            pointer-events: none;
                            font-weight: 500;
                            padding-bottom: 0;
                        }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a[href="#"]::after{
                            content: none;
                        }

                        /*太字化*/
                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a[href$="department/general_education/"],
                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a[href$="department/sub-advance/"]{
                            font-weight: 500;
                        }


                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul#menu-nav_department > li{
                            margin-bottom: 0.5em;
                        }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul#menu-nav_department > li > ul > li > a::after{
                            font-family: FontAwesome;
                            content:"\f105";
                            background: none;
                            width: auto;
                            top: 0.3em;
                            color: #999;
                        }

                    

            .side_nav .side_global_nav2{
                flex: 1;
            }

                .side_nav .side_global_nav2 .sgn_m{
                    margin-bottom: 3em;
                }

                .side_nav .side_global_nav2 .sgn_m > ul{
                    display: flex;
                    flex-wrap: wrap;
                }

                .side_nav .side_global_nav2 .sgn_m > ul > li{
                    border-bottom: 1px solid #ccc;
                    width: 50%;
                }

                .side_nav .side_global_nav2 .sgn_m > ul > li > a{
                    display: block;
                    padding: 1rem;
                    font-weight: 500;
                    position: relative;
                    transition: .3s all ease;
                }

                .side_nav .side_global_nav2 .sgn_m > ul > li > a:hover{
                    background: #fff;
                }

                    .side_nav .side_global_nav2 .sgn_m > ul > li > a::after{
                        content: "";
                        display: inline-block;
                        background-image: url(../shared/icon/icon_arrow_gray.png);
                        background-repeat: no-repeat;
                        background-size: contain;
                        width: 1rem;
                        aspect-ratio: 1 / 1;
                        position: absolute;
                        top: 1rem;
                        right: 1rem;
                    }

                .side_nav .side_global_nav2 .sgn_target > ul{
                    display: flex;
                    justify-content: center;
                    gap: 1em;
                }

                    .side_nav .side_global_nav2 .sgn_target > ul > li{}

                        .side_nav .side_global_nav2 .sgn_target > ul > li a{
                            background: #fff;
                            font-weight: 500;
                            display: flex;
                            align-items: center;
                            gap: 0.5em;
                            border-radius: 100vh;
                            padding: 0.25em 0.8em 0.25em 0.25em;
                            color: #0f228b;
                            transition: .3s all ease;
                        }

                        .side_nav .side_global_nav2 .sgn_target > ul > li a:hover{
                            box-shadow: 0 0 0 1px #0f228b;
                        }
                        
                        .side_nav .side_global_nav2 .sgn_target > ul > li a::before{
                            content: "";
                            width: 1.5rem;
                            aspect-ratio: 1 / 1;
                            border-radius: 50%;
                            background-color: #0f228b;
                            background-image: url(../shared/icon/icon_arrow_w_l.png);
                            background-repeat: no-repeat;
                            background-size: 1rem auto;
                            background-position: center center;
                        }

/*ページトップ*/
.pagetop{
    width:5rem;
    height:5rem;
    position:fixed;
    bottom:3rem;
    right:3.75rem;
     transform:translateY(100px);
    transition:.3s all ease;
    opacity:0;
    z-index: -1;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
    z-index:9;
}

    .pagetop a{
        box-sizing: border-box;
        display:flex;
        justify-content: center;
        align-items: center;
        transition:.5s all ease;
        width:100%;
        height:100%;
        text-decoration:none;
        border-radius: 50%;
        background: #0f228b;
        padding-bottom: 0.2rem;
    }
    
    .pagetop a:hover{
        filter: brightness(1.1);
    }


    .pagetop a:before{
        font-family: FontAwesome;
        content:"\f106";
        color: #fff;
        font-size: 2.4rem;
    }

.side_tabs{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    height: 100%;
}

    .side_tabs ul{
        box-sizing: border-box;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 10rem;
        gap: 0.5rem;
    }

        .side_tabs ul li{
            transition: .3s all ease;
            transform: translateX(0.25rem);
        }

        .side_tabs ul li:hover{
            transform: translateX(0);
            filter: brightness(1.1);
        }

            .side_tabs ul li a{
                display: flex;
                align-items: center;
                width: 3.5rem;
                background: #ccc;
                border-radius: 0.375rem 0 0 0.375rem;
                writing-mode: vertical-lr;
                text-decoration: none;
                font-weight: 600;
                font-size: 1.05em;
                padding: 1.5em 0.25rem 1.5em 0;
            }

            .side_tabs ul li.st_current a{
                color: #fff;
                background: #0f228b;
            }

            .side_tabs ul li.st_graduate a{
                background: #d7147d;
                color: #fff;
            }

            .side_tabs ul li.st_staff a{
                /*background: #f5f5f5;*/
                background: #eaeaea;
                color: #0f208a;
            }


/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"]{
    padding-top: 150px;
    margin-top:-150px;
}

/*↑全部にかけてみる暫定*/
a[id]{
    padding-top: 150px;
    margin-top:-150px;
}


/*改行のPC,SPでの表示切替*/
br.pc,
img.pc,
span.pc{
    display:inline;
}

br.sp,
img.sp,
span.sp{
    display:none;
}

.ta_center{
    text-align:center;
}

.ta_left{
    text-align:left;
}

.ta_right{
    text-align:right;
}

/*WP汎用*/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.wp-caption,
[class*='wp-image'] {
  /*display: block;*/
  max-width: 100% !important;
  /*margin-top: 1.5em;*/
  /*text-align: center;*/
  /*margin: 0 auto;*/
}
.wp-caption-text {
  margin-top: 0;
}

.wp-caption{
    width: auto !important;
}

/*1280px以下*/
@media screen and (min-width:1px) and (max-width:1280px){


        

    
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){

}

/*1100px以下*/
@media screen and (min-width:1px) and (max-width:1100px){
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.6vw;
    }

    footer > .box_inner{
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .side_nav_box > .box_header{
        padding-right: 0;
        flex-direction: column;
        align-items: center;
    }

        .sn_site_title{
            width: 18rem;
        }

        .sn_search{
            margin: 1rem auto 0;
        }

    .side_nav_box > .box_inner{
        flex-direction: column;
        padding-top: 1rem;
    }

    .side_nav .side_global_nav1{
        width: 100%;
    }

        .side_nav .side_global_nav1 > ul{
            display: flex;
            flex-wrap: wrap;
        }

        .side_nav .side_global_nav1 > ul > li{
            width: 50%;
        }


}

/* ##########印刷用########## */
@media print{
    html{
        width: 1024px;
    }
    
    header{
        position:relative;
    }
   
    
    .contents{
        padding-top: 0;
    }
    
    .pagetop{
        display: none;
    }
    
}