@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@600&family=Noto+Sans+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Darumadrop+One&family=Dela+Gothic+One&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');

/*フォント参考用（後で消します）*/
.dela-gothic-one-regular {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.darumadrop-one-regular {
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*--京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;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;
    color: #222;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #fff;
    line-height: 1.0;
}

button,
input[type="search"],
input[type="text"],
select,
input[type="email"],
input[type="submit"]{
    font-family: 'Noto Sans JP', sans-serif;
}

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;
    /*background: rgba(255,255,255,0.99);*/
    transition: .5s all ease;
}

    header > .box_inner{
        box-sizing: border-box;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 71.875rem;
        height: 5.875rem;
        margin: 0 auto;
        padding: 0;
        transition: .3s all ease;
        position: relative;
    }

    /*
    header > .box_inner::before{
        content:"";
        display: block;
        width: 42.5rem;
        height: 42.5rem;
        background: url(../shared/fig_home_catch.png) no-repeat;
        background-size: contain;
        position: absolute;
        top: 0;
        right: calc(50% - 40rem);
    }
    */

        header > .box_inner > .logo_site_title{
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-right: auto;
            gap: 1.25rem;
            position: relative;
            z-index: 2;
        }

        header > .box_inner > .logo_site_title a{
            text-decoration: none;
            color: #222;
            transition: .3s all ease;
        }

        header > .box_inner > .logo_site_title a:hover {
            opacity: 0.9;
        }

            header > .box_inner > .logo_site_title a img{
                max-width: 100%;
                height: auto;
            }

            header > .box_inner > .logo_site_title .ku_logo{
                display: block;
                width: 3.5rem;
            }

            header > .box_inner > .logo_site_title .site_title{
                display: block;
                width: 14rem;
            }

        header > .box_inner .navs{
            box-sizing: border-box;
            position: relative;
            display: block;
            z-index: 2;
            margin-top: 0.5rem;
        }

            header > .box_inner .navs .global_nav{
                display: flex;
                align-items: center;
                justify-content: flex-end;
                position: relative;
                transition: .3s all ease;
            }

                header > .box_inner .navs .global_nav > ul{
                    display: flex;
                    align-items: center;
                    margin: 0;
                }

                    header > .box_inner .navs .global_nav > ul > li{
                        margin-right: 2rem;
                        padding-right: 2rem;
                        position: relative;
                    }

                    header > .box_inner .navs .global_nav > ul > li.gn_program{
                        padding-right: 0;
                        margin-right: 3rem;
                    }

                    header > .box_inner .navs .global_nav > ul > li:last-child{
                        margin-right: 0;
                        padding-right: 0;
                    }

                    header > .box_inner .navs .global_nav > ul > li::before{
                        content:"";
                        display: block;
                        width: 2px;
                        height: 1rem;
                        background: #2d2561;
                        position: absolute;
                        top: 0;
                        right: 0;
                    }

                    header > .box_inner .navs .global_nav > ul > li.gn_program::before,
                    header > .box_inner .navs .global_nav > ul > li:last-child::before{
                        display: none;
                    }

                        header > .box_inner .navs .global_nav > ul > li > a{
                            text-decoration: none;
                            display: block;
                            color: #2d2561;
                            font-size: 1em;
                            font-weight: 500;
                            margin-bottom: 0.5rem;
                            position: relative;
                            transition: .3s all ease;
                        }

                        header > .box_inner .navs .global_nav > ul > li.contact_btn > a{
                            padding: 0.7rem 2rem;
                            background: #fff;
                            border-radius: 2rem;
                            text-decoration: none !important;
                        }

                        header > .box_inner .navs .global_nav > ul > li > a:hover{
                            filter: brightness(1.1);
                        }

                        header > .box_inner .navs .global_nav > ul > li.active > a:before{
                            width: 100%;
                        }

                        header > .box_inner .navs .global_nav > ul > li > a .gn_name{
                            display: block;
                            text-align: center;
                            font-weight: 500;
                            position: relative;
                            padding-bottom: 0.4rem;
                        }

                        header > .box_inner .navs .global_nav > ul > li.active > a .gn_name{
                            font-weight: 600;
                        }

                        header > .box_inner .navs .global_nav > ul > li > a .gn_name:before{
                            content: "";
                            display: block;
                            width: 0;
                            height: 1px;
                            background: #2d2561;
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            transition: .5s all ease;
                        }

                        header > .box_inner .navs .global_nav > ul > li.active > a .gn_name:before{
                            width: 100%;
                        }

                        header > .box_inner .navs .global_nav > ul > li > a:hover .gn_name:before{
                            width: 100%;
                        }

                        /*gn_sub_nav*/
                        header > .box_inner .navs .global_nav > ul > li > .gn_sub_nav{
                            box-sizing: border-box;
                            background: #fff;
                            position: absolute;
                            left: calc(50% - 130px);
                            width: 260px;
                            height: 0;
                            opacity: 0;
                            padding: 0;
                            overflow: hidden;
                            transform: translateY(-1rem);
                            transition: .2s all ease;
                        }

                        header > .box_inner .navs .global_nav > ul > li:hover > .gn_sub_nav{
                            height: auto;
                            box-shadow: 0 2px 5px 1px rgba(0,0,0,0.1);
                            opacity: 1;
                            transform: translateY(0);
                        }

                            .gn_sub_nav > ul{
                                padding: 0.25rem;
                            }

                                .gn_sub_nav > ul > li{
                                }

                                    .gn_sub_nav > ul > li > a{
                                        text-decoration: none;
                                        display: block;
                                        color: #111;
                                        font-size: 0.94rem;
                                        line-height: 1.4;
                                        padding: 0.7em 0.7em;
                                        position: relative;
                                        z-index: 0;
                                    }

                                        .gn_sub_nav > ul > li > a:before{
                                            content: "";
                                            display: block;
                                            width: 100%;
                                            height: 100%;
                                            position: absolute;
                                            top: 0;
                                            left: 0;
                                            z-index: -1;
                                            background: rgba(45,37,97,0.05);
                                            transition: .3s all ease;
                                            opacity: 0;
                                            transform: scaleX(0);
                                            transform-origin: left bottom;
                                        }

                                        .gn_sub_nav > ul > li > a:hover:before{
                                            opacity: 1;
                                            transform: scaleX(1);
                                        }

                                        .gn_sub_nav > ul > li > a:after{
                                            font-family: FontAwesome;
                                            content:"\f105";
                                            position:absolute;
                                            top: 0.7em;
                                            right: 0.8em;
                                            display: inline-block;
                                            color: #bbb;
                                            transition: .3s all ease;
                                        }

                                        .gn_sub_nav > ul > li > a:hover:after{
                                            color: #2d2561;
                                            transform: translateX(0.25rem);
                                        }


/*small_header*/
.small_header header {
    /*background: rgba(34,34,34,0.99);*/
    background: rgba(255,255,255,0.99);
    box-shadow: 0 5px 10px -10px rgb(0 0 0 / 40%)/*, 0 1px 0 0 #dcdcdc*/;
}

.small_header header > .box_inner .navs .global_nav > ul > li.contact_btn > a{
    background: #2d2561;
    color: #fff;
}

/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:0;
    /*padding-bottom: 4rem;*/
    margin-top: 5.875rem;
}


/*-----footer-----*/
footer {
    position: relative;
    z-index: 1;
    padding: 0;
    overflow: hidden;
    border-top: 2px solid #dedede;
}

    footer .box_inner{
        width: 71.875rem;
        margin: 0 auto;
        padding: 3rem 0 5rem 0;
        line-height: 1.8;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    footer .box_inner .f_sns_link{
        margin-bottom: 4.375rem;
    }

    footer .box_inner .f_sns_link ul{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }

    footer .box_inner .f_sns_link ul li a{
        display: block;
        width: 2.5rem;
        transition: .3s all ease;
    }

    footer .box_inner .f_sns_link ul li a:hover{
        transform: scale(1.2);
    }

    footer .box_inner .f_sns_link ul li a img{
        max-width: 100%;
        height: auto;
    }

    footer .box_inner .f_ku_logo{
        margin-bottom: 3rem;
    }

    footer .box_inner .f_ku_logo a{
        display: block;
        width: 8.375rem;
        transition: .3s all ease;
    }

    footer .box_inner .f_ku_logo a:hover{
        opacity: 0.8;
    }

    footer .box_inner .f_ku_logo a img{
        max-width: 100%;
        height: auto;
    }

    footer .box_inner .f_address{
        font-size: 0.9rem;
        text-align: center;
    }

    footer .box_footer{
        padding: 3rem 0;
        background: #2a275e;
    }

    footer .box_footer .copyright{}

        .copyright {
            font-size: 1rem;
            color: #fff;
            text-align: center;
            letter-spacing: 0.1rem;
        }

        .copyright a{
            color: #fff;
            text-decoration: none;
        }


/*-----nav_oc-----*/
.nav_oc{
    /*display: block;*/
    display: none;/*PCでは表示しない*/
    width: 4rem;
    height: 4rem;
    position: fixed;
    top: 0.5rem;
    right: 1.5rem;
    border-radius: 50%;
    z-index: 11;
    transition: .3s all ease;
}

    .menu-trigger{
        width: 100%;
        height: 100%;
        padding: 0;
        border-radius: 50%;
        border: none;
        background: #ffffff;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: .3s all ease;
    }

    .menu-trigger:hover{
        /*background: rgba(255,255,255,0.1);*/
    }

    .small_header .menu-trigger{
        background: #2a255d;
    }

    .menu-trigger.active{
        background-color: #2a255d;
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 1.85rem;
            height: 1.5rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: #2a255d;
                position: absolute;
                width: 1.85rem;
                left: 0;
                height: 1px;
            }

            .menu-trigger .lines span:nth-of-type(1) {
                top: 0;
            }

            .menu-trigger .lines span:nth-of-type(2) {
                top: calc(50% - 0.5px);
            }
            .menu-trigger .lines span:nth-of-type(3) {
                bottom: 0;
            }

            .menu-trigger.active .lines span{
                background-color: #fff;
            }

            .small_header .menu-trigger .lines span{
                background-color: #fff;
            }

            .menu-trigger.active .lines span:nth-of-type(1) {
                transform: translateY(0.5rem) rotate(-315deg);
            }

            .menu-trigger.active .lines span:nth-of-type(2) {
                opacity: 0;
            }

            .menu-trigger.active .lines span:nth-of-type(3) {
                transform: translateY(-0.6rem) rotate(315deg);
            }

        .menu-trigger .lbl{
            color: #fff;
            font-size: 0.75rem;
            line-height: 1;
            font-weight: 500;
        }

/*-----side_nav-----*/
.side_nav{
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 26.25rem;
    height: 100%;
    transition: .3s all ease;
    background: rgba(255,255,255,0);
    align-items: flex-start;
    justify-content: center;
    padding-top: 1vh;
}

.side_nav.active{
    z-index: 10;
    opacity: 1;
    background: #f9f9f9;
    box-shadow: -10px 0 20px -20px rgba(0,0,0,0.5);
}


    .side_nav .site_search{
        display: none;
    }

    .side_nav .side_global_nav{
        box-sizing: border-box;
        width: 100%;
        padding: 110px 0 0 0;
        margin-top: 0;
        display: flex;
        justify-content: center;
    }

        .side_nav .side_global_nav > ul{
            width: 70%;
        }

            .side_nav .side_global_nav > ul > li{
                position: relative;
                margin-bottom: 1em;
            }

            .side_nav .side_global_nav > ul > li > a{
                display: block;
                font-size: 1.15em;
                padding: 0.4em 0 0.5em 0;
                color: #222;
                text-decoration: none;
                font-weight: 600;
                position: relative;
                transition: .3s all ease;
            }

            .side_nav .side_global_nav > ul > li > a::after{
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                display: block;
                width: 100%;
                border-bottom: 3px solid #004eaa;
                transition: .3s all ease;
                opacity: 0;
                transform: scaleX(0);
                transform-origin: left bottom;
            }

            .side_nav .side_global_nav > ul > li > a:hover::after{
                opacity: 1;
                transform: scaleX(1);
            }



/*ページトップ*/
.pagetop{
    width:4.5rem;
    height:4.5rem;
    position:fixed;
    bottom:90px;
    right:60px;
    z-index:10;
    transform:translateY(100px);
    transition:.3s all ease;
    opacity:0;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
}

    .pagetop a{
        display: flex;
        justify-content: center;
        align-items: center;
        transition:.5s all ease;
        width:100%;
        height:100%;
        background: #fdd000;
        border-radius: 50%;
        text-decoration: none;
    }
    
    .pagetop a:hover{
        filter: brightness(1.1);
    }

    .pagetop a:before{
        font-family: FontAwesome;
        content:"\f106";
        color: #fff;
        font-size: 2rem;
    }


/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"]{
    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;
}
.wp-caption-text {
  margin-top: 0;
}

.sp_bnr{
    display: none;
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.8vw;
    }

    header > .box_inner{
        width: auto;
        margin: 0 0 0 2.125rem;
    }

    header > .box_inner .navs{
        display: none;
    }

    header > .box_inner .recruit_btn{
        display: none;
    }

    .nav_oc{
        display: block;
        top: 1rem;
    }

    .menu-trigger .lbl{
        display: none;
    }

    .menu-trigger.active .lines span:nth-of-type(1){
        transform: translateY(0.7rem) rotate(-315deg);
    }

    .menu-trigger.active .lines span:nth-of-type(3){
        transform: translateY(-0.7rem) rotate(315deg);
    }
    
    footer .box_inner{
        width: 90vw;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .side_nav .side_global_nav > ul > li > ul{
        margin-left: 0.5rem;
    }

    .side_nav .side_global_nav > ul > li > ul > li{
        position: relative;
        margin-top: 1rem;
        padding-left: 1rem;
    }

    .side_nav .side_global_nav > ul > li > ul > li:first-child{
        margin-top: 0.6rem;
    }

    .side_nav .side_global_nav > ul > li > ul > li::before{
        content:"";
        font-family: FontAwesome;
        content:"\f0da";
        position:absolute;
        top: 0.1rem;
        left: 0;
        color: #2a255d;
    }

    .side_nav .side_global_nav > ul > li > ul > li > a{
        display: block;
        font-size: 1rem;
        color: #222;
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: .3s all ease;
    }

}

/* ##########印刷用########## */
@media print{
    header{
        position:relative;
    }
    
    .pagetop{
        display: none;
    }
    
}