.apuriku-lp .header__logo {
    width: 240px;
    height: auto;
}


/* メインコピー */
@media screen and (min-width: 360px) {
    .apuriku-lp .main-visual__main-copy .main-copy-01 {
        display: block;
        font-size: 22px;
    }

    .apuriku-lp .main-visual__main-copy .main-copy-02 {
        display: block;
        font-size: 40px;
    }
}

@media screen and (min-width: 768px) {
    .apuriku-lp .main-visual {
        background-position: center 80px;
    }
    .apuriku-lp .main-visual__main-copy .main-copy-01 {
        font-size: 30px;
    }
    .apuriku-lp .main-visual__main-copy .main-copy-02 {
        font-size: 50px;
    }
}


/*ボタン*/
.apuriku-lp .section-btn-area {
    display: flex;
    justify-content: center;
}
.apuriku-lp .section-btn-area .section-btn-area-link{
    display: block;
    text-align: center;
    border-radius: 30px;
    padding: 20px;
    border: 1px solid #283593;
    color: #283593;
    font-size: 18px;
    line-height: 1;
    background-color: #fff;
    position: relative;
    width:410px;
    margin:0 20px 30px 20px;
    transition:all .15s;
}
.apuriku-lp .section-btn-area .section-btn-area-link::after {
    content: "";
    position: absolute;
    display: block;
    border-top: 1px solid #283593;
    border-right: 1px solid #283593;
    transform: rotate(45deg);
    width: 13px;
    height: 13px;
    top: 22px;
    right: 20px;
    transition:all .15s;
}
@media screen and (max-width: 767px) {
    .apuriku-lp .section-btn-area {
        flex-direction: column;
    }
    .apuriku-lp .section-btn-area .section-btn-area-link{
        width:100%;
        margin:0 auto;
        margin-bottom:13px;
        font-size: 15px;
        padding: 15px;
    }
    .apuriku-lp .section-btn-area .section-btn-area-link::after {
        width: 8px;
        height: 8px;
        top: 18px;
        right: 14px;
    }
}
.apuriku-lp .section-btn-area .section-btn-area-link:hover{
    color: #fff;
    background-color: #283593;
}
.apuriku-lp .section-btn-area .section-btn-area-link:hover::after {
    border-color: #fff;
}
.apuriku-lp .section-btn-area .section-btn-area-link:link,.apuriku-lp .section-btn-area .section-btn-area-link:visited{
    text-decoration: none;
}

.apuriku-lp .highlight{
    font-weight: bold;
}
/*注釈*/
.apuriku-lp .annotation{
    font-size: 14px;
    color: #a9a9a9;
}
/*ポイント*/
.apuriku-lp .point{
    font-size: 14px;
    color: #283593;
}

/* キャリアステップ
.apuriku-lp .career {
    background-color: #fff;
}*/

.apuriku-lp #html-part2 .link-list-01 {
    background-color: #fff;
}

/*障害者採用実績例*/

.work-results-title{
    color: #000;
    font-weight: bold;
    font-size: 23px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 30px;
}
.work-results{
    margin: 0.6%;
    flex-direction: column;
}
.work-results li{
    flex-basis: 100%;
    max-width: 100%;
    border: 1px solid #e8e8e8;
    list-style-type: none;
    margin-bottom: 16px;
    padding: 20px 24px 24px;
    text-align: center;
    line-height: 1.6;
    position: relative;
    border-radius: 5px;
    background: #fbfbfb;
    
}

.work-results li em{
    display: block;
    color: #283593;
    margin: 0.5em 0 0.2em;
    font-weight: bold;
    font-style: normal;
    font-size: 16px;
}
.work-results li span{
    font-weight: bold;
    font-size: 16px;
}
@media screen and (min-width: 960px) {
    .work-results-title{
        font-size: 30px;
        margin-bottom: 50px;
    }
    .work-results{
        display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
    .work-results li{
        flex-basis: calc((100% - 110px) / 3);
        max-width: calc((100% - 110px) / 3);
        margin-right: 36px;
         padding: 15px 20px 25px;
    }
        
}

.interview__title{
    font-feature-settings: 'palt';
}
.interview__img-sub{
    margin-bottom: 0;
    margin:30px 0 0;
}
@media screen and (min-width: 960px) {
   .interview__img-sub{
    margin-top: 70px;
} 
}
.interview__headline{
    margin-bottom: 25px;
}

.apuriku-lp .interview__text{
     margin-bottom:40px;

/*追従ボタン*/
.sticky-button {
  position: fixed;
  bottom: 10px; 
  right: 0; /* 右からの位置 */
  z-index: 9999; /* 表示順序 */
  background: #e68300;
  color: #fff;
  border: none;
  padding: 6px 35px 6px 15px;
  font-size: 12px;
  border-radius: 4px 0 0 4px;
  text-decoration: none!important;
  
  /*アニメーションの指定*/
    transition: all .3s;
}
.sticky-button:hover{
    opacity: 0.7;
}
.sticky-button span{
    text-decoration: underline;
    font-weight: bold;
}
.sticky-button ::after{
     content: '';
  position: absolute;
    top:42%;
    right:13px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
/*hoverした際の移動*/
.sticky-button :hover::after{
    right:11px;
}
@media screen and (min-width: 960px){
   .sticky-button {
  position: fixed;
  top: 10px; 
  bottom: auto;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 35px 10px 20px;
  z-index: 9999; /* 表示順序 */
} 
}