@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=Poppins:wght@400;500;600;700&display=swap');
/*--京base.css--*/
:root {
    --base_color1: #1a1a1a;
    --base_color2: #16704b;
    --base_color3: #f8d81e;
    --base_color4: #925f0c;
    --base_color5: #c04823;
    --base_color6: #237990;
    --base_color7: #10442e;
    --base_color8: #e3f7eb;
    --base_color9: #fdfad7;
    --font_family1: "IBM Plex Sans JP", sans-serif;
    --font_family2: "Poppins", sans-serif;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
    outline-offset: -2px;
}

html {
    font-size: 16px;
}

body {
    width: 100%;
    height: 100%;
    color: var(--base_color1);
    font-family: var(--font_family1);
    background-color: #fff;
    line-height: 1.0;
    -webkit-text-size-adjust: 100%;
}

button,
input[type="search"],
input[type="text"],
input[type="email"],
input[type="submit"]{
    font-family: "Noto Sans JP", sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

img{
    vertical-align:bottom;
}

#container{
    width: 100%;
    position: relative;
}

/*----------header----------*/
header{
    box-sizing: border-box;
    width: 100%;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    transition: .5s all ease;
}

/*下スクロールでheader非表示、上スクロールで表示*/
header.hide{
    transform: translateY(-8.75rem);
}

    header > .box_inner{
        position: relative;
        box-sizing: border-box;
        height: 8.75rem;
        padding: 0 2vw 0 2vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: .3s all ease;
    }

        header > .box_inner::before{
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            background: #FFF;
            background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 15%, rgba(255, 255, 255, 1) 100%);
            transition: .3s all ease;
            opacity: 0;
        }

        header > .box_inner .logo_site_title{
            transition: .3s all ease;
            position: relative;
            z-index: 1;
        }

            header > .box_inner .logo_site_title a{
                display: flex;
                align-items: center;
                gap: 0.9rem;
                text-decoration: none;
                transition: .3s all ease;
            }


            header > .box_inner .logo_site_title a:hover{
                filter: brightness(1.1);
            }

                header > .box_inner .logo_site_title a img{
                    height: 100%;
                    width: auto;
                }

                header > .box_inner .logo_site_title a .logo{
                    height: 5rem;
                }

                header > .box_inner .logo_site_title a .site_title{
                    height: 5rem;
                }

        header > .box_inner .navs_h_contact{
            display: flex;
            position: relative;
            z-index: 1;
        }

        header > .box_inner .navs{
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1rem;
        }

        header > .box_inner .h_nav{
            padding-right: 2em;
        }

            header > .box_inner .h_nav > ul{
                display: flex;
                gap: 2em;
            }

                header > .box_inner .h_nav > ul > li{
                }

                header > .box_inner .h_nav > ul > li > a{
                    text-decoration: none;
                    color: var(--base_color1);
                    display: flex;
                    align-items: center;
                    gap: 0.4em;
                    font-size: 1.05em;
                    font-weight: 500;
                }

                header > .box_inner .h_nav > ul > li > a::before{
                    font-family: FontAwesome;
                    content:"\f111";
                    color: var(--base_color2);
                    font-size: 1.1em;
                    font-weight: normal;
                    transform: translateY(-0.05em);
                }

                header > .box_inner .h_nav > ul > li > a .lbl{
                    transition: .3s all ease;
                }

                header > .box_inner .h_nav > ul > li > a:hover .lbl{
                    color: var(--base_color2);
                }


        header > .box_inner .global_nav{
            transition: .3s all ease;
        }

            header > .box_inner .global_nav > ul{
                display: flex;
                background: #fff;
                border-radius: 100vh;
                padding: 0 1em;
                box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
            }

            header > .box_inner .global_nav > ul > li{
                position: relative;
            }

            header > .box_inner .global_nav > ul > li::before{
                content: "";
                display: inline-block;
                width: 0;
                height: 1rem;
                border-left: 1px solid rgba(0,0,0,0.2);
                position: absolute;
                top: 1em;
                right: 0;
            }

            header > .box_inner .global_nav > ul > li:last-child:before{
                content: none;
            }

            header > .box_inner .global_nav > ul > li > a{
                color: var(--base_color1);
                text-decoration: none;
                display: block;
                padding: 0.85em 0.9em 0.6em;
                font-weight: 500;
                font-size: 1.2em;
                transition: .3s all ease;
            }

            header > .box_inner .global_nav > ul > li:hover > a{
                color: var(--base_color2);
            }

            header > .box_inner .global_nav > ul > li.active > a{
                color: var(--base_color2);
            }

        header > .box_inner .h_contact{
            margin-left: 1.5vw;
        }

            header > .box_inner .h_contact a{
                background: var(--base_color2);
                color: #fff;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 0.8em;
                height: 100%;
                padding: 0 1.5em;
                text-decoration: none;
                border-radius: 1rem;
                box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
                transition: .3s all ease;
            }

            header > .box_inner .h_contact a:hover{
                filter: brightness(1.1);
            }

                header > .box_inner .h_contact a .icon{
                    width: 1.5rem;
                }

                header > .box_inner .h_contact a .icon img{
                    max-width: 100%;
                    height: auto;
                }

                header > .box_inner .h_contact a .lbl{
                    font-size: 0.94em;
                }

/*small_header*/
.small_header header > .box_inner{
    /*box-shadow: 0 10px 10px -10px rgba(0,0,0,0.1);*/
}

    .small_header header > .box_inner::before{
        opacity: 1;
    }


/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:2;
    padding-top: 8.75rem;
    padding-bottom: 4rem;
}


/*-----footer-----*/

footer {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    footer::before {
        content: "";
        display: block;
        width: 100%;
        height: 22.5rem;
        background-image: url(../shared/img_footer.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    footer > .box_header{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2em;
        padding: 4em 0;
    }

        footer > .box_header .logo_site_title{
        }

            footer > .box_header .logo_site_title a{
                display: flex;
                gap: 1rem;
            }

            footer > .box_header .logo_site_title a img{
                height: 100%;
                width: auto;
            }

            footer > .box_header .logo_site_title a .logo{
                height: 5rem;
            }

            footer > .box_header .logo_site_title a .site_title{
                height: 5.5rem;
            }

        footer > .box_header address{
            line-height: 1.5;
        }

        footer > .box_header address .company_name{
            font-size: 1.1em;
            font-weight: 500;
            margin-bottom: 0.2em;
        }

        footer > .box_header address .tel_fax{
            display: flex;
            gap: 2em;
        }

        footer > .box_header address .tel_fax a{
            color: var(--base_color1);
            text-decoration: none;
            pointer-events: none;
        }

    footer > hr{
        border: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }


    footer > .box_inner{
        padding: 4em 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4em;
    }

        .sns{
            display: flex;
            gap: 1.5em;
        }

            .sns img{
                max-width: 100%;
                height: auto;
            }

            .sns p{
                width: 8.5rem;
            }

            .sns ul{
                display: flex;
                justify-content: center;
                gap: 1.5em;
            }

                .sns ul li a{
                    display: block;
                    width: 2rem;
                }

        footer > .box_inner .btn_contact{
            
        }

        footer > .box_inner .btn_contact a{
            display: flex;
            align-items: center;
            border: 2px solid var(--base_color2);
            color: var(--base_color2);
            font-size: 1.2em;
            font-weight: 600;
            border-radius: 100vh;
            text-decoration: none;
            gap: 0.8em;
            padding: 0.8em 3em 0.6em;
            transition: .3s all ease;
        }

        footer > .box_inner .btn_contact a:hover{
            background: var(--base_color2);
            color: #fff;
            transition: .3s all ease;
        }

            footer > .box_inner .btn_contact a .icon{
                width: 1.5rem;
            }

            footer > .box_inner .btn_contact a .icon img{
                max-width: 100%;
                height: auto;
            }

            footer > .box_inner .btn_contact a:hover .icon{
                width: 1.5rem;
                filter: brightness(0) invert(1);
            }



    footer > .box_footer{
        box-sizing: border-box;
        width: 100%;
        background: var(--base_color7);
        padding: 4em 8vw;
        display: flex;
        justify-content: space-between;
    }

        footer > .box_footer .f_nav ul{
            display: flex;
            gap: 1.5em;
            font-size: 0.9em;
        }

            footer > .box_footer .f_nav li{}

            footer > .box_footer .f_nav li a{
                color: #fff;
                text-decoration: none;
            }

            footer > .box_footer .f_nav li a:hover{
                text-decoration: underline;
            }


        footer > .box_footer .copyright{
            font-size: 0.84em;
            color: #fff;
        }

/*-----nav_oc-----*/
.nav_oc{
    width: 5rem;
    aspect-ratio: 5 / 4.5;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    transition: .3s all ease;
    display: none;
}

    .menu-trigger{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        background: var(--base_color2);
        border: none;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 1rem;
        padding-top: 0.3em;
        transition: .3s all ease;
    }

    .menu-trigger:hover{
        filter: brightness(1.1);
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 1.5rem;
            height: calc(1rem + 1px);
            margin-bottom: 0.3em;
            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.5rem;
                left: 0;
                height: 1px;
            }

            .menu-trigger .lines span:nth-of-type(1) {
                top: 0;
            }

            .menu-trigger .lines span:nth-of-type(2) {
                top: 50%;
            }
            .menu-trigger .lines span:nth-of-type(3) {
                bottom: 0;
            }

            .menu-trigger.active .lines span:nth-of-type(1) {
                transform: rotate(35deg) scaleX(1.15);
                transform-origin: left top;
            }

            .menu-trigger.active .lines span:nth-of-type(2) {
                opacity: 0;
            }

            .menu-trigger.active .lines span:nth-of-type(3) {
                transform: rotate(-35deg) scaleX(1.15);
                transform-origin: left bottom;
            }

        .menu-trigger .lbl{
            color: #fff;
        }

/*-----side_nav-----*/
.side_nav{
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    transition: .3s all ease;
    background: rgba(0,0,0,0);
    transform: translateX(0.5rem);
}

.side_nav.active{
    z-index: 10;
    opacity: 1;
    transform: translateX(0);
    background: rgba(0,0,0,0.75);
    overflow-y: auto;
}

    .side_nav_box_wrapper{
        box-sizing: border-box;
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 0.5rem;
    }

    .side_nav_box{
        box-sizing: border-box;
        background: rgba(255,255,255,0.95);
        padding: 1rem;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
    }

        .side_nav_box > .box_header{
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

            .side_nav_box > .box_header .logo_site_title a{
                display: flex;
            }


        .side_nav_box > .box_inner{
            margin-bottom: 4rem;
        }

            .side_nav_box > .box_inner a{
                text-decoration: none;
                transition: .3s all ease;
            }

            .side_nav_box > .box_inner a:hover{
            }


            .side_nav .side_global_nav1{
                display: flex;
                justify-content: center;
                line-height: 1.4;
                gap: 0 4em;
            }

            .side_nav .side_global_nav1 a::before{
                content: "";
                display: block;
                width: 100%;
                height: 0;
                border-top: 1px solid rgba(255,255,255,1);
                position: absolute;
                bottom: 0;
                left: 0;
                transition: .5s all ease;
                opacity: 0;
            }

            .side_nav .side_global_nav1 a:hover::before{
                opacity: 1;
            }

            .side_nav .side_global_nav1 a:hover{

            }

            .side_nav .side_global_nav1 > ul{
                display: flex;
                flex-direction: column;
                gap: 2em;
            }

                .side_nav .side_global_nav1 > ul > li{}

                    .side_nav .side_global_nav1 > ul > li > a,
                    .side_nav .side_global_nav1 > ul > li > .nolink{
                        font-family: var(--font_family2);
                        font-size: 1.15em;
                    }

                    .side_nav .side_global_nav1 > ul > li > .child_nav{
                        font-size: 0.9em;
                        font-weight: 300;
                        margin-top: 0.9em;
                    }

                        .side_nav .side_global_nav1 > ul > li > .child_nav ul{}

                            .side_nav .side_global_nav1 > ul > li > .child_nav ul li{
                                position: relative;
                                padding-left: 1em;
                                margin-bottom: 0.3em;
                            }

                            .side_nav .side_global_nav1 > ul > li > .child_nav ul li:last-child{
                                margin-bottom: 0;
                            }

                            .side_nav .side_global_nav1 > ul > li > .child_nav ul li::before{
                                content: "-";
                                position: absolute;
                                top: 0;
                                left: 0;
                            }

        .side_nav_box > .box_footer{
            color: #fff;
        }

/*ページトップ*/
.pagetop{
    width:4rem;
    height:4rem;
    position:fixed;
    bottom:5.5rem;
    right:1rem;
     transform:translateY(100px);
    transition:.3s all ease;
    opacity:0;
    z-index: -1;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
    z-index:9;
}

    .pagetop a{
        box-sizing: border-box;
        display:flex;
        justify-content: center;
        align-items: center;
        transition:.5s all ease;
        width:100%;
        height:100%;
        text-decoration:none;
        border-radius: 50%;
        background: var(--base_color3);
        padding-bottom: 0.2rem;
    }
    
    .pagetop a:hover{
        filter: brightness(1.1);
    }


    .pagetop a:before{
        font-family: FontAwesome;
        content:"\f106";
        color: var(--base_color7);
        font-size: 2.4rem;
    }


/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"]{
    padding-top: 150px;
    margin-top:-150px;
}

/*↑全部にかけてみる暫定*/
a[id]{
    padding-top: 150px;
    margin-top:-150px;
}


/*改行のPC,SPでの表示切替*/
br.pc,
img.pc,
span.pc{
    display:inline;
}

br.sp,
img.sp,
span.sp{
    display:none;
}

.ta_center{
    text-align:center;
}

.ta_left{
    text-align:left;
}

.ta_right{
    text-align:right;
}

/*WP汎用*/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.wp-caption,
[class*='wp-image'] {
  /*display: block;*/
  max-width: 100% !important;
  /*margin-top: 1.5em;*/
  /*text-align: center;*/
  /*margin: 0 auto;*/
}
.wp-caption-text {
  margin-top: 0;
}

.wp-caption{
    width: auto !important;
}

.grecaptcha-badge{
    display: none;
    z-index: 100;
}

/*1280px以下*/
@media screen and (min-width:1px) and (max-width:1280px){
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){

}

/*1160px以下*/
@media screen and (min-width:1px) and (max-width:1160px){
    header > .box_inner .global_nav > ul > li > a{
        font-size: 1.1em;
    }

    header > .box_inner .h_nav > ul > li > a{
        font-size: 1.05em;
    }
}

/*1060px以下*/
@media screen and (min-width:1px) and (max-width:1060px){
    header > .box_inner .global_nav > ul > li > a{
        padding-left: 1vw;
        padding-right: 1vw;
    }

}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.6vw;
    }

    header > .box_inner .h_nav > ul > li > a{
        font-size: 1.05em;
    }

    header > .box_inner .global_nav > ul > li > a{
        font-size: 1.05em;
    }

    header > .box_inner .h_contact a{
        padding: 0 1em;
    }

        header > .box_inner .h_contact a .lbl{
            font-size: 0.9em;
        }

}

/* ##########印刷用########## */
@media print{
    html{
        width: 1024px;
    }
    
    header{
        position:relative;
    }
   
    
    .contents{
        padding-top: 0;
    }
    
    .pagetop{
        display: none;
    }
    
}