@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&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{
    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: space-between;
        align-items: center;
        transition: .3s all ease;
        position: relative;
    }

    header > .box_inner > .logo_site_title{
        padding: 0 2.5vw 0 2.5vw;
    }

        header > .box_inner > .logo_site_title a{
            display: flex;
            flex-direction: column;
            text-decoration: none;
        }

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

        header > .box_inner > .logo_site_title a .fig{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            header > .box_inner > .logo_site_title a .logo{
                width: 74px;
                margin-right: 1.2em;
            }

            header > .box_inner > .logo_site_title a .site_title{
                width: 240px;
            }

        header > .box_inner > .logo_site_title a .site_title_en{
            color: #64326e;
            font-size: 0.86rem;
            font-weight: 500;
            text-align: right;
            letter-spacing: 0.05em;
            
        }

        header > .box_inner .navs{
            background: #eee;
            flex: 1;
        }

            header > .box_inner .navs .global_nav1{
                height: 4.375rem;
                display: flex;
                justify-content: flex-end;
                transition: .3s all ease;
                position: relative;
                z-index: 1;
            }

                header > .box_inner .navs .global_nav1 > ul{
                    display: flex;
                    align-items: center;
                    flex-wrap: wrap;
                    padding: 0 2.4rem 0 1.5rem;
                }

                    header > .box_inner .navs .global_nav1 > ul > li{
                        font-size: 0.9rem;
                        font-weight: 500;
                        position: relative;
                        padding-left: 1em;
                        margin-right: 2em;
                    }

                    header > .box_inner .navs .global_nav1 > ul > li:last-child{
                        margin-right: 0;
                    }

                        header > .box_inner .navs .global_nav1 > ul > li::before{
                            content: "";
                            display: inline-block;
                            width: 0.5rem;
                            height: 0.6875rem;
                            background-image: url('../../shared/icon_tri1.png');
                            background-repeat: no-repeat;
                            background-size: contain;
                            position: absolute;
                            top: 0.15em;
                            left: 0;
                        }

                        header > .box_inner .navs .global_nav1 > ul > li a{
                            color: #111;
                            text-decoration: none;
                            display: inline-block;
                        }

                            header > .box_inner .navs .global_nav1 > ul > li a::before{
                                content: "";
                                display: block;
                                width: 100%;
                                height: 0;
                                border-bottom: 1px solid #333;
                                position: absolute;
                                bottom: -0.3em;
                                left: 0;
                                transition: .3s all ease;
                                opacity: 0;
                            }

                            header > .box_inner .navs .global_nav1 > ul > li a:hover:before{
                                opacity: 1;
                            }

                            header > .box_inner .navs .global_nav1 > ul > li.outlink{
                                position: relative;
                            }

                                header > .box_inner .navs .global_nav1 > ul > li.outlink:after{
                                    content: "";
                                    display: inline-block;
                                    width: 0.6875rem;
                                    height: 0.6875rem;
                                    background-image: url(../../shared/icon_ext_link2.png);
                                    background-repeat: no-repeat;
                                    background-size: contain;
                                    position: absolute;
                                    top: 0.2em;
                                    right: -1.3em;
                                    z-index: 1;
                                }

                header > .box_inner .navs .global_nav1 .gn_lang{
                    width: 4.375rem;
                }

                    header > .box_inner .navs .global_nav1 .gn_lang a{
                        background: #e4c30f;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 100%;
                        height: 100%;
                        text-decoration: none;
                        color: #000;
                        font-weight: 700;
                        font-size: 1.2rem;
                    }

                header > .box_inner .navs .global_nav1 .site_search{
                    position: relative;
                }

                    header > .box_inner .navs .global_nav1 .site_search .btn_search_oc{
                        position: relative;
                        height: 100%;
                    }

                        header > .box_inner .navs .global_nav1 .site_search .btn_search_oc button{
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 4.375rem;
                            height: 100%;
                            border: none;
                            background: #64326e;
                            cursor: pointer;
                            transition: .3s all ease;
                        }

                        header > .box_inner .navs .global_nav1 .site_search .btn_search_oc button:hover{
                            filter: brightness(1.2);
                        }

                            header > .box_inner .navs .global_nav1 .site_search .btn_search_oc button .fig{
                                width: 1.625rem;
                            }

                                header > .box_inner .navs .global_nav1 .site_search .btn_search_oc button .fig img{
                                    max-width: 100%;
                                    height: auto;
                                }

                
                    header > .box_inner .navs .global_nav1 .site_search_inner{
                        display: none;
                        position: absolute;
                        top: 4rem;
                        right: 0.5rem;
                        background: #fff;
                        padding: 0.75rem 1rem;
                        border-radius: 0.25rem;
                        box-shadow: 2px 2px 0 0 rgba(0,0,0,0.1);
                    }

                    header > .box_inner .navs .global_nav1 .site_search_inner.active{
                        display: block;
                    }

                        header > .box_inner .navs .global_nav1 .site_search_inner .input_submit_box{
                            display: flex;
                        }

                            header > .box_inner .navs .global_nav1 .site_search_inner .input_submit_box .input_box{

                            }

                                header > .box_inner .navs .global_nav1 .site_search_inner .input_submit_box .input_box input[type="search"]{
                                    box-sizing: border-box;
                                    border: 1px solid #bbb;
                                    padding: 0.2em 0.3em;
                                    width: 20em;
                                    font-size: 0.96em;
                                    outline: none;
                                }

                            header > .box_inner .navs .global_nav1 .site_search_inner .input_submit_box .submit_box{}

                                header > .box_inner .navs .global_nav1 .site_search_inner .input_submit_box .submit_box input[type="submit"]{
                                    box-sizing: border-box;
                                    height: 100%;
                                    padding: 0 1em 0.1em;
                                    font-size: 0.96em;
                                    background: #505050;
                                    color: #fff;
                                    transition: .3s all ease;
                                }

                                header > .box_inner .navs .global_nav1 .site_search_inner .input_submit_box .submit_box input[type="submit"]:hover{
                                    filter: brightness(1.1);
                                }


            header > .box_inner .navs .global_nav2{
                height: 4.375rem;
                background: #64326e;
                display: flex;
                justify-content: flex-end;
                transition: .3s all ease;
            }

                header > .box_inner .navs .global_nav2 > ul{
                    display: flex;
                    height: 100%;
                    padding: 0 0.75rem;
                }

                    header > .box_inner .navs .global_nav2 > ul > li{
                        height: 100%;
                        position: relative;
                        padding: 0 0.125rem;
                    }

                        header > .box_inner .navs .global_nav2 > ul > li::after{
                            content: "";
                            display: block;
                            width: 0;
                            height: 2rem;
                            border-right: 1px solid rgba(255,255,255,0.3);
                            position: absolute;
                            right: 0;
                            top:  calc(50% - 1rem);
                        }

                        header > .box_inner .navs .global_nav2 > ul > li:last-child:after{
                            content: none;
                        }

                        header > .box_inner .navs .global_nav2 > ul > li > a{
                            color: #fff;
                            text-decoration: none;
                            display: flex;
                            align-items: center;
                            text-align: center;
                            height: 100%;
                            font-size: 1.1rem;
                            padding: 0 1.5em;
                            font-weight: 500;
                            position: relative;
                            transition: .3s all ease;
                        }

                        header > .box_inner .navs .global_nav2 > ul > li > a:hover{
                            background: rgba(0,0,0,0.2);
                        }

                        header > .box_inner .navs .global_nav2 > ul > li.active > a::before{
                            content: "";
                            display: inline-block;
                            width: 2rem;
                            height: 0;
                            border-top: 0.25rem solid #e4c30f;
                            position: absolute;
                            bottom: 0;
                            left: calc(50% - 1rem);
                        }


                        /*child_nav*/
                        .global_nav2 .child_nav{
                            position: absolute;
                            top: 4rem;
                            left: calc(50% - 7.8em);
                            width: 15.6em;
                            background: rgba(70,60,155,0);
                            height: 0;
                            overflow: hidden;
                            transition: .5s all ease;
                        }

                        .global_nav2 > ul > li:last-child .child_nav{
                            left: auto;
                            right: 0;
                        }
                        
                        .global_nav2 > ul > li:hover .child_nav{
                            height: auto;
                            background: rgba(255,255,255,0.95);
                            padding: 0.6em 0;
                        }

                            .global_nav2 .child_nav > ul{
                                padding: 0 0.5em;
                                box-sizing: border-box;
                                position: relative;
                                opacity: 0;
                                transition: .3s all ease;
                            }

                            .global_nav2 > ul > li:hover .child_nav > ul{
                                opacity: 1;
                            }

                                .global_nav2 .child_nav > ul > li{}

                                .global_nav2 .child_nav > ul > li:last-child{}

                                    .global_nav2 .child_nav > ul > li > a{
                                        display: block;
                                        text-decoration: none;
                                        color: #111;
                                        font-size: 0.95em;
                                        line-height: 1.2;
                                        padding: 0.7em 0.5em;
                                        position: relative;
                                        z-index: 0;
                                        transition: .3s all ease;
                                    }

                                    .global_nav2 .child_nav > ul > li > a:hover{
                                        color: #62326e;
                                        background: rgba(98,50,110,0.1);
                                    }

                                    .global_nav2 .child_nav > ul > li > ul{
                                        display: none;
                                    }


/*small_header*/
.small_header header {
    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_nav1{
        height: 3.5rem;
    }

    .small_header header > .box_inner .navs .global_nav2{
        height: 3.5rem;
    }

    .small_header header > .box_inner .navs .global_nav2 .child_nav{
        top: 3rem;
    }


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


/*-----footer-----*/
footer {
    position: relative;
    z-index: 1;
    padding: 3em 0 0 0;
    background: #f0f0f0;
}

    footer > .box_header{
        box-sizing: border-box;
        display: flex;
        max-width: 1100px;
        margin: 0 auto;
        border-bottom: 2px solid rgba(0,0,0,0.15);
        padding: 0 1rem 1.5rem;
        margin-bottom: 2rem;
    }

        footer > .box_header .logo_site_title{}

            footer > .box_header .logo_site_title a{
                display: flex;
                align-items: center;
            }

                footer > .box_header .logo_site_title a img{
                    max-width: 100%;
                    height: auto;
                }

                footer > .box_header .logo_site_title a .logo{
                    width: 182px;
                    margin-right: 1.5rem;
                }

                footer > .box_header .logo_site_title a .site_title{
                    width: 362px;
                }

        footer > .box_header .navs{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex: 1;
        }

            footer > .box_header .navs .home_lang_nav{}

                footer > .box_header .navs .home_lang_nav ul{
                    display: flex;
                    padding-left: 4rem;
                }

                    footer > .box_header .navs .home_lang_nav ul li{
                        border-right: 2px solid rgba(0,0,0,0.15);
                        padding: 0 1.75em;
                    }

                    footer > .box_header .navs .home_lang_nav ul li:first-child{
                        border-left: 2px solid rgba(0,0,0,0.15);
                    }                    

                        footer > .box_header .navs .home_lang_nav ul li a{
                            color: #333;
                            text-decoration: none;
                            font-weight: 500;
                            display: inline-block;
                            font-size: 1.05rem;
                            position: relative;
                        }

                            footer > .box_header .navs .home_lang_nav ul li a::after{
                                content: "";
                                border-bottom: 1px solid #333;
                                position: absolute;
                                bottom: -0.3em;
                                left: 0;
                                width: 100%;
                                transition: .3s all ease;
                                opacity: 0;
                            }

                            footer > .box_header .navs .home_lang_nav ul li a:hover::after{
                                opacity: 1;
                            }

            footer > .box_header .navs .sns_nav{}

                footer > .box_header .navs .sns_nav ul{
                    display: flex;
                }

                    footer > .box_header .navs .sns_nav ul li{
                        margin-right: 1.25rem;
                    }

                    footer > .box_header .navs .sns_nav ul li:last-child{
                        margin-right: 0;
                    }

                        footer > .box_header .navs .sns_nav ul li a{
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 2.875rem;
                            height: 2.875rem;
                            border-radius: 50%;
                            background: #767676;
                            text-decoration: none;
                        }

                            footer > .box_header .navs .sns_nav ul li a .fig{
                                width: 1.875rem;
                            }

                                footer > .box_header .navs .sns_nav ul li a .fig img{
                                    max-width: 100%;
                                    height: auto;
                                }

    footer > .box_inner{
        box-sizing: border-box;
        display: flex;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 1rem 3rem;
    }

        footer > .box_inner .contact_info_box{}

            footer > .box_inner .contact_info_box > dl{
                margin-bottom: 2em;
            }

                footer > .box_inner .contact_info_box > dl > dt{
                    display: flex;
                    flex-direction: column;
                    line-height: 1.6;
                    font-weight: 700;
                    font-size: 1.05em;
                    border-left: 0.25rem solid #666;
                    padding-left: 0.6em;
                    margin-bottom: 1em;
                }

                footer > .box_inner .contact_info_box > dl > dd{
                    line-height: 1.4;
                }

                    footer > .box_inner .contact_info_box > dl > dd .contact_div,
                    footer > .box_inner .contact_info_box > dl > dd .contact_addr{
                        font-weight: 500;
                        display: flex;
                        flex-direction: column;
                    }

                    footer > .box_inner .contact_info_box > dl > dd .contact_div{
                        margin-bottom: 0.4em;
                    }

                    footer > .box_inner .contact_info_box > dl > dd .contact_addr{
                        margin-bottom: 1em;
                    }

                    footer > .box_inner .contact_info_box > dl > dd .contact_tel{}

                        footer > .box_inner .contact_info_box > dl > dd .contact_tel dl{
                            display: flex;
                            font-size: 1.8rem;
                            font-weight: 900;
                        }

                            footer > .box_inner .contact_info_box > dl > dd .contact_tel dl dt{
                                margin-right: 0.2em;
                            }

                            footer > .box_inner .contact_info_box > dl > dd .contact_tel dl dd{}

                                footer > .box_inner .contact_info_box > dl > dd .contact_tel dl dd a[href^="tel:"]{
                                    pointer-events: none;
                                    color: inherit;
                                    text-decoration: none;
                                }

                    footer > .box_inner .contact_info_box > dl > dd .contact_email{}

                        footer > .box_inner .contact_info_box > dl > dd .contact_email .lbl_email{
                            position: relative;
                            padding-left: 1.3em;
                            font-weight: 500;
                            margin-bottom: 0.2em;
                        }

                            footer > .box_inner .contact_info_box > dl > dd .contact_email .lbl_email::before{
                                font-family: FontAwesome;
                                content:"\f0e0";
                                color: #505050;
                                display: inline-block;
                                position: absolute;
                                top: 0.1em;
                                left: 0;
                                font-weight: normal;
                            }

                        footer > .box_inner .contact_info_box > dl > dd .contact_email .notes{
                            font-size: 0.84em;
                        }

            footer > .box_inner .contact_info_box .btn_donation{
                
            }

                footer > .box_inner .contact_info_box .btn_donation a{
                    box-sizing: border-box;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: #666;
                    color: #fff;
                    text-decoration: none;
                    height: 3.125rem;
                    font-size: 1.1em;
                    padding-bottom: 0.1em;
                    border-radius: 0.25rem;
                    font-weight: 500;
                    transition: .3s all ease;
                }

                footer > .box_inner .contact_info_box .btn_donation a:hover{
                    background: #64326e;
                }

        footer > .box_inner .f_navs{
            flex: 1;
            padding: 0 0 0 5rem;
            line-height: 1.4;
        }

            footer > .box_inner .f_navs a{
                color: #333;
                text-decoration: none;
            }

            footer > .box_inner .f_navs a:hover{
                text-decoration: underline;
            }



            footer > .box_inner .f_navs .f_nav1{
                margin-bottom: 2rem;
            }

                footer > .box_inner .f_navs .f_nav1 ul{
                    display: flex;
                    flex-wrap: wrap;
                }

                    footer > .box_inner .f_navs .f_nav1 ul li{
                        margin-right: 2em;
                        white-space: nowrap;
                        margin-bottom: 1rem;
                        width: calc((100% - 2rem) / 2);
                    }

                    footer > .box_inner .f_navs .f_nav1 ul li:nth-child(2n) {
                        margin-right: 0;
                    }

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

                    footer > .box_inner .f_navs .f_nav1 ul li a{
                        font-weight: 600;
                    }

            footer > .box_inner .f_navs .f_nav2{
                display: flex;
            }

                footer > .box_inner .f_navs .f_nav2 > ul{
                    margin-right: 3.5em;
                }

                footer > .box_inner .f_navs .f_nav2 > ul:nth-child(1){
                    width: 13rem;
                }

                footer > .box_inner .f_navs .f_nav2 > ul:last-child{
                    margin-right: 0;
                }

                    footer > .box_inner .f_navs .f_nav2 > ul > li{
                        margin-bottom: 1em;
                    }

                        footer > .box_inner .f_navs .f_nav2 > ul > li > a{
                            font-weight: 600;
                        }

                        footer > .box_inner .f_navs .f_nav2 > ul > li > .child_nav{
                            font-size: 0.9em;
                            padding: 0.3em 0 0 1em;
                            line-height: 1.4;
                        }

                            footer > .box_inner .f_navs .f_nav2 > ul > li > .child_nav > ul > li{
                                margin-bottom: 0.4em;
                            }

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

                                footer > .box_inner .f_navs .f_nav2 > ul > li > .child_nav > ul > li ul{
                                    display: none;
                                }


    footer > .box_footer {
        position: relative;
        display: flex;
        justify-content: right;
        background: #64326e;
        color: #fff;
        padding: 2.5rem 4vw;
    }

        footer > .box_footer .goto_bbs{}

            footer > .box_footer .goto_bbs a{
                display: inline-block;
                color: #fff;
                text-decoration: none;
                font-size: 0.9rem;
                border-bottom: 2px solid #fff;
                padding: 0 0.3em 1em;
            }

        .copyright {
            font-size: 0.84rem;
        }


/*-----nav_oc-----*/
.nav_oc{
    /*display: block;*/
    display: none;
    /*background: #463c9b;*/
    width: 100px;
    height: 100px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    transition: .3s all ease;
}

    .menu-trigger{
        width: 100%;
        height: 100%;
        padding: 0;
        border: none;
        background: none;
        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);*/
    }

        .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: #333;
                position: absolute;
                width: 1.85rem;
                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-color: #fff;
            }

            .menu-trigger.active .lines span:nth-of-type(1) {
                transform: translateY(0.55rem) 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.8rem) 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;
    left: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: .3s all ease;
    background: rgba(255,255,255,0);
    display: none;
    flex-direction: column;
    align-items: center;
    padding-top: 10rem;
}

.side_nav.active{
    z-index: 10;
    opacity: 1;
    background: rgba(100,50,110,0.99);
}


    .side_nav .site_search{
        display: none;
    }

    .side_nav .side_global_nav{
        box-sizing: border-box;
        width: 100%;
        padding: 0 10vw;
        margin-top: 0;
    }

        .side_nav .side_global_nav > ul{
            width: 100%;
        }

            .side_nav .side_global_nav > ul > li > a{
                display: block;
                font-size: 1.2rem;
                padding: 1.5rem 1rem 1.5rem 2rem;
                color: #222;
                text-decoration: none;
                font-weight: 500;
                position: relative;
                transition: .3s all ease;
            }

/*ページトップ*/
.pagetop{
    width:5rem;
    height:5rem;
    position:fixed;
    bottom:5rem;
    right:5rem;
    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: #64326e;
        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;
}


/*改行の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){
    header > .box_inner .navs .global_nav1 > ul{
        padding: 1vw 3vw;
        flex: 1;
    }
    header > .box_inner .navs .global_nav1 > ul > li{
        margin-right: 1.5vw;
    }

    header > .box_inner .navs .global_nav2 > ul > li > a{
        padding: 0 1.5vw;
    }
}

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

    header > .box_inner > .logo_site_title{
        padding: 0 1.5vw 0 1.5vw;
    }

    header > .box_inner > .logo_site_title a{
        width: auto;
    }

    header > .box_inner > .logo_site_title a .fig{
        align-items: center;
    }

    header > .box_inner > .logo_site_title a .logo{
        width: 4rem;
        margin-right: 1rem;
    }

    header > .box_inner > .logo_site_title a .site_title{
        width: calc(4rem / 148 * 480);
    }

    header > .box_inner > .logo_site_title a .site_title_en{
        font-size: 0.78rem;
    }

    header > .box_inner .navs .global_nav2 > ul > li > a{
        padding: 0 1.1vw;
        line-height: 1.2;
        font-size: 1.05rem;
    }

    
    .contents{

    }

    footer{}

    footer > .box_header{
        margin-left: 2rem;
        margin-right: 2rem;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
    }

        footer > .box_header .navs {
            justify-content: center;
        }

        footer > .box_header .navs .home_lang_nav {
            margin-right: 2rem;
        }

        footer > .box_header .logo_site_title {
            margin: 0 auto 1rem;
        }
        
            footer > .box_header .logo_site_title a .logo{
                width: 11rem;
                margin-right: 1rem;
            }

            footer > .box_header .logo_site_title a .site_title{
                width: calc(11rem / 365 * 724);
            }

    footer > .box_inner{
        flex-direction: column-reverse;
        padding: 0 3rem 3rem;
    }

        footer > .box_inner .f_navs{
            padding-left: 0;
        }

            footer > .box_inner .f_navs .f_nav1{
                margin-bottom: 1.5rem;
            }

            footer > .box_inner .f_navs .f_nav1 ul li {
                margin-right: 2em;
                white-space: nowrap;
                margin-bottom: 0;
                width: auto;
            }

            footer > .box_inner .f_navs .f_nav1 ul li:nth-child(2n) {
                margin-right: 2em;
            }

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

        footer > .box_inner .contact_info_box > dl{
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        footer > .box_inner .contact_info_box > dl > dt{
            flex-direction: row;
            padding-left: 0;
            border-left: none;
            font-size: 1.1em;
        }

            footer > .box_inner .contact_info_box > dl > dd .contact_div{
                flex-direction: row;
                justify-content: center;
            }

                footer > .box_inner .contact_info_box > dl > dd .contact_div .lbl1{
                    margin-right: 0.5em;
                }

            footer > .box_inner .contact_info_box > dl > dd .contact_addr{
                flex-direction: row;
                justify-content: center;
            }

            footer > .box_inner .contact_info_box > dl > dd .contact_tel_email{
                display: flex;
            }

                footer > .box_inner .contact_info_box > dl > dd .contact_tel{
                    margin-right: 2em;
                }

        footer > .box_inner .contact_info_box .btn_donation{
            width: 40%;
            margin: 0 auto;
        }



    

}

/* ##########印刷用########## */
@media print{
    header{
        position:relative;
    }
    
    .pagetop{
        display: none;
    }
    
}