@charset "UTF-8";
/*======================================================= 
 採用サイト共通スタイル
=======================================================*/
html, .body{
    font-size: 18px;
    background-color: #fff!important;
}
html{
    overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}
.main-content{
    background-color: #fff!important;
    padding: 0!important;
}
h1{
    font-size: 50px;
}
h2{
    font-size: 50px;
    text-align: center;
    padding: 1em 0;
}
h2 span{
    display: block;
    font-size: 0.6em;
    padding-top: 0.6em;
}

/* TOPボタン */
.recruit-top{
    position: fixed;
    width: 80px;
    height: auto;
    bottom: 20px;
    right: 20px;
    transition: opacity 0.5s ease-in-out;
    z-index: 999;
}
.recruit-top a{
    display: block;
    width: 100%;
}

/* top */
.header-bg img{
    width: 100%;
    height: 350px;
}
.page-title{
    max-width: 1200px;
    width: 100%;
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

/* 流れる文字 */
.logo-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  margin-top: 100px;
}
.wrapper {
  display: flex;
  animation: loop-text 60s linear infinite;
}
.double-content {
  display: inline-block;
  font-size: 6rem;
  font-weight: bold;
  color: #B3B3B3;
  white-space: nowrap;
}
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*1200px以下*/
@media screen and (max-width: 1200px){
    .header-bg img{
        height: 300px;
    }
    .page-title{
        padding: 0 15px;
    }
    /* section{
        padding: 0 15px 50px 15px;
    } */
}

/*950px以下*/
@media screen and (max-width: 950px){
    html, .body{
        font-size: 15px;
    }
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 30px;
    }
    .wrap_c{
        padding:  0 15px;
    }
    .header-bg img{
        height: 250px;
    }
    .page-title{
        top: 20%;
    }

    /* 流れる文字 */
    .double-content {
        font-size: 5rem;
    }
}

/*750px以下*/
@media screen and (max-width: 750px){
    h1{
        font-size: 35px;
    }
    h2{
        font-size: 24px;
    }
    .page-title{
        top: 19%;
    }
}

/*480px以下*/
@media screen and (max-width: 480px){
    html, .body{
        font-size: 14px;
    }
    h1{
        font-size: 30px;
    }
    .header-bg img{
        height: 200px;
    }
    .page-title{
        top: 18%;
    }

    /* topへ戻る */
    .recruit-top{
        width: 50px;
        bottom: 15px;
        right: 15px;
    }

    /* 流れる文字 */
    .logo-container {
        margin-top: 50px;
    }
    .double-content {
        font-size: 3rem;
    }
}