@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=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*フォント参考用*/
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/*--京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;
    overflow-x: hidden;
}

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"],
select,
input[type="email"],
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: 4;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.99);
    transition: .5s all ease;
}

    header > .box_inner{
        box-sizing: border-box;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 5.625rem;
        margin-right: calc((100% - 74rem) / 2);
        padding: 0 0 0 2.875rem;
        transition: .3s all ease;
        position: relative;
    }

        header > .box_inner > .logo_site_title{
            margin-right: auto;
            position: relative;
            z-index: 2;
        }

        header > .box_inner > .logo_site_title a{
            display: flex;
            justify-content: flex-start;
            align-items: center;
            text-decoration: none;
            gap: 1rem;
            color: #222;
            transition: .3s 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 .logo{
                display: block;
                width: 3.5rem;
                transition: .3s all ease;
            }

            header > .box_inner > .logo_site_title .site_title{
                display: block;
                width: 23.6875rem;
                transition: .3s all ease;
            }

        header > .box_inner .navs{
            box-sizing: border-box;
            display: block;
            z-index: 2;
            margin-bottom: auto;
        }

            header > .box_inner .navs .header_nav{
                padding: 1rem 7.5rem 0 0;
                margin-bottom: 1.2rem;
                position: relative;
            }

            header > .box_inner .navs .header_nav ul{
                display: flex;
                justify-content: flex-end;
                align-items: center;
                gap: 2rem;
            }

            header > .box_inner .navs .header_nav ul li{
                padding-left: 1.2rem;
                position: relative;
            }

            header > .box_inner .navs .header_nav ul li::before{
                content:"";
                width: 0.5rem;
                height: 0.5rem;
                background: #222222;
                border-radius: 50%;
                position: absolute;
                top: calc(50% - 0.25rem);
                left: 0;
            }

            header > .box_inner .navs .header_nav ul li a{
                font-weight: 500;
                color: #222;
                text-decoration: none;
                transition: .3s all ease;
            }

            header > .box_inner .navs .header_nav ul li a:hover{
                color: #1d4986;
                filter: brightness(1.1);
            }

            header > .box_inner .navs .header_nav .en_btn{
                position: absolute;
                top: 0;
                right: 0;
            }

            header > .box_inner .navs .header_nav .en_btn a{
                display: block;
                padding: 0.5rem 1rem;
                background: #1e4195;
                color: #fff;
                text-decoration: none;
                transition: .3s all ease;
            }

            header > .box_inner .navs .header_nav .en_btn a:hover{
                filter: brightness(1.2);
            }

            header > .box_inner .navs .global_nav{
                display: flex;
                align-items: center;
                justify-content: flex-end;
                position: relative;
                transition: .3s all ease;
                margin-right: 0.5rem;
            }

                header > .box_inner .navs .global_nav > ul{
                    display: flex;
                    align-items: center;
                    margin: 0;
                }

                    header > .box_inner .navs .global_nav > ul > li{
                        margin-right: 1.5rem;
                        padding-right: 1.5rem;
                        position: relative;
                        transition: .3s all ease;
                    }

                    header > .box_inner .navs .global_nav > ul > li::after{
                        content:"";
                        width: 2px;
                        height: 1rem;
                        background: #e7e7e7;
                        position: absolute;
                        top: 0;
                        right: 0;
                    }

                    header > .box_inner .navs .global_nav > ul > li:last-child{
                        margin-right: 0;
                        padding-right: 0;
                    }

                    header > .box_inner .navs .global_nav > ul > li:last-child::after{
                        display: none;
                    }

                        header > .box_inner .navs .global_nav > ul > li > a{
                            text-decoration: none;
                            display: block;
                            color: #222;
                            font-size: 1rem;
                            font-weight: 600;
                            position: relative;
                            transition: .3s all ease;
                        }

                        header > .box_inner .navs .global_nav > ul > li > a:hover{
                            color: #1d4986;
                            filter: brightness(1.1);
                        }

                        header > .box_inner .navs .global_nav > ul > li.active > a:before{
                            width: 100%;
                        }

                        header > .box_inner .navs .global_nav > ul > li > a .gn_name{
                            display: block;
                            text-align: center;
                            font-weight: 600;
                            position: relative;
                            padding-bottom: 0.6rem;
                        }

                        header > .box_inner .navs .global_nav > ul > li.active > a .gn_name{
                            font-weight: 600;
                        }

                        header > .box_inner .navs .global_nav > ul > li > a .gn_name:before{
                            content: "";
                            display: block;
                            width: 0;
                            height: 3px;
                            background: #1d4986;
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            transition: .5s all ease;
                        }

                        header > .box_inner .navs .global_nav > ul > li.active > a .gn_name:before{
                            width: 100%;
                        }

                        header > .box_inner .navs .global_nav > ul > li > a:hover .gn_name:before{
                            width: 100%;
                        }

        header > .box_inner .navs .recruit_btn{
            display: block;
            width: 6rem;
            height: 5.625rem;
            background: #e70012;
            position: absolute;
            top: 0;
            right: 6rem;
            transition: .3s all ease;
        }

            header > .box_inner .navs .recruit_btn a{
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                width: 100%;
                height: 100%;
                text-decoration: none;
                color: #fff;
            }

                header > .box_inner .navs .recruit_btn a .icon{
                    width: 1.5rem;
                    margin-bottom: 0.5rem;
                }

                header > .box_inner .navs .recruit_btn a .icon img{
                    max-width: 100%;
                    height: auto;
                }

                header > .box_inner .navs .recruit_btn a .text{
                    font-size: 0.9rem;
                }

/*small_header*/
.small_header header {
    /*background: rgba(34,34,34,0.99);*/
    background: rgba(255,255,255,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;*/
    margin-top: 5.625rem;
}

/*contact_f_box*/
.contact_f_box{
    box-sizing: border-box;
    height: 27.5rem;
    padding: 8.125rem 0 0 0;
    background: url(../../shared/en/img_bg_contact.jpg) no-repeat;
    background-size: 120rem auto;
    background-position: top center;
    position: relative;
}

.contact_f_box::before{
    content:"";
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.contact_f_box::after{
    content:"";
    width: 100%;
    height: 7.5rem;
    background-image: linear-gradient(180deg, rgba(229, 237, 250, 1), rgba(229, 237, 250, 0.25));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact_f_box .box_header{
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.contact_f_box .box_header h2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
}

.contact_f_box .box_header h2 .lbl_en{
    font-size: 2.9rem;
    color: #2d2561;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, #1E4986 0%, #3476c3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact_f_box .box_header h2 .lbl_ja{
    font-size: 1.4rem;
    color: #1f4886;
    font-weight: 700;
}

.contact_f_box .box_inner{
    line-height: 1.8;
    position: relative;
    z-index: 3;
}

.contact_f_box .box_inner p{
    font-size: 1.2rem;
    text-align: center;
}

.contact_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.contact_wrap .contact_tel_reception{}

.contact_wrap .contact_tel_reception .lbl_tel{
    font-size: 2.9rem;
    color: #222;
    font-weight: 700;
    line-height: 1.5;
}

.contact_wrap .contact_tel_reception p{
    font-size: 1.2rem;
    text-align: left;
}

.contact_wrap .contact_btn{
    margin-top: 0.5rem;
}

.contact_wrap .contact_btn a{
    display: block;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem 3rem 1rem 1.5rem;
    background: #fff;
    border: 2px solid #1f4886;
    border-radius: 2rem;
    text-decoration: none;
    color: #1f4886;
    position: relative;
    line-height: 1;
    transition: .3s all ease;
}

.contact_wrap .contact_btn a:hover{
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
}

.contact_wrap .contact_btn a::after{
    content: "";
    width: 1rem;
    height: 1rem;
    background: url(../../shared/en/icon_arrow_bl.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 1.5rem;
    transition: .3s all ease;
}

.contact_wrap .contact_btn a:hover::after{
    right: 1rem;
}

/*bottom_link_list*/
.bottom_link_list{
    margin-bottom: 1rem;
}

.bottom_link_list ul{
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.bottom_link_list ul li{
    width: 18.75rem;
    height: 5rem;
}

.bottom_link_list ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 1px solid #1e4195;
    text-align: center;
    color: #1e4195;
    line-height: 1.5;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: .3s all ease;
}

.bottom_link_list ul li a::before{
    content: "";
    display: inline-block;
    width: 0.6875rem;
    height: 0.6875rem;
    background-image: url(../../shared/icon_ext_link1.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 1;
}

.bottom_link_list ul li a:hover{
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.25);
    filter: brightness(1.1);
}

/*-----footer-----*/
footer {
    position: relative;
    z-index: 1;
    padding: 0;
    overflow: hidden;
    background: url(../../shared/en/bg_f.jpg) no-repeat top center;
    background-size: 100% auto;
}

footer::before{
    content:"";
    width: 100%;
    height: 70%;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

    footer .box_inner{
        width: 65rem;
        margin: 0 auto;
        padding: 5rem 0 3rem 0;
        line-height: 1.8;
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 2;
    }

    footer .box_inner .f_logo{}

    footer .box_inner .f_logo a{
        display: block;
        width: 17.8125rem;
        transition: .3s all ease;
    }

    footer .box_inner .f_logo a:hover{
        opacity: 0.8;
    }

    footer .box_inner .f_logo a img{
        max-width: 100%;
        height: auto;
    }

 footer .box_inner .f_nav{
        display: flex;
        justify-content: center;
        gap: 4rem;
        line-height: 1;
    }

    footer .box_inner .f_nav > ul{}

    footer .box_inner .f_nav > ul > li{
        margin-bottom: 1.5rem;
    }

    footer .box_inner .f_nav > ul > li:last-child{
        margin-bottom: 0;
    }

    footer .box_inner .f_nav > ul > li > a{
        color: #222;
        text-decoration: none;
        font-weight: 600;
    }

    footer .box_inner .f_nav > ul > li > a:hover{
        text-decoration: underline;
    }

    footer .box_inner .f_nav > ul > li > ul{
        padding-top: 0.8rem;
    }

    footer .box_inner .f_nav > ul > li > ul > li{
        margin: 0.5rem 0 0 1rem;
    }

    footer .box_inner .f_nav > ul > li > ul > li > a{
        color: #222;
        text-decoration: none;
        font-size: 0.9rem;
    }

    footer .box_inner .f_nav > ul > li > ul > li > a:hover{
        text-decoration: underline;
    }

    footer .box_inner .f_address{
        font-size: 0.9rem;
        text-align: center;
    }

    footer .box_footer{
        padding: 3rem 0;
    }

    footer .box_footer .copyright{}

        .copyright {
            font-size: 1rem;
            color: #222;
            text-align: center;
        }

        .copyright a{
            color: #222;
            text-decoration: none;
        }


/*-----nav_oc-----*/
.nav_oc{
    display: block;
    width: 5rem;
    height: 4.625rem;
    position: fixed;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 11;
    transition: .3s all ease;
}

/*PCでは非表示*/
.nav_oc{
    display: none;
}
/*//PCでは非表示*/

/*
.small_header .nav_oc{
    width: calc(6rem * 0.8);
    height:  calc(5.625rem * 0.8);
}
*/
    .menu-trigger{
        width: 100%;
        height: 100%;
        padding: 0;
        border: none;
        background: #212121;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: .3s all ease;
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 2rem;
            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: 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{
                background-color: #fff;
            }

            .small_header .menu-trigger .lines span{
                background-color: #fff;
            }

            .menu-trigger.active .lines span:nth-of-type(1) {
                transform: translateY(0.65rem) 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.7rem) rotate(315deg);
            }

        .menu-trigger .lbl{
            display: none;
            color: #fff;
            font-size: 0.9rem;
            line-height: 1;
            font-weight: 500;
            margin-top: 0.6rem;
        }

/*-----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: #e6ecfa;
    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: 1em;
            }

            .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: 600;
                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 #004eaa;
                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);
            }

            .side_nav .side_global_nav > ul > li > ul{
                margin-left: 1rem;
            }
            
            .side_nav .side_global_nav > ul > li > ul > li{
                margin-top: 0.7rem;
                /*padding-left: 1.5rem;*/
                position: relative;
            }

            /*
            .side_nav .side_global_nav > ul > li > ul > li::before{
                content:"";
                width: 1rem;
                height: 1rem;
                background: url(../../shared/en/icon_arrow_bl.png) no-repeat;
                background-size: contain;
                position: absolute;
                top: calc(50% - 0.5rem);
                left: 0;
            }
            */

            .side_nav .side_global_nav > ul > li > ul > li > a{
                color: #222;
                text-decoration: none;
                font-weight: 600;
            }

            .side_nav .side_global_nav > ul > li > ul > li > a:hover{
                text-decoration: underline;
            }

    .side_nav .language_btn{
        width: 70%;
        margin: 1.5rem auto 0 auto;
    }

    .side_nav .language_btn a{
        display: block;
        padding: 0.8rem 1rem;
        background: #1e4195;
        text-align: center;
        color: #fff;
        text-decoration: none;
        font-size: 1.2rem;
        border-radius: 0.5rem;
        transition: .3s all ease;
    }

    .side_nav .language_btn a:hover{
        filter: brightness(1.2);
    }

/*ページトップ*/
.pagetop{
    width:4.5rem;
    height:4.5rem;
    position:fixed;
    bottom:7.5rem;
    right:1.75rem;
    z-index:10;
    transform:translateY(6.25rem);
    transition:.3s all ease;
    opacity:0;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
}

    .pagetop a{
        display: flex;
        justify-content: center;
        align-items: center;
        transition:.5s all ease;
        width:100%;
        height:100%;
        background: #212121;
        border-radius: 50%;
        text-decoration: none;
    }
    
    .pagetop a:hover{
        filter: brightness(1.1);
    }

    .pagetop a:before{
        font-family: FontAwesome;
        content:"\f106";
        color: #fff;
        font-size: 2rem;
    }


/*ヘッダ固定によるアンカーずれ対応*/
*[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;
}

.sp_bnr{
    display: none;
}

/*1280px以下*/
@media screen and (min-width:1px) and (max-width:1280px) {
    header > .box_inner{
        margin-right: 3rem;
    }

    footer .box_inner{
        width: 55rem;
    }
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){
    header > .box_inner .navs .global_nav > ul > li{
        margin-right: 1rem;
        padding-right: 1rem;
    }

    footer{
        background: url(../../shared/en/bg_f.jpg) no-repeat top center;
        background-size: auto 100%;
    }

}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.8vw;
    }

    header > .box_inner{
        padding: 0 2.2rem;
        margin-right: 0;
    }

    header > .box_inner .navs .header_nav{
        position: unset;
    }

    header > .box_inner .navs .header_nav ul{
        display: none;
    }

    header > .box_inner .navs .header_nav .en_btn{
        position: absolute;
        top: calc(50% - 1rem);
        right: 6.5rem;
    }

    header > .box_inner .navs .global_nav{
        display: none;
    }

    .bottom_link_list{
        width: 90vw;
        margin: 0 auto 1rem auto;
    }

    .bottom_link_list ul{
        gap: 1rem;
    }

    .bottom_link_list ul li{
        width: calc((100% - 2rem) / 3);
        height: 5rem;
    }

    footer{
        background: url(../../shared/en/bg_f.jpg) no-repeat top center;
        background-size:100% auto;
    }


    footer .box_inner{
        width: 90vw;
        margin: 0 auto;
        padding: 3rem 0 1rem 0;
    }

    footer .box_inner .f_nav{
        gap: 3rem;
    }

    footer .box_inner .f_nav > ul > li{
        margin-bottom: 1rem;
    }

    footer .box_inner .f_nav > ul > li > ul > li{
        margin: 0.4rem 0 0 1rem;
    }

    footer .box_inner .f_nav > ul > li > ul > li > a{
        font-size: 0.85rem;
    }

    footer .box_footer{
        padding: 2rem 0;
    }

    .nav_oc{
        display: block;
    }

    .pagetop{
        bottom: 14.5rem;
        right: 2rem;
    }

}

/* ##########印刷用########## */
@media print{
    header{
        position:relative;
    }
    
    .pagetop{
        display: none;
    }
    
}