@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Bona+Nova:ital,wght@0,400;0,700;1,400&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
/*--京base.css--*/
:root {
    --base_color1: #3c4542;
    --base_color2: #0067b0;
    --base_color3: #175675;
    --base_color4: #75629f;
    --font_family1: "Noto Sans JP", sans-serif;
    --font_family2: "Zen Old Mincho", serif;
    --font_family3: "Bona Nova", serif;
}

/* 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;
}

body {
    width: 100%;
    height: 100%;
    color: var(--base_color1);
    font-family: var(--font_family1);
    background-color: #fff;
    line-height: 1.0;
    -webkit-text-size-adjust: 100%;
}

button,
input[type="search"],
input[type="text"],
input[type="email"],
input[type="submit"]{
    font-family: "Noto 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: 4;
    top: 0;
    left: 0;
    transition: .5s all ease;
}

    header > .box_inner{
        box-sizing: border-box;
        height: 5rem;
        padding: 0 calc(5rem + 1vw) 0 2vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        transition: .3s all ease;
    }

        header > .box_inner .logo_site_title{
            transition: .3s all ease;
        }

            header > .box_inner .logo_site_title a{
                display: flex;
                align-items: center;
                gap: 1rem;
                text-decoration: none;
                transition: .3s all ease;
            }


            header > .box_inner .logo_site_title a:hover{
                filter: brightness(1.1);
            }

                header > .box_inner .logo_site_title a img{
                    height: 100%;
                    width: auto;
                }

                header > .box_inner .logo_site_title a .logo{
                    height: 2.625rem;
                }

                header > .box_inner .logo_site_title a .site_title{
                    height: 1.75rem;
                }


        header > .box_inner .global_nav{
            transition: .3s all ease;
        }

            header > .box_inner .global_nav > ul{
                display: flex;
            }

            header > .box_inner .global_nav > ul > li{
                position: relative;
            }

            header > .box_inner .global_nav > ul > li > a,
            header > .box_inner .global_nav > ul > li > .nolink{
                color: var(--base_color1);
                text-decoration: none;
                display: block;
                padding: 0.25em 0.75em;
                font-weight: 500;
                transition: .3s all ease;
            }

            header > .box_inner .global_nav > ul > li:hover > a,
            header > .box_inner .global_nav > ul > li:hover > .nolink{
                color: var(--base_color2);
            }

            header > .box_inner .global_nav > ul > li.active > a,
            header > .box_inner .global_nav > ul > li.active > .nolink{
                color: var(--base_color2);
            }

            header > .box_inner .global_nav > ul > li .child_nav{
                box-sizing: border-box;
                position: absolute;
                top: 1.25rem;
                left: 0;
                width: 18rem;
                height: 0;
                overflow: hidden;
                padding: 0 0.25em;
                transition: .3s all ease;
            }

            header > .box_inner .global_nav > ul > li:hover .child_nav{
                height: auto;
                padding: 1em 0.25em 0.5em 0.25em;
            }

                header > .box_inner .global_nav > ul > li .child_nav > ul{
                    line-height: 1.5;
                    padding: 0 0.5em;
                    background: #fff;
                    opacity: 0;
                    transition: .3s all ease;
                    max-height: 0;
                }

                header > .box_inner .global_nav > ul > li:hover .child_nav > ul{
                    max-height: 500px;
                    padding: 2em 0.5em 1em 0.5em;
                    opacity: 1;
                    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.1);
                }

                header > .box_inner .global_nav > ul > li .child_nav > ul > li{
                    margin-bottom: 0.3em;
                }

                header > .box_inner .global_nav > ul > li .child_nav > ul > li:last-child{
                    margin-bottom: 0;
                }

                header > .box_inner .global_nav > ul > li .child_nav > ul > li > a{
                    color: var(--base_color1);
                    text-decoration: none;
                    font-size: 0.94em;
                    display: block;
                    position: relative;
                    padding: 0.4em 0.5em 0.4em 1.4em;
                    transition: .3s all ease;
                }

                header > .box_inner .global_nav > ul > li .child_nav > ul > li > a:hover{
                    background: rgba(8,110,182,0.05);
                }

                    header > .box_inner .global_nav > ul > li .child_nav > ul > li > a::before{
                        font-family: FontAwesome;
                        content:"\f105";
                        position: absolute;
                        top: 0.5em;
                        left: 0.5em;
                        font-size: 0.9em;
                        color: #ccc;
                        transition: .3s all ease;
                    }

                    header > .box_inner .global_nav > ul > li .child_nav > ul > li > a:hover::before{
                        color: var(--base_color2);
                    }

                    header > .box_inner .global_nav > ul > li .child_nav > ul > li > ul{
                        margin-left: 1em;
                        display: none;
                    }

                    header > .box_inner .global_nav > ul > li .child_nav > ul > li > ul > li > a{
                        color: var(--base_color1);
                        text-decoration: none;
                        font-size: 0.9em;
                        display: block;
                        position: relative;
                        padding: 0.4em 0.5em 0.4em 0.8em;
                    }

                        header > .box_inner .global_nav > ul > li .child_nav > ul > li > ul > li > a::before{
                            content: "-";
                            position: absolute;
                            top: 0.4em;
                            left: 0;
                        }

/*small_header*/
.small_header header > .box_inner{
    box-shadow: 0 10px 10px -10px rgba(0,0,0,0.1);
}

/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:2;
    padding-top: 5rem;
    padding-bottom: 4rem;
}


/*-----footer-----*/

footer {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

    footer > .box_header{
        width: 100%;
        height: 13.75rem;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        footer > .box_header .shape{
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
        }

            footer > .box_header .shape .shape_inner{
                min-height: 300px;
                position: relative;
                background: var(--base_color2);
                border-top-right-radius: 2000px 300px;
                border-top-left-radius: 2000px 300px;
                margin-left: -200px;
                margin-right: -200px;
                padding-left: 200px;
                padding-right: 200px;
            }

        footer > .box_header .site_title{
            position: relative;
            z-index: 1;
        }

            footer > .box_header .site_title a{
                display: block;
                height: 4.5rem;
            }

            footer > .box_header .site_title a img{
                height: 100%;
                width: auto;
            }

    footer > .box_inner{
        width: 100%;
        background: var(--base_color2);
        padding-bottom: 4rem;
    }

        footer > .box_inner .f_navs{
            display: flex;
            justify-content: center;
            line-height: 1.4;
            gap: 0 4em;
        }

            footer > .box_inner .f_navs a{
                color: #fff;
                text-decoration: none;
                display: inline-block;
                position: relative;
            }

            footer > .box_inner .f_navs a[target="_blank"]::after{
                content: "";
                width: 1rem;
                aspect-ratio: 1 / 1;
                display: inline-block;
                background-image: url(../shared/icon_tb_w.png);
                background-repeat: no-repeat;
                background-size: contain;
                position: absolute;
                bottom: 0;
                right: -1.2em;
            }

            footer > .box_inner .f_navs a::before{
                content: "";
                display: block;
                width: 100%;
                height: 0;
                border-top: 1px solid rgba(255,255,255,1);
                position: absolute;
                bottom: 0;
                left: 0;
                transition: .5s all ease;
                opacity: 0;
            }

            footer > .box_inner .f_navs a:hover::before{
                opacity: 1;
            }

            footer > .box_inner .f_navs a:hover{

            }

            footer > .box_inner .f_navs > .f_navs_sp_wrap{
                display: flex;
                justify-content: center;
                gap: 0 4em;
            }

            footer > .box_inner .f_navs > .f_navs_sp_wrap > ul{
                display: flex;
                flex-direction: column;
                gap: 2em;
            }

                footer > .box_inner .f_navs > .f_navs_sp_wrap > ul > li{}

                    footer > .box_inner .f_navs > .f_navs_sp_wrap > ul > li > a,
                    footer > .box_inner .f_navs > .f_navs_sp_wrap > ul > li > .nolink{
                        font-family: var(--font_family2);
                        font-size: 1.15em;
                    }

                    footer > .box_inner .f_navs > .f_navs_sp_wrap > ul > li > .child_nav{
                        font-size: 0.9em;
                        font-weight: 300;
                        margin-top: 0.9em;
                    }

                        footer > .box_inner .f_navs > .f_navs_sp_wrap > ul > li > .child_nav ul{}

                            footer > .box_inner .f_navs > .f_navs_sp_wrap > ul > li > .child_nav ul li{
                                position: relative;
                                padding-left: 1em;
                                margin-bottom: 0.3em;
                            }

                            footer > .box_inner .f_navs > .f_navs_sp_wrap > ul > li > .child_nav ul li:last-child{
                                margin-bottom: 0;
                            }

                            footer > .box_inner .f_navs > .f_navs_sp_wrap > ul > li > .child_nav ul li::before{
                                content: "-";
                                position: absolute;
                                top: 0;
                                left: 0;
                            }


            footer > .box_inner .f_navs > ul{
                display: flex;
                flex-direction: column;
                gap: 2em;
            }

                footer > .box_inner .f_navs > ul > li{}

                    footer > .box_inner .f_navs > ul > li > a{
                        font-family: var(--font_family2);
                        font-size: 1.15em;
                    }

                    footer > .box_inner .f_navs > ul > li > .child_nav{
                        font-size: 0.9em;
                        font-weight: 300;
                        margin-top: 0.9em;
                    }

                        footer > .box_inner .f_navs > ul > li > .child_nav ul{}

                            footer > .box_inner .f_navs > ul > li > .child_nav ul li{
                                position: relative;
                                padding-left: 1em;
                                margin-bottom: 0.3em;
                            }

                            footer > .box_inner .f_navs > ul > li > .child_nav ul li:last-child{
                                margin-bottom: 0;
                            }

                            footer > .box_inner .f_navs > ul > li > .child_nav ul li::before{
                                content: "-";
                                position: absolute;
                                top: 0;
                                left: 0;
                            }

        .site_search_box{
            display: flex;
            justify-content: flex-end;
            max-width: 1180px;
            margin: 0 auto;
        }

            .site_search_box .input_submit_box{
                display: inline-flex;
                align-items: center;
                height: 2rem;
                padding: 0 2px 0 0.5em;
                background: #fff;
                border-radius: 100vh;
            }

                .site_search_box .input_submit_box::before{
                    content: "";
                    display: block;
                    width: 1rem;
                    aspect-ratio: 1 / 1;
                    background-image: url(../shared/icon_search.png);
                    background-repeat: no-repeat;
                    background-size: contain;
                }

                .site_search_box .input_submit_box .input_box{
                    height: 100%;
                }

                    .site_search_box .input_submit_box .input_box input[type="text"]{
                        box-sizing: border-box;
                        border: none;
                        width: 17rem;
                        height: 100%;
                        outline: none;
                        font-size: 0.9em;
                        padding: 0 0.5em;
                    }

                .site_search_box .input_submit_box .submit_box{
                    box-sizing: border-box;
                    height: 100%;
                    padding: 2px;
                }

                    .site_search_box .input_submit_box .submit_box button[type="submit"]{
                        border: none;
                        background: var(--base_color2);
                        color: #fff;
                        border-radius: 100vh;
                        padding: 0 1em;
                        font-size: 0.8em;
                        height: 100%;
                    }

    footer > .box_footer{
        width: 100%;
        background: var(--base_color2);
        padding: 0 0 1rem 0;
    }

        .addr_tel{
            display: flex;
            justify-content: center;
            gap: 1em;
        }

            .addr_tel .tel a{
                color: #fff;
                text-decoration: none;
                pointer-events: none;
            }

        .sns{
            margin: 1.5em 0 2em;
        }

            .sns ul{
                display: flex;
                justify-content: center;
                gap: 1em;
            }

                .sns ul li a{
                    display: block;
                    width: 1.625rem;
                }

                    .sns ul li a img{
                        max-width: 100%;
                        height: auto;
                    }

        footer > .box_footer .copyright{
            text-align: center;
            font-size: 0.84em;
        }

/*-----nav_oc-----*/
.nav_oc{
    width: 5rem;
    height: 5rem;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    transition: .3s all ease;
}

    .menu-trigger{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: .3s all ease;
    }

    .menu-trigger:hover{
        filter: brightness(1.1);
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 2rem;
            height: 1.375rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: var(--base_color1);
                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 {
                background: #fff;
            }

            .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: var(--base_color1);
        }

        .menu-trigger.active .lbl {
            color: #fff;
        }

/*-----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_wrapper{
        box-sizing: border-box;
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 0.5rem;
    }

    .side_nav_box{
        box-sizing: border-box;
        background: var(--base_color2);
        padding: 1rem;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .side_nav_box > .box_header{
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

            .side_nav_box > .box_header .site_title{
                width: 37.5rem;
            }

                .side_nav_box > .box_header .site_title a{
                    display: block;
                }

                .side_nav_box > .box_header .site_title img{
                    max-width: 100%;
                    height: auto;
                }

                .side_nav_box > .box_header .site_title img.sp{
                    display: none;
                }

        .side_nav_box > .box_inner{
            margin-bottom: 4rem;
        }

            .side_nav_box > .box_inner a{
                color: #fff;
                text-decoration: none;
                transition: .3s all ease;
            }

            .side_nav_box > .box_inner a:hover{
            }

            .side_nav_box > .box_inner a[target="_blank"]::after{
                content: "";
                width: 1rem;
                aspect-ratio: 1 / 1;
                display: inline-block;
                background-image: url(../shared/icon_tb_w.png);
                background-repeat: no-repeat;
                background-size: contain;
            }

            .side_nav .side_global_nav1 > ul > li > a[target="_blank"]::after{
                margin-left: 0.3em;
            }

            .side_nav .side_global_nav1{
                display: flex;
                justify-content: center;
                line-height: 1.4;
                gap: 0 4em;
                color: #fff;
            }

            .side_nav .side_global_nav1 a::before{
                content: "";
                display: block;
                width: 100%;
                height: 0;
                border-top: 1px solid rgba(255,255,255,1);
                position: absolute;
                bottom: 0;
                left: 0;
                transition: .5s all ease;
                opacity: 0;
            }

            .side_nav .side_global_nav1 a:hover::before{
                opacity: 1;
            }

            .side_nav .side_global_nav1 a:hover{

            }

            .side_nav .side_global_nav1 > ul{
                display: flex;
                flex-direction: column;
                gap: 2em;
            }

                .side_nav .side_global_nav1 > ul > li{}

                    .side_nav .side_global_nav1 > ul > li > a,
                    .side_nav .side_global_nav1 > ul > li > .nolink{
                        font-family: var(--font_family2);
                        font-size: 1.15em;
                    }

                    .side_nav .side_global_nav1 > ul > li > .child_nav{
                        font-size: 0.9em;
                        font-weight: 300;
                        margin-top: 0.9em;
                    }

                        .side_nav .side_global_nav1 > ul > li > .child_nav ul{}

                            .side_nav .side_global_nav1 > ul > li > .child_nav ul li{
                                position: relative;
                                padding-left: 1em;
                                margin-bottom: 0.3em;
                            }

                            .side_nav .side_global_nav1 > ul > li > .child_nav ul li:last-child{
                                margin-bottom: 0;
                            }

                            .side_nav .side_global_nav1 > ul > li > .child_nav ul li::before{
                                content: "-";
                                position: absolute;
                                top: 0;
                                left: 0;
                            }

        .side_nav_box > .box_footer{
            color: #fff;
        }

/*ページトップ*/
.pagetop{
    width:4rem;
    height:4rem;
    position:fixed;
    bottom:3rem;
    right:1rem;
     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: var(--base_color2);
        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;
    }


/*ヘッダ固定によるアンカーずれ対応*/
*[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){

}

/*1180px以下*/
@media screen and (min-width:1px) and (max-width:1180px){
    footer > .box_inner{
        box-sizing: border-box;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/*1080px以下*/
@media screen and (min-width:1px) and (max-width:1080px){

}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.6vw;
    }

    header > .box_inner .global_nav{
        display: none;
    }





}

/* ##########印刷用########## */
@media print{
    html{
        width: 1024px;
    }
    
    header{
        position:relative;
    }
   
    
    .contents{
        padding-top: 0;
    }
    
    .pagetop{
        display: none;
    }
    
}