
#header.anime > .inner{
    animation: none;
    transform: none;
    transition: unset;
}

/*　上に上がる動き　*/
#header.UpMove > .inner{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header.DownMove > .inner{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

/* header　ここから */
#header{
    width: 100%;
}

#header > .inner{
    display: flex;
    align-items: flex-start;
    width: 100%;
    background-color: transparent;
    position: fixed; /* ヘッダーを固定する */
    top: 0; /* 上部から配置の基準位置を決める */
    left: 0; /* 左から配置の基準位置を決める */
    height: 100px;
    z-index: 10;
}

#header > .inner #header_logo{
    /* width: calc(100% - 270px); */
    width: calc(100% - 291px);
    padding: 30px 0 0 40px;
}

#header > .inner #header_logo.top_page img{
    transition: all 0.3s;
    width: 500px;
}

/* トップページじゃない時 */
#header .inner{
    height: 70px;
}
#header > .inner #header_logo{
    /* width: calc(100% - 270px); */
    width: calc(100% - 291px);
    padding: 12px 0 12px 40px;
}
#header > .inner #header_logo img{
    width: 300px;
}
/* トップページじゃない時 */

/* スクロールされたら　小さく */
#header.is_scroll .inner{
    height: 70px;
}
#header > .inner #header_logo.is_scroll.top_page{
    /* width: calc(100% - 270px); */
    width: calc(100% - 291px);
    padding: 12px 0 12px 40px;
}
#header > .inner #header_logo.is_scroll.top_page img{
    width: 300px;
    /* transition: all 0.3s; */
}
/* スクロールされたら　小さく */


/* メニューバー開かれたら */
#header.in > .inner{
    display: flex;
    align-items: flex-start;
    width: 100%;
    position: fixed; /* ヘッダーを固定する */
    top: 0; /* 上部から配置の基準位置を決める */
    left: 0; /* 左から配置の基準位置を決める */
    height: 70px;
    background-color: #fff;
}
#header.in > .inner #header_logo{
    width: calc(100% - 270px);
    padding: 12px 0 12px 40px;
}
#header.in > .inner #header_logo.top_page img{
    width: 300px;
    /* transition: all 0.3s; */
}
#header.in > .inner #header_logo.is_scroll.top_page img{
    width: 300px;
}
/* メニューバー開かれたら */

@media screen and (max-width: 1030px) {
    #header > .inner #header_logo.top_page img{
        transition: all 0.3s;
        width: 400px;
    }
}

@media screen and (max-width: 768px) {
    #header{
        width: 100%;
    }
    #header.is_scroll .inner{
        height: 50px;
    }
    #header > .inner{
        height: 50px;
        z-index: 10;
        align-items: center;
    }
    
    #header > .inner #header_logo{
        /* width: calc(100% - 180px); */
        width: calc(100% - 207px);
        padding: 0;
        padding-left: 3%;
    }
    
    #header > .inner #header_logo img{
        transition: all 0.3s;
        max-width: 140px;
    }
    
    
    /* メニューバー開かれたら */
    #header.in > .inner{
        display: flex;
        align-items: flex-start;
        width: 100%;
        position: fixed; /* ヘッダーを固定する */
        top: 0; /* 上部から配置の基準位置を決める */
        left: 0; /* 左から配置の基準位置を決める */
        height: 50px;
        background-color: #fff;
        align-items: center;
    }
    #header.in > .inner #header_logo{
        /* width: calc(100% - 180px); */
        width: calc(100% - 207px);
        padding: 0;
        padding-left: 3%;
    }
    #header.in > .inner #header_logo img{
        max-width: 140px;
    }
    #header.in > .inner #header_logo.is_scroll img{
        max-width: 140px;
    }
    /* メニューバー開かれたら */
}


#header > .inner .btns{
    display: flex;
    align-items: center;
    margin-left: auto;
}
#header > .inner .btns .entry{
    display: flex;
}
#header > .inner .btns .entry a{
    display: flex;
}
#header > .inner .btns .entry a img{
    height: 70px;
    width: auto;
}

@media screen and (max-width: 1030px) {

    #header > .inner .btns .entry{
        display: none;
    }
}

/* #header > .inner .btns .entry_btn{
    width: 200px;
    text-align: center;
    background-color: #000;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
#header > .inner .btns .entry_btn span{
    font-family: Cormorant Garamond,sans-serif;
    font-size: 20px;
    font-style: italic;
    color: #fff;
}
#header > .inner .btns .entry_btn img{
    width: 25px;
} */
@media screen and (max-width: 768px) {
    #header > .inner .btns{
        display: flex;
        align-items: center;
    }
    #header > .inner .btns .entry{
        display: none;
    }
    #header > .inner .btns .entry a{
        display: flex;
    }
    #header > .inner .btns .entry a img{
        height: 51px;
        width: 100%;
    }
    /* #header > .inner .btns .entry_btn{
        width: 110px;
        height: 51px;
        gap: 3px;
    }
    #header > .inner .btns .entry_btn span{
        font-size: 18px;
    }
    #header > .inner .btns .entry_btn img{
        width: 25px;
    } */
}
.overflow-hidden {
    overflow: hidden;
}
/* ハンバーガーメニュー ここから*/
#hamburger {
    background: transparent;
    height: 70px;
    position: relative;
    width: 70px;
    z-index: 100;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    background-color: #528099;
}

#header .inner_line {
    background-color: #ffffff;
    display: block;
    height: 2px;
    left: 25px;
    position: absolute;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    width: 20px;
}

#header #line1 {
    top: 23px;
}
#header #line2 {
    top: 33px;
}
#header #line3 {
    top: 43px;
}

#header #line1.line_1 {
    top: 33px ;
}
#header #line3.line_3{
    top: 33px ;
}
@media screen and (max-width: 768px) {
    #hamburger {
        background: transparent;
        height: 51px;
        position: relative;
        width: 50px;
        z-index: 100;
        -webkit-transition: all .2s ease-out;
        transition: all .2s ease-out;
        background-color: #528099;
    }
    
    #header .inner_line {
        background-color: #ffffff;
        display: block;
        height: 1.5px;
        left: 18px;
        position: absolute;
        -webkit-transition: all .2s ease-out;
        transition: all .2s ease-out;
        width: 15px;
    }
    
    #header #line1 {
        top: 18px;
    }
    #header #line2 {
        top: 25px;
    }
    #header #line3 {
        top: 32px;
    }
    
    #header #line1.line_1 {
        top: 25px;
    }
    #header #line3.line_3{
        top: 25px;
    }
}
/* ハンバーガーメニュー ここまで*/

/* メニューここから */
#header #nav{
    display: none;
    background-color: #528099;
    /* height: calc(100vh - 70px); */
    height: 100%;
    margin-top: 70px;
    padding: 0px 0 43px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    overflow-y: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    overflow: hidden
}
#header #nav.in{
    display: block;
}

#header > #nav > .inner{
    width: 80%;
    /* max-width: 1000px; */
    height: 100%;
    /* padding: 100px 0; */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 150px; */
    gap: 5%;
}

#nav > .inner > .left_box{
    flex-basis: 35%;
} 

#nav > .inner > .left_box .nav_title{
    font-family: 'Noto Serif JP',sans-serif;
    font-size: 55px;
    letter-spacing: 5px;
    color: #fff;
    padding-bottom: 50px;
    margin: 0;
    
}
#nav > .inner > .left_box .imgbox img{
    width: 100%;
}
#nav > .inner > .right_box.for-large{
    display: flex;
    gap: 20px;
}
#nav > .inner > .right_box.for-small{
    display: none;
}
#nav > .inner > .right_box{
    flex-basis: 60%;
    display: -webkit-flex; /* Safari */
    display: flex;
    -webkit-justify-content: space-between; /* Safari */
    justify-content: space-between;
}
#nav > .inner > .right_box .link_box{
    flex-basis: 33%;
    width: 100%;
}
#nav > .inner > .right_box .link_box .lump{
    padding-bottom: 50px;
}
#nav > .inner > .right_box > .link_box > .lump > .title{ 
    font-family: Cormorant Garamond,sans-serif;
    font-size: 21px;
    font-style: italic;
    font-weight: bold;
    color: #fff;
    margin: 0;
}
#nav > .inner > .right_box > .link_box > .lump > .title .and{
    width: 15px;
}
#nav > .inner > .right_box > .link_box > .lump > .link{ 
    font-family: 'Noto Serif JP',sans-serif;
    font-size: 18px;
    color: #000;
}
#nav > .inner > .right_box > .link_box > .lump > .link:hover{ 
    color: #fff;
    transition:0.5s all;
}
#nav > .inner > .right_box > .link_box > .lump > .link_list{
    padding-top: 30px;
    font-family: 'Noto Serif JP',sans-serif;
    font-size: 15px;
}
#nav > .inner > .right_box > .link_box > .lump > .link_list > li{
    padding-bottom: 15px;
}
#nav > .inner > .right_box > .link_box > .lump > .link_list > li a{
    color: #000;
}
#nav > .inner > .right_box > .link_box > .lump > .link_list > li a:hover{
    color: #000;
    color: #fff;
    transition:0.5s all;
}


#nav > .inner > .right_box > .link_box > .btnbox a:hover{
    text-decoration: none;
    cursor: pointer;
}   

#nav > .inner > .right_box > .link_box > .btnbox .btn{
    width: 160px;
    text-align: center;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


#nav > .inner > .right_box > .link_box > .btnbox .entry {
    margin-bottom:5px;
}
#nav > .inner > .right_box > .link_box > .btnbox .entry a{
    display: flex;
}
#nav > .inner > .right_box > .link_box > .btnbox .entry a img{
    width: 160px;
}

/* #nav > .inner > .right_box > .link_box > .btnbox .entry_btn{
    background-color: #000;
    margin-bottom:10px;
}
#nav > .inner > .right_box > .link_box > .btnbox .entry_btn span{
    font-family: Cormorant Garamond,sans-serif;
    font-size: 18px;
    font-style: italic;
    color: #fff;
}
#nav > .inner > .right_box > .link_box > .btnbox .entry_btn img{
    width: 25px;
} */

#nav > .inner > .right_box > .link_box > .btnbox .info_btn{
    background-color: #fff;
    padding: 15px 0;
    margin-bottom:5px;
}
#nav > .inner > .right_box > .link_box > .btnbox .contact_btn{
    background-color: #333333;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    padding: 15px 0;
    margin-bottom: 5px;
    font-family: 'YuGo Bold-90ms-RKSJ-H',sans-serif;
}
#nav > .inner > .right_box > .link_box > .btnbox .info_btn .note{
    width: 60px;
}
#nav > .inner > .right_box > .link_box > .btnbox .info_btn .download{
    width: 12px;
    margin-left: 5px;
}


#nav > .inner > .right_box > .link_box > .btnbox .line_btn{
    width: 160px;
    padding: 10px 0px ;
    text-align: center;
    gap: 10px;
    color: #fff;
    background-color: #00b900;
    font-family: 'Oswald',sans-serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 3px;
    align-items: center;
}

#nav > .inner > .right_box > .link_box > .btnbox .line_btn img{
    width: 20px;
}


@media screen and (max-width: 1100px) {
    #header > #nav > .inner{
        width: 90%;
        height: 100%;
        /* padding: 100px 0; */
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5%;
    }
    #nav > .inner > .left_box .nav_title{
        font-size: 40px;
        letter-spacing: 3px;
        color: #fff;
        padding-bottom: 50px;
        margin: 0;
    }
    #nav > .inner > .right_box > .link_box > .lump > .title {
        font-size: 18px;
        margin: 0;
    }
    #nav > .inner > .right_box > .link_box > .lump > .link {
        font-size: 16px;
    }
    #nav > .inner > .right_box > .link_box > .lump > .link_list {
        padding-top: 10px;
        font-size: 14px;
    }
}
@media screen and (max-width: 900px) {
    #nav > .inner > .left_box.for-large{
        display: none;
    }
}
@media screen and (max-width: 768px) {
    #header #nav{
        display: none;
        background-color: #528099;
        height: calc(100vh - 50px);
        margin-top: 50px;
        padding: 0px 0 43px;
    }
    #header #nav.in{
        display: block;
    }
    
    #header > #nav > .inner{
        width: calc(100% - 30px);
        height: 100%;
        padding: 30px 15px 0;
        margin: 0 auto;
        display: block;
    }
    #nav > .inner > .right_box.for-large{
        display: none;
    }
    #nav > .inner > .right_box.for-small{
        display: flex;
    }
    #nav > .inner > .right_box{
        display: -webkit-flex; /* Safari */
        display: flex;
        -webkit-justify-content: space-between; /* Safari */
        justify-content: space-between;
    }
    #nav > .inner > .right_box .link_box{
        flex-basis: 50%;
        width: 100%;
        word-break:break-all;
    }
    #nav > .inner > .right_box .link_box .lump{
        padding-bottom: 10px;
    }
    #nav > .inner > .right_box > .link_box > .lump > .title{ 
        font-family: Cormorant Garamond,sans-serif;
        font-size: 17px;
        font-style: italic;
        font-weight: bold;
        color: #fff;
        margin: 0;
        padding-bottom: 5px;
    }
    #nav > .inner > .right_box > .link_box > .lump > .title .and{
        width: 13px;
    }
    #nav > .inner > .right_box > .link_box > .lump > .link{ 
        font-size: 14px;
    }
    #nav > .inner > .right_box > .link_box > .lump > .link_list{
        padding-top: 10px;
        font-size: 13px;
    }
    #nav > .inner > .right_box > .link_box > .lump > .link_list > li{
        padding-bottom: 10px;
        width: 100%;
        word-break:break-all;
    }
    /* #nav > .inner > .right_box > .link_box > .lump > .link_list > li > a{
        
    } */
    
    #nav > .inner > .btnbox{
        display: flex;
        flex-wrap: wrap;
        gap: 3px 10px;
        justify-content: center;
        margin-top: 10px;
    }
    #nav > .inner > .btnbox a:hover{
        text-decoration: none;
        cursor: pointer;
    }   
    
    #nav > .inner > .btnbox .btn{
        min-width: 130px;
        text-align: center;
        padding: 10px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin-bottom: 0;
        height: 40px;
    }

    #nav > .inner > .btnbox .contact_btn {
        background-color: #333333;
        color: #fff;
        font-weight: bold;
        font-size: 13px;
        font-family: 'YuGo Bold-90ms-RKSJ-H', sans-serif;
    }

    #nav > .inner > .btnbox .entry1{
        order: 1;
    }
    #nav > .inner > .btnbox .entry2{
        order: 2;
    }
    #nav > .inner > .btnbox .contact{
        order: 3;
    }
    #nav > .inner > .btnbox .line{
        order: 4;
    }

    #nav > .inner > .btnbox .entry {
        margin-bottom:0px;
    }
    #nav > .inner > .btnbox .entry a{
        display: block;
    }
    #nav > .inner > .btnbox .entry a img{
        max-width: 130px;
    }

    /* #nav > .inner > .right_box > .link_box > .btnbox .entry_btn{
        background-color: #000;
        margin-bottom:10px;
    }
    #nav > .inner > .right_box > .link_box > .btnbox .entry_btn span{
        font-family: Cormorant Garamond,sans-serif;
        font-size: 15px;
        font-style: italic;
        color: #fff;
    }
    #nav > .inner > .right_box > .link_box > .btnbox .entry_btn img{
        width: 20px;
    } */
    
    #nav > .inner > .btnbox .info_btn{
        background-color: #fff;
        padding: 15px 0;
    }
    #nav > .inner > .btnbox .info_btn .note{
        width: 50px;
    }
    #nav > .inner > .btnbox .info_btn .download{
        width: 10px;
        margin-left: 5px;
    }
    
    #nav > .inner > .btnbox .line_btn{
        color: #fff;
        background-color: #00b900;
        font-family: 'Oswald',sans-serif;
        font-size: 13px;
        letter-spacing: 3px;
        font-weight: bold;
    }
    
    #nav > .inner > .btnbox .line_btn img{
        width: 18px;
    }

}


@media screen and (max-width: 375px) {
    #header #nav{
        display: none;
        background-color: #528099;
        height: calc(100vh - 50px);
        margin-top: 50px;
        padding: 0px 0 43px;
    }
    #header #nav.in{
        display: block;
    }
    
    #header > #nav > .inner{
        width: calc(100% - 20px);
        height: 100%;
        padding: 20px 10px 0;
        margin: 0 auto;
        display: block;
    }
    #nav > .inner > .right_box .link_box .lump{
        padding-bottom: 15px;
    }
    #nav > .inner > .right_box > .link_box > .lump > .link_list{
        padding-top: 10px;
        font-size: 13px;
    }
    #nav > .inner > .right_box > .link_box > .lump > .link_list > li{
        padding-bottom: 10px;
        width: 100%;
        word-break:break-all;
    }

    

}

/* メニューここまで */

/* header　ここまで */

/* footer　ここから */
.footer{
    width: 100%;
    background-color: #fff;
}
.footer .topbtnbox.in{
    display: none;
}
.footer .topbtnbox .top_btn{
    position: fixed;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    right: 50px;
    bottom: 50px;
    width: 55px;
    height: 55px;
    transition: .3s;
    /* 非表示にする */
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.footer .topbtnbox .top_btn.is-active{
    /* 表示する */
    opacity: 1;
    visibility: visible;
    z-index: 100;
}

.footer .entrys{
    display: none;
}

@media screen and (max-width: 1030px) {
    
    .footer .topbtnbox .top_btn{
        bottom: 80px;
    }

    .footer .entrys{
        width: 100%;
        position: fixed;
        display: flex;
        justify-content: center;
        gap: 20px;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.4);
        padding: 7px 0;
        transition: .3s;
        /* 非表示にする */
        opacity: 0;
        visibility: hidden;
        cursor: pointer;
    }

    .footer .entrys.is-active{
        /* 表示する */
        opacity: 1;
        visibility: visible;
        z-index: 99;
    }

    .footer .entrys a {
        width: auto;
        height: 50px;
    }
    .footer .entrys a img{
        width: auto;
        height: 50px;
    }
}


@media screen and (max-width: 768px) {
    .footer .topbtnbox .top_btn{
        position: fixed;
        display: flex;
        /* align-items: center; */
        justify-content: center;
        right: 20px;
        bottom: 70px;
        width: 55px;
        height: 55px;
        transition: .3s;
        /* 非表示にする */
        opacity: 0;
        visibility: hidden;
        cursor: pointer;
    }
    
    .footer .topbtnbox .top_btn.is-active{
        /* 表示する */
        opacity: 1;
        visibility: visible;
        z-index: 100;
    }

    
    .footer .entrys a {
        width: auto;
        height: 45px;
    }
    .footer .entrys a img{
        width: auto;
        height: 45px;
    }

}


.footer .inner{
    width: 100%;
    padding: 80px 0 30px;
    /* background-color: #fff; */
    position: relative;
}
.footer .inner .sns.for-large{
    width: 280px;
    position: absolute;
    right: 50px;
    bottom: 150px;
}
.footer .inner .sns .text{
    text-align: center;
    font-family: Cormorant Garamond,sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
}
.footer .inner .sns.for-large .sns_list{
    padding: 10px 30px 0;
    display: -webkit-flex; /* Safari */
    display: flex;
    -webkit-justify-content: space-between; /* Safari */
    justify-content:         space-between;
    align-items: center;
}
.footer .inner .sns.for-large .sns_list a img{
    width: 35px;
}

@media screen and (max-width: 768px) {
    .footer .inner{
        width: 100%;
        margin: 0 auto;
        padding: 50px 0 20px;
        position: relative;
    }
    .footer .inner .sns.for-small{
        max-width: 250px;
        margin: 0 auto;
        padding-top: 30px;
    }
    .footer .inner .sns .text{
        font-size: 15px;
        padding-bottom: 10px;
    }
    .footer .inner .sns.for-small .sns_list{
        padding: 0px 0px 0;
        width: auto;
        margin:0 auto;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: center;
    }
    .footer .inner .sns.for-small .sns_list a img{
        width: 35px;
    }
}

.footer .inner .footer_about{
    width: 100%;
    text-align: center;
}

.footer .inner .footer_img{
    width: 160px;
    margin: 0 auto;
    padding-bottom: 40px;
}
.footer .inner .footer_img img{
    width: 100%;
}

.footer .inner .global_img {
    width: 260px;
    margin: 0 auto;
}
.footer .inner .global_img > img{
    width: 100%;
}
.footer .inner .telbox{
    padding: 20px 0;
    text-align: center;
    font-family: YuGo Bold-90ms-RKSJ-H,sans-serif;
}
.footer .inner .telbox .tel{
    font-size: 16px;
}
.footer .inner .telbox .text{
    font-size: 12px;
    padding-right: 5px;
}

.footer .inner .recruitment_btn{
    width: 310px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    background-color: #333333;
    font-family: YuGo Bold-90ms-RKSJ-H,sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
}
.footer .inner .recruitment_btn::before{
    background: url(https://image.global-center.co.jp/recruiting/layout/recruitment_btn_arrow.svg) no-repeat center center;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    top: 13px;
    left: 15px;
    width: 13px;
    height: 13px;
}

.footer .inner .line_btn{
    width: 310px;
    margin: 10px auto 0;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    background-color: #00b900;
    font-family: YuGo Bold-90ms-RKSJ-H,sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
}
.footer .inner .line_btn::before{
    background: url(https://image.global-center.co.jp/recruiting/layout/icon_line.svg) no-repeat center center;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    top: 13px;
    left: 15px;
    width: 20px;
    height: 20px;
}

.footer .inner .copyright{
    font-family: Cormorant Garamond,sans-serif;
    font-size: 12px;
    font-style: italic;
    padding-top: 50px;
    color:#808080;
    background: none;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .footer .inner .footer_about{
        width: 100%;
        text-align: center;
    }
    
    .footer .inner .footer_img{
        max-width: 140px;
        margin: 0 auto;
        padding-bottom: 30px;
    }
    .footer .inner .footer_img img{
        width: 100%;
    }
    
    .footer .inner .global_img {
        max-width: 220px;
        margin: 0 auto;
    }
    .footer .inner .global_img > img{
        width: 100%;
    }
    .footer .inner .telbox{
        padding: 20px 0;
        font-family: YuGo Bold-90ms-RKSJ-H,sans-serif;
    }
    .footer .inner .telbox .tel{
        font-size: 16px;
    }
    .footer .inner .telbox .text{
        font-size: 12px;
    }
    
    .footer .inner .recruitment_btn{
        max-width: 250px;
        margin: 0 auto;
        padding: 10px 20px;
        text-align: center;
        color: #fff;
        background-color: #333333;
        font-family: YuGo Bold-90ms-RKSJ-H,sans-serif;
        font-size: 14px;
        letter-spacing: 1px;
        position: relative;
    }
    .footer .inner .recruitment_btn::before{
        top: 13px;
        left: 10px;
        width: 13px;
        height: 13px;
    }

    .footer .inner .line_btn{
        max-width: 250px;
        margin: 10px auto 0;
        padding: 10px 20px;
        text-align: center;
        color: #fff;
        font-family: YuGo Bold-90ms-RKSJ-H,sans-serif;
        font-size: 14px;
        letter-spacing: 1px;
        position: relative;
    }
    .footer .inner .line_btn::before{
        top: 10px;
        left: 10px;
        width: 20px;
        height: 20px;
    }
    
    .footer .inner .copyright{
        letter-spacing: 0;
        padding-top: 20px;
    }
}

.header_sns .sns_list{
    padding: 30px 0px 0;
    display: -webkit-flex; /* Safari */
    display: flex;
    gap: 10px;
    align-items: center;
}
.header_sns .sns_list a img{
    width: 35px;
}
@media screen and (max-width: 768px) {
    .header_sns .sns_list{
        width: 210px;
        margin:0 auto;
        display: flex;
        align-items: center;
        gap: 20px;
    }
}
/* footer　ここまで */