@charset "UTF-8";

/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/

@media screen and (min-width: 900px) {

  /* =====================
    detail_fv
  ===================== */
  
  #detail_fv {
    width: 100%;
    height: 405px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
  }

  #detail_fv::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    opacity: .2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  #detail_fv img {
    width: calc( 100% + 40px );
    height: calc( 100% + 40px );
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    filter: blur(20px);
  }

  /* =====================
    detail
  ===================== */

  #detail {
    padding-top: 0;
  }

  #detail .inner {
    padding-bottom: 115px;
    position: relative;
  }

  .detail_cont {
    padding: 70px 0 50px;
    position: relative;
  }

  .detail_cont::before {
    content: '';
    width: calc( 100% + 160px );
    height: 20px;
    background: var(--color-main-gray);
    display: block;
    position: absolute;
    top: 0;
    left: -80px;
  }

  #detail .post {
    margin-top: 220px;
    position: relative;
  }

  .tooltip_item {
    position: absolute;
    top: -12px;
    left: 80px;
  }

  #detail .job_shokai {
    height: 30px;
    line-height: 27px;
    font-size: 13px;
    padding: 0 28px 0 10px;
    position: relative;
    top: auto;
    right: auto;
  }

  .tooltip {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-52%);
    cursor: pointer;
    padding: 0;
  }

  .tooltip::before,
  .tooltip_box_close::before {
    top: 0;
    font-size: 17px;
  }

  .tooltip_box {
    display: none;
    width: 230px;
    padding: 18px 15px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-size: 11px;
    line-height: 1.6;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(15px, -50%);
    z-index: 1000;
  }

  .tooltip_box::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 10px solid rgba(0, 0, 0, 0.9);
    border-left: 0;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
  }

  .tooltip_box_close {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 3px;
    right: 3px;
    user-select: none;
    cursor: pointer;
    padding: 0;
  }

  .tooltip_item.show .tooltip_box {
    display: block;
  }

  /*  post_fv
  ------------------------*/

  #post_fv {
    padding-bottom: 50px;
  }

  .post_fv_data {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }

  .post_fv_data .job_id {
    font-size: 12px;
    color: #707070;
    font-weight: 300;
  }

  #post_fv .job_text {
    background: none;
    padding: 0;
    border-radius: 0;
    margin-top: 20px;
  }

  #post_fv .job_text .data {
    gap: 0 20px;
  }
  
  .post_fv_column {
    margin-top: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(9, 9, 21, 0.2);
    justify-content: space-between;
  }

  .post_fv_img {
    width: 470px;
    margin-top: 5px;
  }

  .post_fv_column .text {
    width: 440px;
  }
  
  /*  btns
  ------------------------*/
  
  .btns {
    align-items: center;
    justify-content: center;
    gap: 0 30px;
    z-index: 999;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .btns.fixed {
    position: fixed;
    bottom: 30px;
  }

  .btn_favo {
    width: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main-black);    
    color: #fff;
    cursor: pointer;
  }

  .btn_favo ._favorite::before {
    top: 5px;
  }

  .btn_favo.on ._favorite::before {
    font-variation-settings:
    'FILL' 1;
  }
  
}

/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/

@media screen and (max-width: 899px) {
    
  /* =====================
    detail_fv
  ===================== */
  
  #detail_fv {
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
  }

  #detail_fv::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    opacity: .2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  #detail_fv img {
    width: calc( 100% + 40px );
    height: calc( 100% + 40px );
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    filter: blur(20px);
  }

  /* =====================
    detail
  ===================== */

  #detail {
    padding-top: 0;
  }

  #detail .inner {
    padding-bottom: 90px;
    position: relative;
  }

  .detail_cont {
    padding: 50px 0 40px;
    position: relative;
  }

  .detail_cont::before {
    content: '';
    width: calc( 100% + 40px );
    height: 20px;
    background: var(--color-main-gray);
    display: block;
    position: absolute;
    top: 0;
    left: -20px;
  }

  #detail .post {
    margin-top: 20px;
  }

  .tooltip_item {
    margin-top: -34px;
  }
  
  #detail .job_shokai {
    height: 22px;
    line-height: 20px;
    padding: 0 20px 0 7px;
    position: relative;
    border-radius: 2px;
    top: auto;
    right: auto;
  }

  .tooltip {
    width: 13px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-52%);
    cursor: pointer;
    padding: 0;
  }

  .tooltip::before,
  .tooltip_box_close::before {
    top: 0;
    font-size: 13px;
  }

  .tooltip_box {
    width: 100%; 
    height: 0;
    margin-top: 6px; 
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    background: rgba(0, 0, 0, 0.9);
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    font-size: 11px;
    line-height: 1.6;
    position: relative;
    transform: none;
  }

  .tooltip_box::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 6px solid rgba(0, 0, 0, 0.9);
    border-top: 0;
    position: absolute;
    bottom: 100%;
    left: 10px;
  }

  .tooltip_box_close {
    width: 13px;
    height: 13px;
    position: absolute;
    top: 3px;
    right: 3px;
    user-select: none;
    cursor: pointer;
    padding: 0;
  }

  .tooltip_item.show .tooltip_box {
    height: auto;
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 10px;
    overflow: visible;
  }

  /*  post_fv
  ------------------------*/

  #post_fv {
    padding-bottom: 20px;
  }

  .post_fv_data {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }

  .post_fv_data .job_id {
    font-size: 10px;
    color: #707070;
    font-weight: 300;
  }

  #post_fv .job_text {
    background: none;
    width: 100%;
    padding: 0;
    border-radius: 0;
    margin-top: 15px;
  }

  #post_fv .job_text .data {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  #post_fv .job_text .data li:first-child {
    width: 100%;
  }

  #post_fv .job_text .data li {
    width: 49%;
  }
  
  .post_fv_column {
    margin-top: 15px;
    display: block;
  }

  .post_fv_img {
    width: calc( 100% + 40px );
    margin: 0 -20px 20px;
  }

  /*  btns
  ------------------------*/
  
  .btns {
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    z-index: 999;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .btns.fixed {
    position: fixed;
    bottom: 10px;
  }

  .btn_favo {
    width: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main-black);    
    color: #fff;
    cursor: pointer;
  }

  .btn_favo ._favorite::before {
    top: 5px;
  }

  .btn_favo.on ._favorite::before {
    font-variation-settings:
    'FILL' 1;
  }
    
}
