@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@600&family=Noto+Sans+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&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(45,65,100,0.99);*/
    background: rgba(45,65,100,0);
    transition: .5s all ease;
}

    header > .box_inner{
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: auto;
        height: 110px;
        margin: 0 9rem;
        padding: 0;
        transition: .3s all ease;
        position: relative;
    }

        header > .box_inner > .site_title{
            width: 13rem;
        }

        header > .box_inner > .site_title a{
            display: block;
            text-decoration: none;
            color: #222;
            transition: .3s all ease;
        }

        header > .box_inner > .site_title a:hover {
            opacity: 0.9;
        }

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

        header > .box_inner .navs{
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 100%;
            padding-right: 100px;
            position: relative;
        }

            header > .box_inner .navs .global_nav{
                display: flex;
                align-items: center;
                justify-content: flex-end;
                padding-top: 2.8rem;
                position: relative;
                transition: .3s all ease;
            }

                header > .box_inner .navs .global_nav > ul{
                    display: flex;
                    margin: 0;
                }

                    header > .box_inner .navs .global_nav > ul li{
                        margin-right: 2.6vw;
                    }

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

                        header > .box_inner .navs .global_nav > ul > li > a{
                            text-decoration: none;
                            display: flex;
                            align-items: center;
                            color: #fff;
                            font-size: 1em;
                            position: relative;
                            transition: .3s all ease;
                            padding-bottom: 0.45rem;
                        }

                        header > .box_inner .navs .global_nav > ul > li > a:hover{
                            color: #61e9ff;
                        }

                        header > .box_inner .navs .global_nav > ul > li.active > a{
                            color: #61e9ff;
                            border-bottom: 2px solid #61e9ff;
                        }

/*small_header*/
.small_header header {
    background: rgba(45,65,100,0.99);
    box-shadow: 0 5px 10px -10px rgb(0 0 0 / 40%)/*, 0 1px 0 0 #dcdcdc*/;
}


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


/*-----footer-----*/
footer {
    position: relative;
    z-index: 1;
    padding: 4em 0 9.25em 0;
    background: #5fecff;
    overflow: hidden;
}

footer:after{
    content:"";
    width: 75rem;
    height: 5.75rem;
    background: url(../shared/footer_logo.png) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: calc(50% - 37.5rem);
}

    footer > .box_inner{
        width: 65.625rem;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        footer > .box_inner .f_navs{
            display: flex;
            font-size: 1.1em;
            line-height: 1.2;
        }

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

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

            footer > .box_inner .f_navs > ul {
                display: flex;
                justify-content: flex-start;
            }

                footer > .box_inner .f_navs > ul > li {
                    margin-right: 2rem;
                }

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

        .copyright {
            font-size: 1rem;
        }


/*-----nav_oc-----*/
.nav_oc{
    display: block;
    /*background: #463c9b;*/
    width: 50px;
    height: 50px;
    position: fixed;
    top: 30px;
    right: 9rem;
    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: #fff;
                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: #2d4164;
            }

            .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;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 26.25rem;
    height: 100%;
    transition: .3s all ease;
    background: rgba(255,255,255,0);
    align-items: flex-start;
    justify-content: center;
    padding-top: 1vh;
}

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


    .side_nav .site_search{
        display: none;
    }

    .side_nav .side_global_nav{
        box-sizing: border-box;
        width: 100%;
        padding: 110px 0 0 0;
        margin-top: 0;
        display: flex;
        justify-content: center;
    }

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

            .side_nav .side_global_nav > ul > li{
                position: relative;
                margin-bottom: 1.5em;
            }

            .side_nav .side_global_nav > ul > li > a{
                display: block;
                font-size: 1.15em;
                padding: 0.4em 0 0.5em 0;
                color: #222;
                text-decoration: none;
                font-weight: 500;
                position: relative;
                transition: .3s all ease;
            }

            .side_nav .side_global_nav > ul > li > a::after{
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                display: block;
                width: 100%;
                border-bottom: 3px solid #2d4164;
                transition: .3s all ease;
                opacity: 0;
                transform: scaleX(0);
                transform-origin: left bottom;
            }

            .side_nav .side_global_nav > ul > li > a:hover::after{
                opacity: 1;
                transform: scaleX(1);
            }



/*ページトップ*/
.pagetop{
    width:94px;
    height:94px;
    position:fixed;
    bottom:90px;
    right:60px;
    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: #2f4366;
        padding-bottom: 0.2rem;
        border: 3px solid #fff;
        box-shadow: 0 0 10px 2px rgba(0,0,0,0.1);
    }
    
    .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){
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.8vw;
    }
    
    header > .box_inner{
        margin: 0 3rem;
    }

    header > .box_inner .navs{}

    header > .box_inner .navs .global_nav > ul > li > a{
        padding-top: 0.2rem;
    }

    .nav_oc{
        top: 1.6625rem;
        right: 4rem;
    }

    footer{
        padding: 3em 0 7.25em 0;
    }

    footer > .box_inner{
        width: 90%;
    }

    footer:after{
        width: 95vw;
        height: 7.283vw;
        position: absolute;
        bottom: 0;
        left: 2.5vw;
    }
}

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