

.flowing {
	/* width: 0%; */
    width: 0%;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	animation: flowing-anim 1.5s forwards linear;
    /* font-family: 'Noto Serif JP', sans-serif; */
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 110px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #fff;
    animation-delay:1s;
}

.flowing:nth-child(2) {
	animation-delay: 2s;
    
}

.flowing:nth-child(3) {
	animation-delay: 3s;
}

@keyframes flowing-anim {
 0%{
    width: 0%;
   }
100%{
    width: 100%;
   }
}

@media screen and (max-width: 768px) {
    .flowing {
        width: 0;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
        font-size: 50px;
        letter-spacing: 5px;
        color: #fff;
    }
}




#slider {
    width: 100%;
    height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.topimgs{
    width: 100%;
    height: 100vh;
    /* background: url('https://img.global-center.co.jp/recruiting/index/top_img.jpg');
    background-size: cover;
    background-repeat: no-repeat; */
}

.wrapper{
    position: relative;
    width: 100%;
}
.wrapper > .scroll{
    width: 12px;
    position: absolute;
    right: 50px;
    bottom: 0;
}
.top_text{
    position: absolute;
    content: "";
    left: 100px;
    top: 25%;
    text-align: left;
    z-index: 7;
}
.width{
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (max-width: 1300px) {
    .width{
        max-width: 95%;
        padding: 0 50px ;
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {
    .wrapper{
        margin: 0;
    }
    .top_text{
        position: absolute;
        content: "";
        left: 20px;
        top: 30%;
        text-align: left;
        z-index: 7;
    }
    .width{
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }
}


/* animation */
@-webkit-keyframes passing-barL{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-barL{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}

@-webkit-keyframes passing-barR{
	0% {
		right: 0;
		left: auto;
		width: 0;
	}
	50% {
		right: 0;
		left: auto;
		width: 100%;
	}
	51% {
		right: auto;
		left: 0;
		width: 100%;
	}
	100% {
		right: auto;
		left: 0;
		width: 0;
	}
}
@keyframes passing-barR{
	0% {
		right: 0;
		width: 0;
	}
	50% {
		right: 0;
		width: 100%;
	}
	51% {
		right: 0;
		width: 100%;
	}
	100% {
		right: 100%;
		width: 0;
	}
}

@-webkit-keyframes passing-txt{
	0% { opacity: 0; }
	50% { opacity: 0.5; }
	100% { opacity: 1; }
}
@keyframes passing-txt{
	0% { opacity:0; }
	50% { opacity:0.5; }
	100% { opacity:1; }
}

@keyframes passingwhite{
    0% {
        transform-origin:left;
        transform:scaleX(0);
    }
    50% {
        transform-origin:left;
        transform:scaleX(1);
    }
    50.001% {
        transform-origin:right;
        transform:scaleX(1);
    }
    80% {
        transform-origin:right;
        transform:scaleX(1);
    }
    100% {
        transform-origin:right;
        transform:scaleX(0);
    }
}

/* css */
.passing-box {
	display: block;
}
.passing-bar {
	position: relative;
	-webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.passing-bar:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	/* 任意の値 */
	/* background: rgba(255, 255, 255, 0.5); */
    background: #fff;
}
.passing-txt {
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing-box.move .passing-barL:before {
    /* -webkit-animation: passing-barL 1.5s ease 0.5s 1 normal forwards;
	animation: passing-barL 1.5s ease 0.5s 1 normal forwards; */
    -webkit-animation: passing-barL 1s ease 0s 1 normal forwards;
	animation: passing-barL 1s ease 0s 1 normal forwards;
}
.passing-box.move .passing-barR:before {
	/* -webkit-animation: passing-barR 1.5s ease 0.5s 1 normal forwards;
	animation: passing-barR 1.5s ease 0.5s 1 normal forwards; */
    -webkit-animation: passing-barR 1s ease 0s 1 normal forwards;
	animation: passing-barR 1s ease 0s 1 normal forwards;
}
.passing-box.move .passing-txt {
    /* -webkit-animation: passing-txt 0s ease 1s 2 normal forwards;
	animation:passing-txt 0s ease 1s 2 normal forwards; */
	-webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
	animation:passing-txt 0s ease 0.5s 1 normal forwards;
}
.passing-txt {
    position: relative
}
.passing-box.move .passing-txt:after {
    position: absolute;
    left: 0;
    width: 0;
	height: 100%;
    background-color: rgba(255, 255,255, 0.5);
    animation-name:passingwhite;
    animation-duration:1s;
    animation-delay: 2s;
}


/* 白透過がかかって消えるcss */
.js-slide-dark.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#000 0,#000 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#000 0,#000 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}

.js-slide-dark > span {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    -webkit-text-fill-color: transparent;
}

.js-slide-white.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#fff 0,#fff 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#fff 0,#fff 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}
.js-slide-white > p,.js-slide-white > span {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    -webkit-text-fill-color: transparent;
}


.js-slide-blue.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#77aad9 0,#77aad9 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#77aad9 0,#77aad9 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}
.js-slide-blue > p,.js-slide-blue > span {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    -webkit-text-fill-color: transparent;
}

.js-slide-btn.move {
    display: inline-block;
    animation-name:js_slider2;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}

/* 上のグラデーション部分 */
.js-slide-sky.js-slide-sky1.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#5fc6e4 0,#5fc6e4 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#5fc6e4 0,#5fc6e4 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}
.js-slide-sky.js-slide-sky2.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#3bb3e5 0,#3bb3e5 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#3bb3e5 0,#3bb3e5 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}
.js-slide-sky.js-slide-sky3.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#00a7e1 0,#00a7e1 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#00a7e1 0,#00a7e1 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}

.js-slide-sky.js-slide-sky4.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#0096d1 0,#0096d1 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#0096d1 0,#0096d1 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}
.js-slide-sky.js-slide-sky5.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#008ac0 0,#008ac0 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#008ac0 0,#008ac0 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}

.js-slide-sky.js-slide-sky6.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#006ad0 0,#006ad0 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#006ad0 0,#006ad0 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}

.js-slide-sky.js-slide-sky7.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#007edd 0,#007edd 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#007edd 0,#007edd 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}
.js-slide-sky.js-slide-sky8.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#0082ec 0,#0082ec 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#0082ec 0,#0082ec 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}
.js-slide-sky.js-slide-sky9.move {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left,#0082f0 0,#0082f0 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background: linear-gradient(to right,#0082f0 0,#0082f0 25%,#d3d3d3 25%,#d3d3d3 75%,transparent 75%,transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 100%;
    background-position: 100% 0;
    animation-name:js_slider;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}

.js-slide-sky > span {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    -webkit-text-fill-color: transparent;
}

/* 上のグラデーション部分 */

.js-slide {
    background-position: 0% 0;
    opacity:1;
}
.js-slide p, .js-slide span{
    font-size: inherit;
    color: inherit;

    line-height: inherit;
    letter-spacing: inherit;
    -webkit-text-fill-color: transparent;
}

@keyframes js_slider{
    0% {
        background-position: 100% 0;
        opacity:0.5;
    }
    50% {
        background-position: 100% 0;
        opacity:1;
    }
    50.001% {
        background-position: 100% 0;
        opacity:1;
    }
    100% {
        background-position: 0% 0;
        opacity:1;
    }
}

@keyframes js_slider2{
    0% {
        opacity: 0;
        transform: translateX(-64px);
      }
      50% {
        opacity: 0.5;
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
}
/* 白透過がかかって消えるcss */



.gradation_text{
    text-align: center;
    padding: 150px 0;
}
.gradation_text > .gradation {
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    display: inline-block;
    font-size: 25px;
    line-height: 65px;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
    .gradation_text{
        text-align: center;
        padding: 50px 10px 70px;
    }
    .gradation_text > .gradation {
        font-size: 18px;
        line-height: 36px;
        letter-spacing: 0px;
    }

}

@media screen and (max-width: 400px) {
    .gradation_text > .gradation {
        font-size: 18px;
        line-height: 36px;
        letter-spacing: 0px;
    }

}

/* よく使うタイトルのcss */
#titlebox .main{
    font-family: Cormorant Garamond,sans-serif;
    font-size: 62px;
    font-style: italic;
    margin: 0;
    line-height: initial;
    font-weight: 500;
}
#titlebox .sub{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 16px;
    font-weight: 500;
}
#news #titlebox > .main{
    color: #77aad9;
}
.NewsTitle{
    position: absolute;
    top: -40px;
    left: 50px;
}
#stoties #titlebox > .main{
    color: #77aad9;
}
@media screen and (max-width: 768px) {
    #titlebox .main{
        font-size: 36px;
        font-weight: bold;
    }
    #titlebox .sub{
        font-size: 14px;
    }
    .NewsTitle{
        position: absolute;
        top: -25px;
        left: 20px;
    }
}
/* よく使うタイトルのcss */

/* newsここから */
#news{
    width: 100%;
    padding: 100px 0;
    background-color: #e5e5e5;
}
#news > .inner{
    padding: 70px 50px 30px;
    background-color: #fff;
    position: relative;
}

@media screen and (max-width: 768px) {
    #news{
        width: 100%;
        padding: 70px 20px 40px;
        background-color: #e5e5e5;
    }
    #news > .inner{
        padding: 70px 20px 30px;
        background-color: #fff;
        position: relative;
    }
}

#news > .inner .keisai{
    padding: 15px 50px 5px;
    font-size: 12px;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-weight: 500;
}

#news > .inner > .news_details li:first-child a{
    border-top: 1px solid #bbbbbb;
}

#news > .inner > .news_details a{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 50px;
    border-bottom: 1px solid #bbbbbb;
    position: relative;
}
#news > .inner > .news_details a .daycg{
    display: flex;
    gap: 20px;
   align-items: center;
}
#news > .inner > .news_details a .daycg .day{
    font-family: 'Oswald',sans-serif;
    font-size: 13px;
    color: #528099;
    margin: 0;
}
#news > .inner > .news_details a .daycg .category{
    font-family: 'Oswald',sans-serif;
    font-size: 13px;
    color: #fff;
    padding: 3px 5px;
    letter-spacing: 1px;
    border-radius: 2px;
    width: 65px;
    text-align: center;
    margin: 0;
}
#news > .inner > .news_details  li .category.column{
    background-color: #77aad9;
}
#news > .inner > .news_details  li .category.event{
    background-color: #ce965a;
}
#news > .inner > .news_details  li .news_title{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 16px;
    color: #332d2a;
    margin: 0;
    line-height: 30px;
}

@media screen and (max-width: 768px) {
    #news > .inner .keisai {
        padding: 0px 20px 5px;
        font-size: 12px;
        font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
        font-weight: 500;
    }
    #news > .inner > .news_details li:first-child a{
        border-top: none;
    }
    #news > .inner > .news_details li:first-child{
        border-top: 1px solid #bbbbbb;
    }
    #news > .inner > .news_details  li{
        display: block;
        padding: 10px 20px;
        border-bottom: 1px solid #bbbbbb;
        position: relative;
    }
    #news > .inner > .news_details li a{
        display: block;
        padding: 0px;
        border-bottom: none;
        position: relative;
    }
    #news > .inner > .news_details a .daycg{
        display: flex;
        gap: 20px;
        align-items: center;
        padding-bottom: 10px;
    }
    #news > .inner > .news_details  li  .daycg  .category{
        padding: 1px 5px;
    }
    #news > .inner > .news_details  li .news_title{
        font-size: 15px;
        width: 100% ;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        padding-right: 30px;
    }
}

#news > .inner > .news_details  li a::after{
    background: url(https://image.global-center.co.jp/recruiting/index/icon_arrow_min.svg) no-repeat center center;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 50px;
    width: 25px;
    height: 25px;
    transition: .3s;
}
#news > .inner > .news_details  li a:hover::after{
    right: 30px;
}
#news > .inner .more{
    width: 100%;
    text-align: right;
    padding: 30px 0;
}
.news_more{
    width: 100%;
}
.news_more > img{
    width: 180px;
    transition: .3s;
    margin-left:auto ;
    margin-right: 30px;
}
.news_more:hover > img{
    margin-right: 0px;
}

@media screen and (max-width: 768px) {
    #news > .inner > .news_details li a::after{
        top: calc(65% - 5px);
        right: 0px;
        width: 20px;
        height: 20px;
        transition: .3s;
    }
    #news > .inner .more{
        width: 100%;
        text-align: right;
        padding: 20px 0;
    }
    #news > .inner .more{
        width: 100%;
        text-align: right;
        padding: 20px 0;
    }
    
    .news_more{
        width: 100%;
    }
    .news_more > img{
        width: 140px;
        margin-right: 0px;
    }
}

/* newsここまで */

/* stoties　ここから */
#stoties .stoties_text{
    padding: 120px 0 50px;
    text-align: center;
}
#stoties .stoties_text #titlebox p{
    text-align: center;
}
#stoties .stoties_text .sub_text{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 84px;
    padding-top: 20px;
    font-weight: 500;

}
@media screen and (max-width: 768px) {
    #stoties .stoties_text{
        padding: 70px 0 30px;
    }
    #stoties .stoties_text #titlebox p{
        text-align: center;
    }
    #stoties .stoties_text .sub_text{
        font-size: 22px;
        letter-spacing: 1px;
        line-height: 44px;
        padding-top: 20px;
    }
}

/* stoties　ここまで */


/* slider　ここから */
.swiper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden; /* スライダー全体のみに overflow: hidden を適用 */
}

/* スライダーのラッパー */
.swiper-wrapper {
    display: flex;
    transition-property: transform;
    box-sizing: border-box; /* 必要であればborder-box */
}

/* 各スライドの設定 */
.swiper-slide {
    color: #ffffff;
    width: 100%;
    position: relative;
    flex-shrink: 0; /* 各スライドの幅を固定 */
}
.swiper-slide img{
    width: 100%;
    /* height: 80vh;
    object-fit: cover; */
}

/* 
  .swiper-slide .slide_text{
    width: 38%;
    max-height: 60%;
    text-align: left;
    position: absolute;
    content: "";
    right:0;
    bottom: 0;
    background: linear-gradient(
        to top,
        #0059eb 0%,
        #0064e9 25%,
        #033da3 45%,
        #58abdb 85%,
        #58abdb 100%
    );
  }
  .swiper-slide .slide_text .detail{
    margin: 50px 50px;
  }
  .swiper-slide .slide_text .numbox .num{
    font-family: Cormorant Garamond,sans-serif;
    font-size: 50px;
    font-style: italic;
    color: #fff;
    padding-top: 10px;
  }
  .swiper-slide .slide_text .numbox > img{
    width: 10px;
    padding: 0 0 13px 10px ;
  }
  .swiper-slide .slide_text .stoties_heading{
    padding: 20px 0;
    line-height: 4em;
  }
  .swiper-slide .slide_text .stoties_heading .inner{
    font-family: 'Noto Serif JP',sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    color: #000;
    background-color: #fff;
    padding: 5px 10px;
  }
  .swiper-slide .slide_text .stoties_details{
    padding: 0px 0 0 20px;
    color: #fff;
  }
  .swiper-slide .slide_text .stoties_details .position{
    font-family: 'Noto Serif JP',sans-serif;
    font-size: 1em;
    line-height: 30px;
    letter-spacing: 1px;
  }
  .swiper-slide .slide_text .stoties_details .name{
    font-family: 'Noto Serif JP',sans-serif;
    font-size: 2em;
    line-height: 50px;
    letter-spacing: 2px;
  } 
  */

  /* ページネーション */
#swiper .swiper-pagination-bullets {
    position: static;
    margin-top: 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
} 
#swiper .swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 45px;
    font-size: 24px;
    color:#fff;
    background: #77aad9;
    font-family: Cormorant Garamond,sans-serif;
    font-style: italic;
    opacity: 1;
}
#swiper .swiper-pagination-bullet-active {
    display: inline-block;
    background: linear-gradient(0deg, #005beb 20%, #58abdb 89%);
    background: -webkit-linear-gradient(90deg, #005beb 20%, #58abdb 89%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 2px solid #005beb;
}
@media screen and (max-width: 768px) {
    #swiper .swiper-pagination-bullets {
        position: static;
        margin-top: 30px;
        display: flex;
        gap: 15px;
        justify-content: center;
    } 
    #swiper .swiper-pagination-bullet {
        width: 37px;
        height: 37px;
        line-height: 32px;
        font-size: 22px;
    }
    #swiper .swiper-pagination-bullet-active {
        border: 1px solid #005beb;
    }
}
  /* ページネーション */

/* ナビゲーション */
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 70px;
  width: 50px;
}
/* ボタンの位置 */
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
    top: 44%;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    top: 44%;
    right: auto;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev:after,
.swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 70px;
  margin: auto;
  width: 50px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev:after {
  background: url(https://image.global-center.co.jp/recruiting/index/icon_prev.svg) no-repeat center center;
    background-size: contain;
    display: block;
}
/* 次への矢印カスタマイズ */
.swiper-button-next:after {
    background: url(https://image.global-center.co.jp/recruiting/index/icon_next.svg) no-repeat center center;
    background-size: contain;
    display: block;
}
/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
    /* 前へ次への矢印カスタマイズ */
    .swiper-button-prev,
    .swiper-button-next {
        height: 50px;
        width: 30px;
    }
    /* ボタンの位置 */
    .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
        right: 5px;
        left: auto;
        top: 45%;
    }
    .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
        left: 5px;
        top: 45%;
        right: auto;
    }
    /* 前へ次への矢印カスタマイズ */
    .swiper-button-prev:after,
    .swiper-button-next:after {
        height: 50px;
        width: 30px;
    }
}
/* ナビゲーション */

/* slider　ここまで */

/* cross_talk ここから */
#cross_talk{
    padding-top: 100px;
}
#cross_talk #titlebox{
    text-align: left;
}
#cross_talk #titlebox > .main{
    color: #77aad9;
}
#cross_talk > .inner > .ctbox{
    padding: 30px 0;
}
#cross_talk > .inner > .ctbox .ct{
    display: flex;
    gap: 50px;
    padding-bottom: 80px;
    align-items: flex-end;
}

#cross_talk > .inner > .ctbox .ct .imgbox{
    flex-basis: 60%;
    width:100%; 
    margin:0 auto;
    overflow:hidden; 
}
#cross_talk > .inner > .ctbox .ct .imgbox img{
    transition:0.5s all;
    width:100%; 
}
#cross_talk > .inner > .ctbox .ct:hover .imgbox img{
    transform:scale(1.1,1.1);
    transition:0.5s all;
}

#cross_talk > .inner > .ctbox .ct .ct_text{
    flex-basis: 40%;
    width: 100%;
    padding-top: 30px;
}
#cross_talk > .inner > .ctbox .ct .ct_text p{
    margin-bottom: 15px;
}
#cross_talk > .inner > .ctbox .ct .ct_text .num{
    font-family: Cormorant Garamond,sans-serif;
    font-size: 45px;
    font-style: italic;
    color: #77aad9;
    letter-spacing: 1px;
    line-height: 30px;
}

#cross_talk > .inner > .ctbox .ct .ct_text .num .sharp{
    font-size: 30px;
}
#cross_talk > .inner > .ctbox .ct .ct_text .ct_title{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 24px;
    line-height: 44px;
    letter-spacing: 2px;
    color: #000;
}
#cross_talk > .inner > .ctbox .ct .ct_text .detail{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 1px;
    color: #000;
}
@media screen and (max-width: 768px) {
    #cross_talk {
        padding-top: 60px;
    }
    #cross_talk #titlebox{
        padding-left: 20px;
    }
    #cross_talk > .width{
        padding: 0;
    }
    #cross_talk > .inner > .ctbox {
        padding: 10px 0;
    }
    #cross_talk > .inner > .ctbox .ct{
        display: block;
        padding-bottom: 30px;
    }
    #cross_talk > .inner > .ctbox .ct .ct_text{
        width: 100%;
        padding: 10px 35px;
    }
    #cross_talk > .inner > .ctbox .ct .ct_text p{
        margin-bottom: 10px;
    }

    #cross_talk > .inner > .ctbox .ct .ct_text .num .sharp{
        font-size: 30px;
    }
    #cross_talk > .inner > .ctbox .ct .ct_text .ct_title{
        font-size: 20px;
        line-height: 40px;
        letter-spacing: 2px;
        font-weight: bold;
    }
    #cross_talk > .inner > .ctbox .ct .ct_text .detail{
        font-size: 15px;
        line-height: 30px;
        letter-spacing: 1px;
        color: #000;
    }
}


#cross_talk > .inner > .ctbox .ct .ct_text .more{
    width: 100%;
    padding-top: 10px ;
}
#cross_talk > .inner > .ctbox .ct .ct_text .more img{
    width: 150px;
    transition: .5s;
}

#cross_talk > .inner > .ctbox .ct01 .ct_text .more{
    text-align: right;
}
#cross_talk > .inner > .ctbox .ct01 .ct_text .more img{
    margin-left:auto ;
    margin-right: 30px;
}
#cross_talk > .inner > .ctbox .ct01:hover > .ct_text .more img{
    margin-right: 0px;
}
#cross_talk > .inner > .ctbox .ct02 .ct_text .more{
    text-align: left;
}
#cross_talk > .inner > .ctbox .ct02 .ct_text .more img{
    margin-right:auto ;
}
#cross_talk > .inner > .ctbox .ct02:hover > .ct_text .more img{
    margin-left: 30px;
}

#cross_talk .sub_text{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 84px;
    padding-top: 20px;
    padding: 100px 0 50px;
    font-weight: 500;
    text-align: center;
}

@media screen and (max-width: 768px) {
    #cross_talk > .inner > .ctbox .ct .ct_text .more{
        width: 100%;
        padding-top: 10px;
    }
    #cross_talk > .inner > .ctbox .ct .ct_text .more img{
        width: 140px;
    }
    
    #cross_talk > .inner > .ctbox .ct01 .ct_text .more img{
        margin-left:auto ;
        margin-right: 0px;
    }
    #cross_talk > .inner > .ctbox .ct01:hover > .ct_text .more img{
        margin-right: 0px;
    }
    #cross_talk > .inner > .ctbox .ct02 .ct_text .more{
        text-align: right;
    }
    #cross_talk > .inner > .ctbox .ct02 .ct_text .more img{
        margin-left: auto;
        margin-right: 0px;
    }
    #cross_talk > .inner > .ctbox .ct02:hover > .ct_text .more img{
        margin-right: 0px;
    }
    
    #cross_talk .sub_text{
        font-size: 22px;
        letter-spacing: 1px;
        line-height: 44px;
        padding-top: 20px;
        padding: 30px 0 20px;
        font-weight: 500;
    }
}

/* cross_talk ここまで */

/* about ここから */
#about{
    padding-bottom: 100px;
}
#about .inner{
    padding-top: 100px;
}
.about_text{
    position: relative;
    padding: 80px 0;
    background: url(https://image.global-center.co.jp/recruiting/index/about.jpg) no-repeat center center;
    background-size: 100% 100%;
}
#about .about_text #titlebox{
    position: absolute;
    top: -120px;
    left: 0px;
    color: #000;
}

.about_text .box .detail{
    width: 50%;
    margin-left: auto;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 18px;
    line-height: 40px;
    color: #fff;
    text-align: left;
    font-weight: 700;
}

.about_text .box .more{
    width: 100%;
    padding-top: 50px ;
    text-align: right;
}
.about_text .box .more img{
    width: 180px;
    transition: .5s;
    margin-left:auto ;
    margin-right: 30px;
}
.about_text:hover .box .more img{
    margin-right: 0px;
}

@media screen and (max-width: 768px) {
    #about{
        padding-bottom: 20px;
    }
    #about .inner{
        padding-top: 70px;
    }
    .about_text{
        padding: 70px 0 40px;
        background: url(https://image.global-center.co.jp/recruiting/index/about_sp.jpg) no-repeat center center;
    }
    #about .about_text #titlebox{
        top: -110px;
        left: 0px;
    }
    
    .about_text .box .detail{
        width: 100%;
        padding: 0 10px;
        margin-right: auto;
        margin-left: auto;
        font-size: 15px;
        line-height: 30px;
        color: #fff;
    }
    
    .about_text .box .more{
        width: 100%;
        padding-top: 10px ;
        text-align: right;
    }
    .about_text .box .more img{
        width: 160px;
        margin-right: 0px;
    }
    .about_text:hover .box .more img{
        margin-right: 0px;
    }
}

/* about　ここまで */


/* business_field ここから */
#business_field{
    padding-bottom: 200px;
}
.about_text
#business_field .inner{
    padding-top: 100px;
}

.bf_text{
    position: relative;
    padding: 80px 0;
    background: url(https://image.global-center.co.jp/recruiting/index/business_field.jpg) no-repeat center center;
    background-size: 100% 100%;
}
#business_field .bf_text #titlebox{
    position: absolute;
    top: -120px;
    left: 0px;
    color: #000;
}

.bf_text .box .detail{
    width: 50%;
    margin-left: auto;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 18px;
    line-height: 40px;
    color: #fff;
    text-align: left;
    font-weight: 700;
}

.bf_text .box .more{
    width: 100%;
    padding-top: 50px ;
    text-align: right;
}
.bf_text .box .more img{
    width: 180px;
    transition: .5s;
    margin-left:auto ;
    margin-right: 30px;
}
.bf_text:hover .box .more img{
    margin-right: 0px;
}
@media screen and (max-width: 768px) {
    #business_field{
        padding-bottom: 50px;
    }
    
    #business_field .inner{
        padding-top: 70px;
    }
    
    .bf_text{
        padding: 70px 0 40px;
        background: url(https://image.global-center.co.jp/recruiting/index/business_field_sp.jpg) no-repeat center center;
    }
    #business_field .bf_text #titlebox{
        position: absolute;
        top: -110px;
        left: 0px;
        color: #000;
    }
    
    .bf_text .box .detail{
        width: 100%;
        padding: 0 10px;
        margin-right: auto;
        margin-left: auto;
        font-size: 15px;
        line-height: 30px;
        color: #fff;
    }
    
    .bf_text .box .more{
        width: 100%;
        padding-top: 10px ;
        text-align: right;
    }
    .bf_text .box .more img{
        width: 160px;
        margin-right: 0px;
    }
    .bf_text:hover .box .more img{
        margin-right: 0px;
    }

}
/* business_field　ここまで */

/* welfare_date　ここから */
#welfare_date .wdbox{
    width: 100%;
    padding: 50px 0 100px;
}
#welfare_date #titlebox img{
    width: 42px;
}
#welfare_date #welfare{
    position: relative;
}
#welfare_date #date{
    position: relative;
}
#welfare_date .wdbox .wdtitle{
    margin-bottom: 0;
    padding: 12px 0px 12px 30px;
    color: #fff;
    background-color: #77aad9;
    width: 350px;
    font-size: 18px;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
}
#welfare_date #welfare .wdtitle{
    position: absolute;
    top: 25px;
    z-index: 6;
    left: -30px;
}

#welfare_date .wdbox .welfare{
    width: 100%;
    padding: 70px 100px;
    background-color: #e5e5e5;
    display: flex;
    gap: 100px;
    position: relative;
}

#welfare_date .wdbox .welfare::after{
    background: url(https://image.global-center.co.jp/recruiting/index/icon_more_b.svg) no-repeat center center;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    bottom: 70px;
    right: 120px;
    width: 150px;
    height: 13px;
    transition: .3s;
}
#welfare_date .wdbox:hover .welfare::after{
    right: 100px;
}

#welfare_date .wdbox .welfare .detail{
    max-width: 360px;
}
#welfare_date .wdbox .welfare .detail dl{
    display: flex;
    max-width: 360px;
    padding: 10px 20px;
    border-bottom: 1px solid #bfbfbf;
    gap: 15px;
    align-items: flex-end;
}
#welfare_date .wdbox .welfare .detail dl dt{
    font-size: 35px;
    font-family: 'Oswald',sans-serif;
    color: #528099;
    letter-spacing: 2px;
}
#welfare_date .wdbox .welfare .detail dl dd{
    font-size: 16px;
    padding-bottom: 10px;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    color: #000;
}

@media screen and (max-width: 768px) {
    #welfare_date .wdbox{
        width: 100%;
        padding: 50px 20px 20px;
    }
    #welfare_date #titlebox img{
        width: 24px;
    }
    #welfare_date .wdbox .wdtitle{
        margin-bottom: 0;
        padding: 10px 0px 10px 20px;
        color: #fff;
        background-color: #77aad9;
        width: 260px;
        font-size: 16px;
    }
    #welfare_date #welfare .wdtitle{
        position: absolute;
        top: 25px;
        z-index: 6;
        left: 10px;
    }
    
    #welfare_date .wdbox .welfare{
        width: 100%;
        padding: 30px 10px 70px;
        background-color: #e5e5e5;
        display: block;
    }
    
    #welfare_date .wdbox .welfare::after{
        background: url(https://image.global-center.co.jp/recruiting/index/icon_more_sp.svg) no-repeat center center;
        bottom: 20px;
        right: 20px;
        width: 140px;
        height: 13px;
    }
    #welfare_date .wdbox:hover .welfare::after{
        right: 20px;
    }
    
    #welfare_date .wdbox .welfare .detail{
        max-width: 100%;
    }
    #welfare_date .wdbox .welfare .detail dl{
        display: flex;
        max-width: 100%;
        padding: 10px 20px;
        border-bottom: 1px solid #bfbfbf;
        gap: 15px;
        align-items: flex-end;
    }
    #welfare_date .wdbox .welfare .detail dl dt{
        font-size: 25px;
        letter-spacing: 1px;
    }
    #welfare_date .wdbox .welfare .detail dl dd{
        font-size: 14px;
        padding-bottom: 5px;
    }
}



#welfare_date #date{
    position: relative;
}

#welfare_date .wdbox .date{
    width: 100%;
    padding: 70px 100px;
    background-color: #e5e5e5;
    display: flex;
    gap: 60px;
    position: relative;
}
#welfare_date #date .wdtitle{
    position: absolute;
    top: 25px;
    z-index: 6;
    left: -30px;
}

#welfare_date .wdbox .date::after{
    background: url(https://image.global-center.co.jp/recruiting/index/icon_more_b.svg) no-repeat center center;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    bottom: 70px;
    right: 120px;
    width: 150px;
    height: 13px;
    transition: .3s;
}
#welfare_date .wdbox:hover .date::after{
    right: 100px;
}

#welfare_date .wdbox .date .detail{
    max-width: 400px;
}
#welfare_date .wdbox .date .detail2{
    max-width: 300px;
    padding-bottom: 20px;
}

#welfare_date .wdbox .date .gender_ratio{
   display: flex;
   align-items: center; 
   gap: 30px;
}

#welfare_date .wdbox .date .gender_ratio .man{
    color: #528099;
    position: relative;
}
#welfare_date .wdbox .date .gender_ratio .woman{
    color: #77aad9;
}
#welfare_date .wdbox .date .gender_ratio div p{
    margin: 0;
}
#welfare_date .wdbox .date .gender_ratio .man::after{
    position: absolute;
    top: 30%;
    right: -17px;
    content: ":";
    color: #528099;
    font-family: 'Oswald',sans-serif;
    font-size: 60px;
}
#welfare_date .wdbox .date .gender_ratio div .gender{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 22px;
}
#welfare_date .wdbox .date .gender_ratio div .percent{
    font-family: 'Oswald',sans-serif;
    font-size: 60px;
    letter-spacing: 5px;
    width: 170px;
    
}

#welfare_date .wdbox .date .gender_ratio div .percent .count-size{
    width: 90px;
}

#welfare_date .wdbox .date  .detail p.sub{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 14px;
    color: #000;
}


#welfare_date .wdbox .date .los p{
    margin: 0;
}
#welfare_date .wdbox .date .los .los_title{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 22px;
    color: #528099;
}
#welfare_date .wdbox .date .los .los_detail {
    font-family: Noto Sans CJK JP, sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 10px;
    color: #528099;
}
#welfare_date .wdbox .date .los .los_detail .num{
    font-family: 'Oswald',sans-serif;
    font-size: 60px;
}
@media screen and (max-width: 768px) {

    #welfare_date .wdbox .date{
        width: 100%;
        padding: 50px 0 60px;
        display: block;
    }
    #welfare_date #date .wdtitle{
        position: absolute;
        top: 25px;
        z-index: 6;
        left: 10px;
    }
    
    #welfare_date .wdbox .date::after{
        background: url(https://image.global-center.co.jp/recruiting/index/icon_more_sp.svg) no-repeat center center;
        bottom: 20px;
        right: 20px;
        width: 140px;
        height: 13px;
    }
    #welfare_date .wdbox:hover .date::after{
        right: 20px;
    }
    
    #welfare_date .wdbox .date .detail{
        max-width: 100%;
        padding: 0 20px 40px;
        margin: 0 auto;
    }
    #welfare_date .wdbox .date .detail2{
        max-width: 100%;
        padding: 0 20px 0px;
    }
    
    #welfare_date .wdbox .date .gender_ratio{
       display: flex;
       align-items: center; 
       /* justify-content: center; */
       gap: 30px;
    }
    
    #welfare_date .wdbox .date .gender_ratio .man::after{
        top: 31%;
        right: -21px;
        font-size: 50px;
    }
    #welfare_date .wdbox .date .gender_ratio div p{
        margin: 0;
    }
    #welfare_date .wdbox .date .gender_ratio div .gender{
        font-size: 20px;
    }
    #welfare_date .wdbox .date .gender_ratio div .percent{
        font-size: 50px;
        letter-spacing: 3px;
        width: 135px;
    }
    #welfare_date .wdbox .date .gender_ratio div .percent .count-size{
        width: 90px;
    }
    
    #welfare_date .wdbox .date  .detail p.sub{
        font-size: 14px;
        color: #000;
    }
    
    
    #welfare_date .wdbox .date .los p{
        margin: 0;
    }
    #welfare_date .wdbox .date .los .los_title{
        font-size: 20px;
    }
    #welfare_date .wdbox .date .los .los_detail {
        font-size: 25px;
        font-weight: 500;
        letter-spacing: 10px;
        color: #528099;
    }
    #welfare_date .wdbox .date .los .los_detail .num{
        font-size: 50px;
    }
}
@media screen and (max-width: 350px) {
    #welfare_date .wdbox .date .gender_ratio .man::after {
        top: 31%;
        right: -18px;
        font-size: 40px;
    }
    #welfare_date .wdbox .date .gender_ratio div .percent .count-size{
        width: 90%
    }
    #welfare_date .wdbox .date .gender_ratio div .percent{
        width: 95px;
        font-size: 40px !important;
        letter-spacing: 0px;
    }
    #welfare_date .wdbox .date .los .los_detail .num{
        font-size: 40px !important;
    }
}
/* welfare_date　ここまで */


/* business_field ここから */
#recruitment .inner{
    padding-top: 100px;
}

#recruitment .inner .text{
    position: relative;
    padding: 100px 0 150px;
    background: url(https://image.global-center.co.jp/recruiting/index/recruitment.jpg) no-repeat center center;
    background-size: 100% 100%;
}
#recruitment .inner .text #titlebox{
    position: absolute;
    top: -145px;
    left: 0px;
    color: #000;
}

#recruitment .inner .text .box .detail{
    width: 100%;
    margin-left: auto;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 18px;
    line-height: 40px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
#recruitment .inner .text .box .detail .main{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 38px;
    letter-spacing: 2px;
    line-height: 82px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
#recruitment .inner .text .box .detail .sub{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
#recruitment .inner .text .box .detail .btnbox{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
}
#recruitment .inner .text .box .detail .btnbox a{
    flex-basis: 50%;
    
}
#recruitment .inner .text .box .detail .btnbox li{
    width: 250px;
    padding: 15px 20px 15px 40px;
    background-color: #fff;
    text-align: left;
    font-size: 16px;
    color: #000;
    position: relative;
    transition: .3s;
    list-style: none;
}

#recruitment .inner .text .box .detail .btnbox li:hover{
    background-color: #000;
    color: #fff;
}

#recruitment .inner .text .box .detail .btnbox li .arrow svg{
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    right: 30px;
    width: 20px;
    height: 10px;
    transition: .3s;
}

#recruitment .inner .text .box .detail .btnbox li:hover .arrow svg{
    right: 15px;
}

#recruitment .inner .text .box .detail .btnbox li .arrow svg .cls-1 {
    fill: none;
    stroke: #000;
    stroke-miterlimit: 10;
    stroke-width: .5px;
}
#recruitment .inner .text .box .detail .btnbox li:hover .arrow svg .cls-1 {
    stroke: #fff;
}

@media screen and (max-width: 768px) {
    #recruitment  .inner{
        padding-top: 80px;
    }
    
    #recruitment  .inner  .text{
        position: relative;
        padding: 70px 0 40px;
        background: url(https://image.global-center.co.jp/recruiting/index/recruitment_sp.jpg) no-repeat center center;
        background-size: 100% 100%;
    }
    #recruitment  .inner  .text #titlebox{
        position: absolute;
        top: -105px;
        left: 0px;
        color: #000;
    }
    
    #recruitment  .inner  .text .box .detail{
        width: 100%;
        margin-left: auto;
        font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
        font-size: 18px;
        line-height: normal;
        color: #fff;
        text-align: center;
    }
    #recruitment  .inner .text .box .detail .main{
        font-size: 22px;
        letter-spacing: 1px;
        line-height: 40px;
        font-weight: 500;
    }
    #recruitment .inner .text .box .detail .sub{
        font-size: 15px;
        line-height: 30px;
    }
    #recruitment .inner .text .box .detail .btnbox{
        display: block;
        padding-top: 30px;
    }
    #recruitment .inner .text .box .detail .btnbox a{
        flex-basis: 50%;
        
    }
    #recruitment .inner .text .box .detail .btnbox li{
        width: 180px;
        padding: 15px 20px 15px 40px;
        background-color: #fff;
        text-align: left;
        font-size: 16px;
        margin: 0 auto 10px ;
    }
    
    #recruitment .inner .text .box .detail .btnbox li:hover{
        background-color: #000;
        color: #fff;
    }
    
    #recruitment .inner .text .box .detail .btnbox li .arrow svg{
        display: block;
        position: absolute;
        top: calc(50% - 2px);
        right: 20px;
        width: 20px;
        height: 10px;
        transition: .3s;
    }
    
    #recruitment .inner .text .box .detail .btnbox li .arrow svg .cls-1 {
        fill: none;
        stroke: #000;
        stroke-miterlimit: 10;
        stroke-width: .5px;
    }
    #recruitment .inner .text .box .detail .btnbox li:hover .arrow svg .cls-1 {
        stroke: #fff;
    }

}
/* business_field　ここまで */


