@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*--京base.css--*/
:root {
    --font_family1: "IBM Plex Sans JP", sans-serif;
    --font_family2: "Montserrat", sans-serif;
    --base_color1: #1a1a1a;
    --base_color2: #0399B4;
    --base_color3: #005FCC;
    --base_color4: #D50004;
    --base_color5: #397B5D;
    --base_color6: #fff392;
    --base_color7: #beffb0;
    --base_color8: #DA653B;
    --base_color9: #f5f5f5;
    --base_color10: #9FDD92;
    --base_color11: #DBCF6A;
    --base_color12: #7BC6D5;
    --base_color13: #2C2C2C;
    --base_color14: #f7f7f7;
    --base_color15: #01738D;
}
/* 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="submit"],
input[type="email"]{
    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: 3;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.99);
    transition: .5s all ease;
}

    header > .box_inner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 6rem;
        padding: 0 0 0 2.5vw;
        transition: .3s all ease;
    }

        header > .box_inner img{
            max-width: 100%;
            height: auto;
        }

        header > .box_inner .site_title_company_name{}

            header > .box_inner .site_title_company_name a{
                display: flex;
                align-items: center;
                text-decoration: none;
                gap: 1rem;
                transition: .4s all ease;
            }

            header > .box_inner .site_title_company_name a:hover{
                opacity: 0.8;
            }

                header > .box_inner .site_title_company_name a .site_title{
                    width: 7.5rem;
                }

                header > .box_inner .site_title_company_name a .company_name{
                    color: var(--base_color1);
                    font-weight: 500;
                    font-size: 1.1rem;
                    padding-top: 0.1em;
                }


        header > .box_inner .navs{
            height: 6rem;
            display: flex;
            flex-direction: column;
        }

            header > .box_inner .navs ul{
                display: flex;
            }

            header > .box_inner .navs .h_nav{
                display: flex;
            }

                header > .box_inner .navs .h_anc_nav{}

                    header > .box_inner .navs .h_anc_nav ul{
                        gap: 1px;
                    }

                        header > .box_inner .navs .h_anc_nav ul li{}

                            header > .box_inner .navs .h_anc_nav ul li a{
                                box-sizing: border-box;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                width: 15.125rem;
                                height: 3.5rem;
                                padding-top: 0.2em;
                                background: var(--base_color1);
                                text-decoration: none;
                                font-weight: 600;
                                font-size: 1.125rem;
                                position: relative;
                            }

                                header > .box_inner .navs .h_anc_nav ul li a::before{
                                    content: "";
                                    display: block;
                                    width: 100%;
                                    height: 100%;
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    z-index: 0;
                                    transition: .3s all ease;
                                    transform: scaleY(0);
                                    transform-origin: left top;
                                }

                                header > .box_inner .navs .h_anc_nav ul li a .lbl{
                                    color: #fff;
                                    position: relative;
                                    z-index: 1;
                                    transition: .3s all ease;
                                }

                                header > .box_inner .navs .h_anc_nav ul li a:hover::before{
                                    transform: scaleY(1);
                                    background: rgba(255,255,255,1);
                                }

                                header > .box_inner .navs .h_anc_nav ul li a:hover .lbl{
                                    color: var(--base_color2);
                                }

                header > .box_inner .navs .h_sns_nav{
                    border-bottom: 1px solid var(--base_color1);
                    display: flex;
                    align-items: center;
                    margin: 0 0.25rem;
                }

                    header > .box_inner .navs .h_sns_nav ul{
                        gap: 0.75rem;
                        padding: 0 0.5rem;
                    }

                        header > .box_inner .navs .h_sns_nav ul li{}

                            header > .box_inner .navs .h_sns_nav ul li a{
                                display: block;
                                width: 2rem;
                            }

            header > .box_inner .navs .global_nav{
                flex: 1;
            }

                header > .box_inner .navs .global_nav > ul{
                    height: 100%;
                }

                    header > .box_inner .navs .global_nav > ul > li{
                        height: 100%;
                        width: 7.5625rem;
                        position: relative;
                    }

                    header > .box_inner .navs .global_nav > ul > li:last-child{
                        width: auto;
                        flex: 1;
                    }

                        header > .box_inner .navs .global_nav > ul > li::before{
                            content: "";
                            display: inline-block;
                            border-right: 1px solid var(--base_color1);
                            top: calc(50% - 0.75rem);
                            left: 0;
                            width: 0;
                            height: 1.5rem;
                            position: absolute;
                        }

                    header > .box_inner .navs .global_nav > ul > li > a{
                        box-sizing: border-box;
                        color: var(--base_color1);
                        text-decoration: none;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        height: 100%;
                        font-size: 0.94em;
                        font-weight: 500;
                        width: calc(100% - 0.3125rem);
                        margin: 0 0 0 0.1875rem;
                        transition: .3s all ease;
                    }

                    header > .box_inner .navs .global_nav > ul > li > a:hover{
                        color: var(--base_color2);
                    }

                        header > .box_inner .navs .global_nav > ul > li.active > a .lbl{
                            background: var(--base_color6);
                            width: 100%;
                            text-align: center;
                            padding: 0.4em 0 0.2em;
                        }


/*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_inner .logo_site_title{
        /*padding-bottom: 1rem;*/
    }

 
/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:0;
    padding-top: 6rem;
    padding-bottom: 8rem;
}

/*common_contact_info_box*/
.common_contact_info_box{
    background: #fff;
    line-height: 1.6;
    padding: 2.25rem 6.25rem;
}

    .common_contact_info_box > .box_header{
        margin-bottom: 1.25rem;
        display: flex;
        justify-content: center;
        font-weight: 700;
    }

        .common_contact_info_box > .box_header p{
            font-size: 1.25rem;
        }

    .common_contact_info_box > .box_inner{}

        .common_contact_info_box > .box_inner .contact_tel{
            font-family: var(--font_family2);
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            font-size: 3rem;
            line-height: 1;
        }

            .common_contact_info_box > .box_inner .contact_tel dt{
                font-size: 0.75em;
                margin-right: 0.3em;
            }

            .common_contact_info_box > .box_inner .contact_tel a{
                color: var(--base_color1);
                text-decoration: none;
                pointer-events: none;
            }

        .common_contact_info_box > .box_inner .contact_time{
            display: flex;
            justify-content: center;
            margin: 1em 2em;
        }

            .common_contact_info_box > .box_inner .contact_time dt::after{
                content: "／";
            }

        .common_contact_info_box > .box_inner .goto_contact{
            display: flex;
            justify-content: center;
        }

            .common_contact_info_box > .box_inner .goto_contact a{
                background: var(--base_color13);
                color: #fff;
                font-size: 1.25rem;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 0 2.5em;
                height: 4rem;
                border-radius: 100vh;
                text-decoration: none;
                transition: .3s all ease;
            }

            .common_contact_info_box > .box_inner .goto_contact a:hover{
                background: var(--base_color2);
            }


/*-----footer-----*/
footer {
    position: relative;
    z-index: 1;
    background: var(--base_color13);
    color: #fff;
    padding: 5rem 0 2.5rem;
}

    footer a{
        color: #fff;
        text-decoration: none;
    }

    footer > .box_header{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2.75rem;
    }

        footer > .box_header .lbl_group{
            margin-right: 1em;
        }

        footer > .box_header .logo_kumanichi_sv a{
            display: block;
            width: 12.5rem;
        }

            footer > .box_header .logo_kumanichi_sv a img{
                max-width: 100%;
                height: auto;
            }

        footer > .box_header .f_site_title{
            margin-left: 1em;
            font-size: 1.5em;
            font-weight: 600;
        }

    footer > .box_inner{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 5rem;
    }

        footer > .box_inner .f_nav{
            margin-bottom: 2.75rem;
        }

        footer > .box_inner .f_nav ul{
            display: flex;
            justify-content: center;
            gap: 2.5em;
        }

            footer > .box_inner .f_nav ul li a:hover{
                text-decoration: underline;
            }

        footer > .box_inner .f_sns_nav{}

            footer > .box_inner .f_sns_nav ul{
                display: flex;
                gap: 1rem;
            }

                footer > .box_inner .f_sns_nav ul li a{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: #fff;
                    width: 3rem;
                    aspect-ratio: 1 / 1;
                    border-radius: 50%;
                }

                    footer > .box_inner .f_sns_nav ul li a .fig{
                        width: 2rem;
                    }

                    footer > .box_inner .f_sns_nav ul li a .fig img{
                        max-width: 100%;
                        height: auto;
                    }

    footer > .box_footer{
        display: flex;
        justify-content: center;
    }

        footer > .box_footer .copyright{
            font-size: 0.9em;
        }

.bottom_anc_nav_sp{
    display: none;
}


/*-----nav_oc-----*/
.nav_oc{
    width: 4.25rem;
    height: 4.25rem;
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 11;
    transition: .3s all ease;
    /*PCでは非表示*/
    display: none;
}

    .menu-trigger{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        border: none;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        background: none;
        transition: .3s all ease;
    }

    .menu-trigger:hover{
        filter: brightness(1.1);
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 1rem;
            height: calc(0.875rem - 1px);
            margin-bottom: 0.625rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: #fff;
                position: absolute;
                width: 1rem;
                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:nth-of-type(1) {
                transform: rotate(34deg) scaleX(1.3);
                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(-34deg) scaleX(1.3);
                transform-origin: left bottom;
            }

        .menu-trigger .lbl{
            font-family: "Jost", sans-serif;
            color: #fff;
            font-size: 0.6rem;
            line-height: 1;
            
        }

/*-----side_nav-----*/
.side_nav{
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 25rem;
    height: 100%;
    transition: .3s all ease;
    background: rgba(255,255,255,0);
    display: block;
    flex-direction: column;
    align-items: center;
    padding-top: 8rem;
}

.side_nav.active{
    z-index: 10;
    opacity: 1;
    background: rgba(255,255,255,0.99);
    box-shadow: 1rem 0 1rem 1rem rgba(0,0,0,0.2);
}


    .side_nav .side_global_nav1{
        margin: 0 1.5rem 2rem 1.5rem;
    }

        .side_nav .side_global_nav1 ul{
            line-height: 1.4;
        }


                .side_nav .side_global_nav1 ul li a{
                    display: block;
                    color: #222;
                    font-weight: 500;
                    font-size: 1.1rem;
                    text-decoration: none;
                    padding: 0.8em;
                }

    .side_nav .side_global_nav2{
        margin: 0 1.5rem;
    }

        .side_nav .side_global_nav2 ul{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            line-height: 1.4;
        }

            .side_nav .side_global_nav2 ul li{
                width: calc((100% - 1rem) / 2);
            }

                .side_nav .side_global_nav2 ul li a{
                    display: block;
                    color: var(--base_color1);
                    text-decoration: none;
                    font-size: 0.94rem;
                }

                .side_nav .side_global_nav2 ul li a:hover{
                    text-decoration: underline;
                }

.side_nav .side_global_nav3{
    margin-top: 1.5rem;
}

    .side_nav .side_global_nav3 ul{
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

        .side_nav .side_global_nav3 ul li a{
            display: block;
            width: 2rem;
        }

            .side_nav .side_global_nav3 ul li a img{
                max-width: 100%;
                height: auto;
            }
            


/*ページトップ*/
.pagetop{
    width:5rem;
    height:5rem;
    position:fixed;
    bottom:3rem;
    right:3.75rem;
     transform:translateY(100px);
    transition:.3s all ease;
    opacity:0;
    z-index: -1;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
    z-index:10;
}

    .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_color1);
        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_"]{
    display: block;
    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;
}

/*1280px以下*/
@media screen and (min-width:1px) and (max-width:1280px){

    
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){

}

/*1100px以下*/
@media screen and (min-width:1px) and (max-width:1100px){
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.6vw;
    }

    header > .box_inner{
        padding-left: 2vw;
    }

        header > .box_inner .site_title_company_name a .company_name{
            font-size: 0.95rem;
        }

}

/* ##########印刷用########## */
@media print{
    html{
        width: 1024px;
    }
    
    header{
        position:relative;
    }

    .contents{
        padding-top: 0;
    }
    
    .pagetop{
        display: none;
    }
    
}