@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@400;600&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;
}

html {
    font-size: 16px;
}

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"],
input[type="submit"]{
    font-family: 'Noto Sans JP', sans-serif;
}

img{
    vertical-align:bottom;
}

#container{
    width: 100%;
    position: relative;
}

/*----------header----------*/
header{
    width:100%;
    background: #fff;
    position: fixed;
    top:0;
    left: 0;
    z-index: 3;
    transition: .3s all ease;
}

    header > .box_header {
        box-sizing: border-box;
        width: 100%;
        height: 158px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding-right: 2rem;
        padding-left: 2.5rem;
        padding-bottom: 1.25rem;
        transition: .3s all ease;
    }

        header > .box_header > .site_title {
            width: 450px;
            transition: .3s all ease;
        }

            header > .box_header > .site_title a {
                display: block;
            }

            header > .box_header > .site_title a:hover {
                opacity: 0.9;
            }

                header > .box_header > .site_title a img{
                    max-width: 100%;
                    height: auto;
                }

        header > .box_header > .ku_logo_fns {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            padding-bottom: 0.5rem;
            transition: .3s all ease;
        }

            header > .box_header > .ku_logo_fns .ku_logo{
                margin-bottom: 1.5rem;
                width: 112px;
                transition: .3s all ease;
            }

                header > .box_header > .ku_logo_fns .ku_logo a{
                    display: block;
                    transition: .3s all ease;
                }

                header > .box_header > .ku_logo_fns .ku_logo a:hover{
                    opacity: 0.8;
                }

                    header > .box_header > .ku_logo_fns .ku_logo a img{
                        max-width: 100%;
                        height: auto;
                    }

            header > .box_header > .ku_logo_fns .fns{
                display: flex;
                height: 2.5rem;
            }

                /*site_search*/
                .site_search{
                    display: flex;
                    align-items: center;
                    height: 2.5rem;
                    background: #f6ede8;
                    border-radius: 1.25rem;
                    font-weight: 500;
                    margin-right: 0.5rem;
                    padding-right: 0.25rem;
                    padding-left: 1rem;
                }

                    .site_search .input_submit_box{
                        display: flex;
                    }

                        .site_search .input_submit_box .input_box{
                            width: 12rem;
                            margin-right: 0.5rem;
                        }

                            .site_search .input_submit_box .input_box input[type="search"]{
                                box-sizing: border-box;
                                width: 100%;
                                height: 100%;
                                border: none;
                                padding: 0;
                                font-size: 1rem;
                                background: none;
                                outline: none;
                            }

                        .site_search .input_submit_box .submit_box{}

                            .site_search .input_submit_box .submit_box input[type="submit"]{
                                line-height: 1;
                                width: 2rem;
                                height: 2rem;
                                border-radius: 1rem;
                                padding: 0;
                                background-color: #be1a18;
                                background-image: url("../shared/icon_search.png");
                                background-size: 14px 14px;
                                background-position: center center;
                                background-repeat: no-repeat;
                                text-indent: -9999px;
                                transition: .3s all ease;
                            }

                            .site_search .input_submit_box .submit_box input[type="submit"]:hover{
                                background-color: #bd3230;
                            }

            header > .box_header > .ku_logo_fns .btn_lang{}

                header > .box_header > .ku_logo_fns .btn_lang a{
                    display: flex;
                    align-items: center;
                    height: 2.5rem;
                    background: #f6ede8;
                    color: #433c06;
                    text-decoration: none;
                    border-radius: 1.25rem;
                    font-weight: 500;
                    padding: 0 1.5rem;
                }

    header > .box_inner {}

        header > .box_inner .global_nav {
            box-sizing: border-box;
            height: 72px;
            border-top: 1px solid #212121;
            border-bottom: 1px solid #212121;
            transition: .3s all ease;
        }

            header > .box_inner .global_nav > ul {
                display: flex;
                height: 100%;
            }

                header > .box_inner .global_nav > ul > li{
                    box-sizing: border-box;
                    width: 15.5%;
                    height: 100%;
                    position: relative;
                    border-right: 1px solid #212121;
                }

                header > .box_inner .global_nav > ul > li:last-child{
                    border-right: none;
                }

                header > .box_inner .global_nav > ul > li.gn_home{
                    flex: 1;
                }


                    header > .box_inner .global_nav > ul > li > a{
                        box-sizing: border-box;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: #222;
                        text-decoration: none;
                        font-weight: 500;
                        position: relative;
                        height: 100%;
                        transition: .3s all ease;
                    }

                    header > .box_inner .global_nav > ul > li.active > a{
                        background: #202020;
                    }

                    header > .box_inner .global_nav > ul > li > a:hover{
                        color: #007964;
                    }

                        header > .box_inner .global_nav > ul > li > a:before{
                            content: "";
                            display: block;
                            width: 100%;
                            height: 100%;
                            background: #f6ede8;
                            position: absolute;
                            top: 0;
                            left: 0;
                            z-index: 0;
                            transition: .3s all ease;
                            transform: scaleX(0);
                            opacity: 0;
                        }

                        header > .box_inner .global_nav > ul > li > a:hover:before{
                            transform: scaleX(1);
                            opacity: 1;
                        }

                        header > .box_inner .global_nav > ul > li.active > a:hover:before{
                            transform: scaleX(0);
                            opacity: 0;
                        }

                        header > .box_inner .global_nav > ul > li > a > .lbl{
                            display: block;
                            height: 18px;
                            position: relative;
                            z-index: 1;
                        }

                        header > .box_inner .global_nav > ul > li.gn_home > a > .lbl{
                            height: 14px;
                        }

                            header > .box_inner .global_nav > ul > li > a > .lbl img{
                                height: 100%;
                                width: auto;
                            }

                            header > .box_inner .global_nav > ul > li > a > .lbl img[src$="_off.png"]{
                                position: relative;
                                z-index: 0;
                            }

                            header > .box_inner .global_nav > ul > li > a > .lbl img[src$="_on.png"]{
                                position: absolute;
                                top: 0;
                                left: 0;
                                z-index: 1;
                                opacity: 0;
                            }

                            header > .box_inner .global_nav > ul > li.active > a > .lbl img[src$="_off.png"]{
                                opacity: 0;
                            }

                            header > .box_inner .global_nav > ul > li.active > a > .lbl img[src$="_on.png"]{
                                opacity: 1;
                            }


/*small_header*/
.small_header header {
    background: rgba(255,255,255,0.99);
    box-shadow: 0 5px 10px -10px rgb(0 0 0 / 30%);
}

    .small_header header > .box_header{
        height: calc(158px * 0.75);
        padding-bottom: 1rem;
    }

        .small_header header > .box_header > .site_title{
            width: calc(450px * 0.75);
        }

        .small_header header > .box_header > .ku_logo_fns{
            padding-bottom: 0;
        }

            .small_header header > .box_header > .ku_logo_fns .ku_logo{
                margin-bottom: 0.85rem;
            }

    .small_header header > .box_inner .global_nav{
        height: calc(72px * 0.75);
    }


/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:0;
    padding-top: 230px;
    padding-bottom: 5rem;
    background-image: url("../shared/bg_page.jpg");
    background-size: 640px auto;
}

/*-----footer-----*/
footer {
    position: relative;
    background: #333;
}

    footer > .box_header{
        background: #fff;
        padding: 2.25rem 0 2.5rem;
    }

        .related_bns_box{}

            .related_bns_box ul{
                display: flex;
                justify-content: center;
            }

                .related_bns_box ul li{
                    margin-right: 1.25rem;
                }

                .related_bns_box ul li:last-child{
                    margin-right: 0;
                }

                    .related_bns_box ul li a{
                        box-sizing: border-box;
                        display: block;
                        width: 230px;
                        border: 1px solid #ccc;
                        transition: .3s all ease;
                    }

                    .related_bns_box ul li a:hover{
                        border-color: #212121;
                        box-shadow: 3px 3px 0 0 rgba(0,0,0,0.1);
                    }



                    .related_bns_box ul li a img{
                        max-width: 100%;
                        height: auto;
                    }


    footer > .box_inner{
        width: calc(100% - 14vw);
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 5rem 0 4.5rem;
    }

        .f_contact_info{
            color: #fff;
        }

            .f_contact_info dl{}

                .f_contact_info dl dt{
                    width: 340px;
                    margin-bottom: 1.5rem;
                }

                    .f_contact_info dl dt img{
                        max-width: 100%;
                        height: auto;
                    }

                .f_contact_info dl dd{
                    display: flex;
                    flex-direction: column;
                    line-height: 1.4;
                }

        .f_nav1{
            display: flex;
        }

            .f_nav1 ul{
                line-height: 1.4;
                font-size: 0.94rem;
                margin-right: 4vw;
            }

            .f_nav1 ul:last-child{
                margin-right: 0;
            }

                .f_nav1 ul li{
                    margin-bottom: 1.25em;
                    padding-left: 1.5em;
                    position: relative
                }

                .f_nav1 ul li:last-child{
                    margin-bottom: 0;
                }

                    .f_nav1 ul li:before{
                        content: "";
                        display: block;
                        width: 1em;
                        height: 0;
                        border-bottom: 1px solid rgba(255,255,255,0.8);
                        position: absolute;
                        top: 0.75em;
                        left: 0;
                    }

                    .f_nav1 ul li a{
                        color: #fff;
                        text-decoration: none;
                        display: inline-block;
                        position: relative;
                    }

                        .f_nav1 ul li a:before{
                            content: "";
                            display: block;
                            width: 100%;
                            height: 0;
                            border-bottom: 1px solid #fff;
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            transition: .3s all ease;
                            opacity: 0;
                        }

                        .f_nav1 ul li a:hover:before{
                            opacity: 1;
                        }

    footer > .box_footer{
        display: flex;
        justify-content: space-between;
        padding: 0 2.5rem 2.5rem 2.5rem;
    }

        .f_nav2{}

            .f_nav2 ul{
                display: flex;
                font-size: 0.88rem;
            }

                .f_nav2 ul li{
                    padding: 0 1em;
                    border-right: 1px solid #ccc;
                }

                .f_nav2 ul li:first-child{
                    padding-left: 0;
                }

                .f_nav2 ul li:last-child{
                    border-right: none;
                }

                    .f_nav2 ul li a{
                        color: #fff;
                        text-decoration: none;
                    }

                    .f_nav2 ul li a:hover{
                        text-decoration: underline;
                    }


        footer > .box_footer .copyright{
            color: #fff;
            font-size: 0.86rem;
        }

/*-----nav_oc-----*/
.nav_oc,
.side_nav{
    display: none;
}

/*ページトップ*/
.pagetop{
    width:80px;
    height:80px;
    position:fixed;
    bottom:60px;
    right:70px;
    z-index:10;
    transform:translateY(100px);
    transition:.3s all ease;
    opacity:0;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
}

    .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: #c21f1a;
        padding-bottom: 0.2rem;
    }
    
    .pagetop a:hover{
        filter: brightness(1.1);
        box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    }


    .pagetop a:before{
        font-family: FontAwesome;
        content:"\f106";
        color: #fff;
        font-size: 2.4rem;
    }


/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"]{
    padding-top: 210px;
    margin-top:-210px;
}


/*改行の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;
}

/*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_header{
        height: 17vw;
    }
    
        header > .box_header > .site_title{
            width: 45vw;
        }

        header > .box_header > .ku_logo_fns .ku_logo{
            width: calc(45vw / 450 * 112);
        }
    
        header > .box_inner .global_nav{
            height: 7vw;
        }
    
            header > .box_inner .global_nav > ul > li > a > .lbl{
                height: 1.2rem;
            }
    
            header > .box_inner .global_nav > ul > li.gn_home > a > .lbl{
                height: calc(1.2rem / 18 * 14);
            }
    
    /*small_header*/
    .small_header header > .box_header{
        height: calc(17vw * 0.75);
    }

    .small_header header > .box_header > .site_title{
        width: calc(45vw * 0.75);
    }

    .small_header header > .box_inner .global_nav{
        height: calc(7vw * 0.75);
    }
    
    .contents{
        padding-top: 24vw;
    }
    
    footer > .box_header{
        padding: 2rem 5vw;
    }
    
    footer > .box_inner {
        width: calc(100% - 10vw);
        padding: 3rem 0;
    }
        
        .f_contact_info dl dt{
            width: 30vw;
        }
    
        .related_bns_box ul li{
            width: calc((100% - 4.5rem) / 4);
            margin-right: 1.5rem;
        }

            .related_bns_box ul li a{
                width: 100%;
            }
    
    footer > .box_footer{
        padding: 0 5vw 2.5rem;
    }
}

/* ##########印刷用########## */
@media print{
    header{
        position:relative;
    }
    
    .pagetop{
        display: none;
    }
    
}