@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,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: #000;
    font-family: "IBM Plex Sans JP", sans-serif;
    background-color: #fff;
    line-height: 1.0;
}

button,
input[type="search"],
input[type="text"],
input[type="submit"],
input[type="button"],
select,
textarea{
    font-family: 'Noto Sans JP', sans-serif;
}

img{
    vertical-align:bottom;
}

#container{
    width: 100%;
    position: relative;
}

/*----------header----------*/
header{
    width:100%;
    position: fixed;
    top:0;
    left: 0;
    z-index: 3;
    transition: .3s all ease;
}


    header > .box_inner{
        box-sizing: border-box;
        height: 6.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 0 4vw;
        transition: .3s all ease;
    }

        header > .box_inner .logo_site_title{
            height: 100%;
        }

            header > .box_inner .logo_site_title a{
                box-sizing: border-box;
                display: flex;
                align-items: flex-end;
                height: 100%;
                padding-bottom: 1rem;
                transition: .5s all ease;
            }

            header > .box_inner .logo_site_title a:hover{
                opacity: 0.8;
            }

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

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

                header > .box_inner .logo_site_title a .site_title{
                    width: 16rem;
                    padding-bottom: 0.625rem;
                }

        header > .box_inner .navs{
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-end;
            height: 100%;
            flex: 1;
            padding: 0 1.5rem 0.75rem 0;
        }
            header > .box_inner .navs a{
                text-decoration: none;
                display: block;
            }

            header > .box_inner .navs .global_nav1{
                margin-bottom: 2rem;
            }

                header > .box_inner .navs .global_nav1 > ul{
                    display: flex;
                    gap: 2em;
                }

                    header > .box_inner .navs .global_nav1 > ul > li{}

                        header > .box_inner .navs .global_nav1 > ul > li a{
                            color: #000;
                            position: relative;
                            padding-left: 1.5em;
                            transition: .3s all ease;
                        }

                        header > .box_inner .navs .global_nav1 > ul > li a::before{
                            font-family: FontAwesome;
                            content:"\f111";
                            color: #1e3c7d;
                            position: absolute;
                            top: -0.1em;
                            left: 0;
                        }

                        header > .box_inner .navs .global_nav1 > ul > li a::after{
                            content: "";
                            display: block;
                            width: 100%;
                            height: 0;
                            position: absolute;
                            left: 0;
                            bottom: -0.25rem;
                            border-bottom: 1px solid #1e3c7d;
                            opacity: 0;
                            transform: scaleX(0);
                            transform-origin: left bottom;
                            transition: .3s all ease;
                        }

                        header > .box_inner .navs .global_nav1 > ul > li a:hover::after{
                            opacity: 1;
                            transform: scaleX(1);
                        }

            header > .box_inner .navs .global_nav2{}

                header > .box_inner .navs .global_nav2 > ul{
                    display: flex;
                    font-size: 1.25rem;
                    font-weight: 700;
                    gap: 1.5em;
                }

                    header > .box_inner .navs .global_nav2 > ul > li{}

                        header > .box_inner .navs .global_nav2 > ul > li > a{
                            color: #141950;
                            position: relative;
                        }

                        header > .box_inner .navs .global_nav2 > ul > li.active a{
                            color: #e42331;
                        }

                        header > .box_inner .navs .global_nav2 > ul > li > a::after{
                            content: "";
                            display: block;
                            width: 100%;
                            border-bottom: 0.25rem solid #e42331;
                            position: absolute;
                            bottom: -0.5rem;
                            left: 0;
                            opacity: 0;
                            transform: scaleX(0);
                            transform-origin: left bottom;
                            transition: .3s all ease;
                        }

                        header > .box_inner .navs .global_nav2 > ul > li > a:hover::after,
                        header > .box_inner .navs .global_nav2 > ul > li.active > a::after{
                            opacity: 1;
                            transform: scaleX(1);
                        }

                

        header > .box_inner .h_contact{
            display: flex;
            height: 100%;
        }

            header > .box_inner .h_contact .contact_tel{
                box-sizing: border-box;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                background: #fff;
                height: 100%;
                padding: 0 1.5rem 0.75rem;
            }

                header > .box_inner .h_contact .contact_tel .lbl_msg{
                    font-size: 0.875rem;
                    color: #141950;
                    font-weight: 500;
                    margin-bottom: 0.2em;
                }

                header > .box_inner .h_contact .contact_tel dl{
                    font-family: "Arimo", sans-serif;
                    display: flex;
                    align-items: flex-end;
                    font-weight: 700;
                    color: #141950;
                    margin-bottom: 0.5rem;
                }

                    header > .box_inner .h_contact .contact_tel dl dt{
                        font-size: 1.625rem
                    }

                    header > .box_inner .h_contact .contact_tel dl dd{
                        font-size: 2rem;
                    }

                header > .box_inner .h_contact .contact_tel .lbl_time{
                    font-size: 0.875rem;
                    color: #212121;
                    text-align: right;
                }

            header > .box_inner .h_contact .contact_mail{
                width: 10rem;
                height: 100%;
            }

                header > .box_inner .h_contact .contact_mail a{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    gap: 1rem;
                    text-decoration: none;
                    color: #fff;
                    background: #1e3c7d;
                    height: 100%;
                    transition: .3s all ease;
                }

                header > .box_inner .h_contact .contact_mail a:hover{
                    background: #141950;
                }

                    header > .box_inner .h_contact .contact_mail a .fig{
                        font-size: 1.6rem;
                    }

                    header > .box_inner .h_contact .contact_mail a .lbl{
                        font-weight: 500;
                    }


/*small_header*/
.small_header header {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 5px 10px -10px rgb(0 0 0 / 30%);
}

    .small_header header > .box_inner{
        height: 5.75rem;
    }


/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:0;
    transition: .3s all ease;
    padding-top: 8rem;
}


/*-----footer-----*/
footer {
}


    footer > .box_header{}

        footer > .box_header .f_contact{
            height: 15rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5rem;
        }

            footer > .box_header .f_contact .contact_tel{

            }

                footer > .box_header .f_contact .contact_tel dl{
                    font-family: "Arimo", sans-serif;
                    display: flex;
                    align-items: flex-end;
                    font-weight: 700;
                    color: #141950;
                }

                    footer > .box_header .f_contact .contact_tel dl dt{
                        font-size: 2.75rem;
                    }

                    footer > .box_header .f_contact .contact_tel dl dd{
                        font-size: 3.4375rem;
                    }

                        footer > .box_header .f_contact .contact_tel dl dd a[href^="tel:"] {
                            color: #141950;;
                        }

                footer > .box_header .f_contact .contact_tel p{
                    text-align: center;
                }

            footer > .box_header .f_contact .contact_mail{

            }

                footer > .box_header .f_contact .contact_mail a{
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 17.5rem;
                    height: 5rem;
                    background: #1e3c7d;
                    border-radius: 2.5rem;
                    color: #fff;
                    text-decoration: none;
                    font-size: 1.125rem;
                    transition: .3s all ease;
                }

                footer > .box_header .f_contact .contact_mail a:hover{
                    background: #141950;
                }

                footer > .box_header .f_contact .contact_mail a::after{
                    content: "";
                    width: 2.25rem;
                    height: 2.25rem;
                    border-radius: 50%;
                    background: #f0f0f0;
                    background-image: url('../shared/icon/icon_arr1.png');
                    background-repeat: no-repeat;
                    background-size: 1rem auto;
                    background-position: center center;
                    position: absolute;
                    top: calc(50% - 1.125rem);
                    right: 1.5rem;
                }

        footer > .box_header .f_map{
            height: 20.625rem;
        }

            footer > .box_header .f_map iframe{
                width: 100%;
                height: 100%;
            }

    footer > .box_inner{
        display: flex;
        background: #f0f0f0;
        padding: 6.25rem 0 5rem;
    }

        footer > .box_inner .f_contact_info_calendar{
            width: 1200px;/*暫定*/
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
        }

        footer > .box_inner .f_contact_info{
            font-size: 0.875rem;
        }

                footer > .box_inner .f_contact_info .f_site_title{
                    width: 18.5rem;
                    margin-bottom: 2rem;
                }

                    footer > .box_inner .f_contact_info .f_site_title a{
                        display: block;
                        transition: .3s all ease;
                    }

                    footer > .box_inner .f_contact_info .f_site_title a:hover{
                        opacity: 0.8;
                    }

                    footer > .box_inner .f_contact_info .f_site_title img{
                        max-width: 100%;
                        height: auto;
                    }

                footer > .box_inner .f_contact_info .zip_addr_tel_fax{
                    line-height: 1.6;
                    padding-left: 3rem;
                }

                    footer > .box_inner .f_contact_info .zip_addr{
                        display: flex;
                        flex-direction: column;
                    }

                    footer > .box_inner .f_contact_info .tel_fax{
                        
                    }

                        footer > .box_inner .f_contact_info .tel_fax a[href^="tel:"]{
                            color: #000;
                        }

                        footer > .box_inner .f_contact_info .tel_fax dl{
                            display: flex;
                        }

                        footer > .box_inner .f_contact_info .tel_fax dl dt{
                            margin-right: 0.3em;
                        }

        footer > .box_inner .f_calendar{
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

            footer > .box_inner .f_calendar > .box_inner{
                width: 38rem;
            }

            footer > .box_inner .f_calendar iframe{
                width: 100%;
                height: 13.5rem;
            }

            footer > .box_inner .f_calendar p .legend_holiday{
                display: inline-block;
                width: 2em;
                height: 1em;
                background: #e42331;
                margin-right: 0.3em;
                transform: translateY(0.1em);
            }


    footer > .box_footer{
        background: #f0f0f0;
        padding: 0 0 4rem;
    }

        footer > .box_footer .copyright{
            width: 1200px;/*暫定*/
            margin: 0 auto;
            font-size: 0.875rem;
        }

/*-----nav_oc-----*/
.nav_oc{
    display: none;/*PC非表示*/
    width: 5.25rem;
    height: 5.25rem;
    position: fixed;
    top: 1rem;
    right: 1.25rem;
    z-index: 10;
    transition: .3s all ease;
}

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

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

    .menu-trigger.active{
        background: rgb(128,0,0,0);
    }

        .menu-trigger::before{
            content: "";
            background: #1f3c7e;
            display: block;
            position: absolute;
        }

        .menu-trigger .lines{
            position: relative;
            z-index: 1;
            display: block;
            width: 1.875rem;
            height: 1.25rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: #fff;
                position: absolute;
                width: 1.875rem;
                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% - 1px);
            }
            .menu-trigger .lines span:nth-of-type(3) {
                bottom: 0;
            }

            .menu-trigger.active .lines span{
                /*background-color: #800000;*/
            }

            .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.6rem) rotate(315deg);
            }

        .menu-trigger .lbl{
            color: #333;
            font-family: "Cardo", serif;
            text-transform: uppercase;
            font-size: 0.7rem;
            margin-top: 0.8em;
            font-weight: 700;
        }

        .menu-trigger.active .lbl{
            /*color: #800000;*/
        }

/*-----side_nav-----*/
.side_nav{
    display: none;/*PC非表示*/
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 56.25rem;
    height: 100%;
    transition: .4s all ease;
    background-color: rgba(255,255,255,0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(1rem);
    padding-top: 1vh;
}

.side_nav.active{
    z-index: 9;
    opacity: 1;
    background-color: #fff;
    box-shadow: -10px 0 20px -20px rgba(0,0,0,0.5);
    transform: translateX(0);
}

    .side_nav .side_global_nav{
        box-sizing: border-box;
        width: 100%;
    }

    .side_nav .side_global_nav > ul{}

    .side_nav .side_global_nav > ul > li{

    }

    .side_nav .side_global_nav > ul > li > a{
        display: block;
        color: #222;
        text-decoration: none;
        padding: 1em;
        transition: .4s all ease;
    }

    .side_nav .side_global_nav > ul > li > a:hover{
        background: #faf0eb;
        color: #e63632;
    }


/*ページトップ*/
.pagetop{
    width: 4rem;
    height: 4rem;
    position:fixed;
    bottom:5.625rem;
    right: 3rem;
    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: #1e3c7d;
        opacity: 0.8;
    }
    
    .pagetop a:hover{
        opacity: 1;
    }


    .pagetop a:before{
        content: "";
        display: block;
        width: 0.875rem;
        height: 0.875rem;
        /*色変更は　fill="%23[16進数]"　部分で設定*/
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30"><path d="M15.58,3.46c-0.85-0.71-2.11-0.59-2.82,0.26s-0.59,2.11,0.26,2.82L20.78,13H4.3c-1.1,0-2,0.9-2,2s0.9,2,2,2h16.48 l-7.76,6.46c-0.85,0.71-0.96,1.97-0.26,2.82c0.4,0.47,0.96,0.72,1.54,0.72c0.45,0,0.91-0.15,1.28-0.46L29.43,15L15.58,3.46z"/></svg>');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        transform: rotate(-90deg);
    }

/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"]{
    padding-top: 7.5rem;
    margin-top:-7.5rem;
}


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

a[href^="tel:"]{
    text-decoration: none;
    pointer-events: none;
}


/*1350px以下*/
@media screen and (min-width:1px) and (max-width:1350px){
    header > .box_inner{
        padding-left: 3vw;
    }

        header > .box_inner .logo_site_title a .site_logo{
            margin-right: 1.5vw;
        }

    header > .box_inner .navs .global_nav2 > ul{
        gap: 2vw;
        font-size: 1.5vw;
    }

    header > .box_inner .h_contact .contact_tel{
        padding-right: 1.25vw;
        padding-left: 1.25vw;
    }

    header > .box_inner .h_contact .contact_mail{
        width: 10vw;
    }
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){
    header > .box_inner{
        padding-left: 2.5vw;
    }

    header > .box_inner .logo_site_title a .site_logo{
        width: 5vw;
        margin-right: 1.25vw;
    }

    header > .box_inner .logo_site_title a .site_title{
        width: calc(5vw / 112 * 512);
    }

    header > .box_inner .navs{
        padding-right: 0;
    }

    footer > .box_inner .f_contact_info_calendar,
    footer > .box_footer .copyright{
        box-sizing: border-box;
        width: 100%;
        padding-left: 4vw;
        padding-right: 4vw;
    }
}

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

    header > .box_inner{
        height: 5.5rem;
    }

    header > .box_inner .logo_site_title a .site_logo{
        width: 3rem;
        margin-right: 0.75rem;
    }

    header > .box_inner .logo_site_title a .site_title{
        width: calc(3rem / 112 * 512);
    }

    header > .box_inner .navs{
        padding-right: 1rem;
    }

    header > .box_inner .h_contact .contact_tel dl dt{
        font-size: 1.3rem;
    }

    header > .box_inner .h_contact .contact_tel dl dd{
        font-size: 1.8rem;
    }

    header > .box_inner .h_contact .contact_mail a .lbl{
        font-size: 0.9rem;
    }

    footer > .box_inner .f_calendar{
        flex: 1;
        padding-left: 2rem;
    }

    footer > .box_inner .f_calendar > .box_inner{
        width: 100%;
    }

    
}

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