@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&family=Noto+Sans+JP:wght@100..900&display=swap');
/*--京base.css--*/
:root {
    --base_color1: #231815;
    --base_color2: #e95377;
    --base_color3: #c53664;
    --font_family1: "Noto Sans JP", sans-serif;
    --font_family2: "Barlow Condensed", 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);
    font-weight: 300;
    background-color: #fff;
    line-height: 1.0;
    -webkit-text-size-adjust: 100%;
}

html.side_nav_show {
    overflow-y: hidden;
}

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: 3;
    top: 0;
    left: 0;
    transition: .5s all ease;
}

    header > .box_inner{
        box-sizing: border-box;
        height: 6rem;
        padding: 0 1rem 0 2vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        transition: .3s all ease;
    }

        header > .box_inner .site_title{
            transition: .3s all ease;
        }

            header > .box_inner .site_title a{
                transition: .3s all ease;
                display: flex;
                align-items: center;
                gap: 1.5rem;
                text-decoration: none;
            }

            header > .box_inner .site_title a:hover{
                filter: brightness(1.1);
            }

                header > .box_inner .site_title a .logo{
                    height: 3.125rem;
                    transition: .5s all ease;
                }

                    header > .box_inner .site_title a .logo img{
                        height: 100%;
                        width: auto;
                    }


                header > .box_inner .site_title a .lbl{
                    color: var(--base_color1);
                    font-size: 1.05em;
                    line-height: 1.3;
                    font-weight: 400;
                }

                header > .box_inner .site_title a .lbl br{
                    display: none;
                }

        header > .box_inner .lang_nav{
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.75rem;
        }

        header > .box_inner .contact_lang{
            display: flex;
            align-items: center;
        }

        header > .box_inner .lang_changer{
            height: 1.5rem;
        }

            header > .box_inner .lang_changer .btn_lc_oc{
                display: none;
            }

            header > .box_inner .lang_changer div[id*="targetLanguage"]{
                display: inline-block;
                margin-right: 0.5rem;
            }

                header > .box_inner .lang_changer div[id*="targetLanguage"] select{
                    box-sizing: border-box;
                    border: 1px solid #aaa;
                    padding: 2px;
                    margin: 0;
                    height: 1.5rem;
                }

        header > .box_inner .gn_contact{
            margin-left: 2em;
        }

            header > .box_inner .gn_contact a{
                display: inline-flex;
                color: var(--base_color1);
                text-decoration: none;
                font-size: 0.9em;
                background: #252353;
                color: #fff;
                padding: 0.3em 0.8em;
                transition: .3s all ease;
            }

            header > .box_inner .gn_contact a{
                filter: brightness(1.2);
            }

            header > .box_inner .gn_contact a::before{
                font-family: FontAwesome;
                content:"\f0e0";
                margin-right: 0.4em;
            }

        header > .box_inner .global_nav{
            transition: .3s all ease;
        }

            header > .box_inner .global_nav > ul{
                display: flex;
            }

            header > .box_inner .global_nav > ul > li{
                border-right: 1px solid #333;
                position: relative;
            }

            header > .box_inner .global_nav > ul > li.active::before{
                content: "";
                display: block;
                width: calc(100% - 0.5em);
                border-top: 0.125rem solid #2db1b9;
                position: absolute;
                bottom: -0.5em;
                left: 0.25em;
            }

            

            header > .box_inner .global_nav > ul > li:nth-child(1){
                border-left: 1px solid #333;
            }

            header > .box_inner .global_nav > ul > li > a{
                color: var(--base_color1);
                text-decoration: none;
                display: block;
                padding: 0.25em 0.75em;
                font-weight: 400;
                transition: .3s all ease;
            }

            header > .box_inner .global_nav > ul > li:hover > a{
                color: #2db1b9;
            }

            header > .box_inner .global_nav > ul > li .child_nav{
                box-sizing: border-box;
                position: absolute;
                top: 1.25rem;
                left: 0;
                width: 18rem;
                height: 0;
                overflow: hidden;
                padding: 0 0.25em;
                transition: .3s all ease;
            }

            header > .box_inner .global_nav > ul > li:last-child .child_nav{
                left: auto;
                right: 0;
            }

            header > .box_inner .global_nav > ul > li:hover .child_nav{
                height: auto;
                padding: 1em 0.25em 0.5em 0.25em;
            }

                header > .box_inner .global_nav > ul > li .child_nav > ul{
                    line-height: 1.5;
                    padding: 0 0.5em;
                    background: #fff;
                    opacity: 0;
                    transition: .3s all ease;
                    max-height: 0;
                }

                header > .box_inner .global_nav > ul > li:hover .child_nav > ul{
                    max-height: 500px;
                    padding: 2em 0.5em 1em 0.5em;
                    opacity: 1;
                    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.1);
                }

                header > .box_inner .global_nav > ul > li .child_nav > ul > li{
                    margin-bottom: 0.3em;
                }

                header > .box_inner .global_nav > ul > li .child_nav > ul > li:last-child{
                    margin-bottom: 0;
                }

                header > .box_inner .global_nav > ul > li .child_nav > ul > li > a{
                    color: var(--base_color1);
                    text-decoration: none;
                    font-size: 0.94em;
                    display: block;
                    position: relative;
                    padding: 0.4em 0.5em 0.4em 1.4em;
                    transition: .3s all ease;
                }

                header > .box_inner .global_nav > ul > li .child_nav > ul > li > a:hover{
                    background: rgba(45,177,185,0.15);
                }

                    header > .box_inner .global_nav > ul > li .child_nav > ul > li > a::before{
                        font-family: FontAwesome;
                        content:"\f105";
                        position: absolute;
                        top: 0.5em;
                        left: 0.5em;
                        font-size: 0.9em;
                        color: #ccc;
                        transition: .3s all ease;
                    }

                    header > .box_inner .global_nav > ul > li .child_nav > ul > li > a:hover::before{
                        color: #2db1b9;
                    }

                    header > .box_inner .global_nav > ul > li .child_nav > ul > li > ul{
                        margin-left: 1em;
                        display: none;
                    }

                    header > .box_inner .global_nav > ul > li .child_nav > ul > li > ul > li > a{
                        color: var(--base_color1);
                        text-decoration: none;
                        font-size: 0.9em;
                        display: block;
                        position: relative;
                        padding: 0.4em 0.5em 0.4em 0.8em;
                    }

                        header > .box_inner .global_nav > ul > li .child_nav > ul > li > ul > li > a::before{
                            content: "-";
                            position: absolute;
                            top: 0.4em;
                            left: 0;
                        }



/*small_header*/
.small_header header > .box_inner{
    box-shadow: 0 10px 10px -10px rgba(0,0,0,0.1);
}

/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:2;
    padding-top: 6rem;
    padding-bottom: 4rem;
}


/*-----footer-----*/
footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f2eb;
}

    footer > .box_inner{
        display: flex;
        justify-content: center;
        gap: 8rem;
        padding: 4rem 0;
    }

        .f_site_title_copyright{
            display: flex;
            flex-direction: column;
            gap: 1em;
        }

        footer > .box_inner .f_site_title{
            font-weight: 400;
        }

            footer > .box_inner .f_site_title a{
                text-decoration: none;
                color: var(--base_color1);
            }

        footer .copyright{
            font-size: 0.8em;
        }

        footer > .box_inner .f_bns{}

            footer > .box_inner .f_bns ul{
                display: flex;
                gap: 0.75em;
            }

                footer > .box_inner .f_bns ul li{
                    
                }

                footer > .box_inner .f_bns ul li a{
                    display: block;
                    width: 8.625rem;
                }

                    footer > .box_inner .f_bns ul li a img{
                        max-width: 100%;
                        height: auto;
                    }


    footer > .box_footer{
        display: none;
    }

/*-----nav_oc-----*/
.nav_oc{
    width: 4rem;
    height: 4rem;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 11;
    transition: .3s all ease;
    display: none;/*PC非表示*/
}

    .menu-trigger{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        background: #A4D6C1;
        border: none;
        border-radius: 0.25rem;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: .3s all ease;
    }

    .menu-trigger:hover{
        filter: brightness(1.1);
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 2rem;
            height: 1.375rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: #fff;
                position: absolute;
                width: 2rem;
                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: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;
            }

/*-----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{
        box-sizing: border-box;
        background: #fff;
        padding: 2rem;
        width: 55%;
        height: 100vh;
        overflow-y: auto;
        box-shadow: 1rem 0 1rem 1rem rgba(0,0,0,0.2);
    }

        .side_nav_box > .box_header{
            display: flex;
            margin-bottom: 1.5rem;
        }


            .side_nav_box > .box_header img{
                max-width: 100%;
                height: auto;
            }        

        .side_nav_box > .box_header a{
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--base_color1);
            text-decoration: none;
        }

            .side_nav_box > .box_header a .logo{
                width: 8rem;
            }

            .side_nav_box > .box_header a .lbl{
                font-size: 1.05em;
            }


        .side_nav_box > .box_inner{
        }

            .side_nav_box > .box_inner a{
                color: var(--base_color1);
                text-decoration: none;
                transition: .3s all ease;
            }

            .side_nav_box > .box_inner a:hover{
                color: #2db1b9;
            }


            .side_nav .side_global_nav1{
            }

                .side_nav .side_global_nav1 > ul{}

                    .side_nav .side_global_nav1 > ul > li{
                        position: relative;
                        border-bottom: 1px solid #ccc;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h{
                        position: relative;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h a{
                        display: flex;
                        align-items: center;
                        padding: 1rem;
                        transition: .3s all ease;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h a:hover{
                        background: #fff;
                    }

                        .side_nav .side_global_nav1 > ul > li > .sgn_h a .lbl{
                            flex: 1;
                            font-weight: 700;
                            font-size: 1.1em;
                            padding-right: 4rem;
                        }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h button{
                        position: absolute;
                        top: 0;
                        right: 0;
                        background-color: rgba(255,255,255,0);
                        width: 3rem;
                        height: 100%;
                        border: none;
                        cursor: pointer;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h button::before{
                        font-family: FontAwesome;
                        content:"\f0d7";
                        display: inline-block;
                        color: var(--base_color1);
                        transition: .3s all ease;
                    }

                    .side_nav .side_global_nav1 > ul > li.active > .sgn_h button::before{
                        transform: rotate(180deg);
                    }

                    .side_nav .side_global_nav1 > ul > li > .child_nav{
                        position: relative;
                        line-height: 1.4;
                        border-top: 1px solid #ccc;
                        padding: 0;
                        height: 0;
                        opacity: 0;
                        overflow: hidden;
                        transition: .3s all ease;
                    }

                    .side_nav .side_global_nav1 > ul > li.active > .child_nav{
                        padding: 0.5em 0;
                        height: auto;
                        opacity: 1;
                    }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul{
                            position: relative;
                        }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li{
                            position: relative;
                        }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a{
                            position: relative;
                            display: block;
                            padding: 0.4em 2em 0.3em 0.8em;
                        }
                            /*
                            .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a::after{
                                content: "";
                                display: inline-block;
                                width: 1rem;
                                aspect-ratio: 1 / 1;
                                background-image: url(../shared/icon/icon_arrow_gray.png);
                                background-size: contain;
                                background-position: center center;
                                position: absolute;
                                top: calc(50% - 0.5rem);
                                right: 1em;
                            }
                            */

                            .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li ul{
                                display: none;
                            }

                        /*区切り用*/
                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a[href="#"]{
                            pointer-events: none;
                            font-weight: 500;
                            padding-bottom: 0;
                        }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a[href="#"]::after{
                            content: none;
                        }

            .side_nav .bn_bfw{
                display: flex;
                justify-content: center;
                margin-top: 2em;
            }

                .side_nav .bn_bfw a{
                    display: block;
                    width: 50%;
                    transition: .5s all ease;
                }

                .side_nav .bn_bfw a:hover{
                    transform: translateX(0.5rem);
                    filter: brightness(1.05);
                }

                .side_nav .bn_bfw a img{
                    max-width: 100%;
                    height: auto;
                }

/*ページトップ*/
.pagetop{
    width:4rem;
    height:4rem;
    position:fixed;
    bottom:3rem;
    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: #2DB1B9;
        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;
    }

.bottom_fixed_nav{
    position: fixed;
    bottom: 0;
    right: 6rem;
    z-index: 2;
}

    .bottom_fixed_nav ul{
        box-sizing: border-box;
        display: flex;
        gap: 0.25rem;
    }

        .bottom_fixed_nav ul li{
        }

        .bottom_fixed_nav ul li a{
            display: block;
            width: 5.625rem;
            transition: .4s all ease;
        }

        .bottom_fixed_nav ul li a:hover{
            opacity: 0.8;
        }

        .bottom_fixed_nav ul li a img{
            max-width: 100%;
            height: auto;
        }

.bn_bfw{
    position: fixed;
    bottom: 9rem;
    right: 1rem;
    z-index: 2;
}

    .bn_bfw a{
        display: block;
        width: 10rem;
        transition: .5s all ease;
    }

    .bn_bfw a:hover{
        filter: brightness(1.1);
    }

    .bn_bfw a img{
        max-width: 100%;
        height: auto;
    }




/*ヘッダ固定によるアンカーずれ対応*/
*[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;
}

/*1280px以下*/
@media screen and (min-width:1px) and (max-width:1280px){
    header > .box_inner .site_title a .lbl br{
        display: inline;
    }
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){
    header > .box_inner{
        padding-left: 1.5vw;
        padding-right: 1vw;
    }

    header > .box_inner .site_title a{
        gap: 1rem;
    }

    header > .box_inner .site_title a .logo{
        height: 2.5rem;
    }

    header > .box_inner .site_title a .lbl{
        font-size: 0.94em;
    }

    header > .box_inner .global_nav > ul > li > a{
        font-size: 0.9em;
        padding-left: 0.5em;
        padding-right: 0.5em;
    }

}

/*1080px以下*/
@media screen and (min-width:1px) and (max-width:1080px){
    header > .box_inner{
        padding-right: 6rem;
    }

    header > .box_inner .lang_changer{
        height: auto;
    }

    header > .box_inner .lang_changer div[id*="targetLanguage"]{
        display: block;
        margin: 0 0 0.3em 0;
    }

    header > .box_inner .lang_changer div[id*="targetLanguage"] select{
        height: auto;
    }

    header > .box_inner .global_nav{
        display: none;
    }

    header > .box_inner .gn_contact{
        display: none;
    }

    .nav_oc{
        display: block;
    }

}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.6vw;
    }



}

/* ##########印刷用########## */
@media print{
    html{
        width: 1024px;
    }
    
    header{
        position:relative;
    }
   
    
    .contents{
        padding-top: 0;
    }
    
    .pagetop{
        display: none;
    }
    
}