@charset "UTF-8";

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

:root {
  --color-black: #555;
  --color-main: #30BDAC;
  --color-sub: #ECF5F5;
  --color-bg: #F5F7F8;
  --color-red: #EB6A8D;
  --color-gray: #909090;
  --gradient-main: linear-gradient(130deg, rgba(59,208,206,1) 0%, rgba(32,198,145,1) 100%);
  --box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* =====================
  fonts
===================== */

/*  Yu Gothic
------------------------*/

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

/*  Regular (400)
------------------------*/
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Rg.woff2") format("woff2"),
       url("../fonts/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: 400;
}

/*  Bold (700)
------------------------*/
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Bd.woff2") format("woff2"),
       url("../fonts/LINESeedJP_OTF_Bd.woff") format("woff");
  font-weight: 700;
}

/* =====================
  base
===================== */

*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-family: "LINE Seed JP";
  color: var(--color-black);
  background: #fff;
  font-weight: 400;
  line-height: 1.8;
  height: 100%;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

svg {
  width: 100%;
  height: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: var(--color-black);
  word-break: break-all;
}

a.link {
  color: #1989CF;
  text-decoration: underline;
}

.flx {
  display: flex;
}

#wrapper {
  position: relative;
  overflow: clip;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1;
  margin-bottom: 45px;
}

.inner {
  margin: 0 auto;
}

/* =====================
  form
===================== */

input,
select,
button,
textarea {
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family : inherit;
  color: inherit;
}

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

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

  /* =====================
    base
  ===================== */

  body {
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .pc_none {
    display: none !important;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

  .contents {
    padding: 30px 0;
  }

  .inner {
    width: 1060px;
  }

  .text p:not(:last-of-type) {
    margin-bottom: 14px;
  }  

  /* =====================
    btn
  ===================== */

  /*  btns
  ------------------------*/
  
  .btns p:not(:last-of-type) {
    margin-bottom: 10px;
  }

  .btn_apply,
  .btn_search {
    width: 200px;
    height: 45px;
      font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.4;
    font-weight: 700;
    border-radius: 50px;
    background: var(--gradient-main);
    text-align: center;
    margin: 0 auto;
  }

  .btn_apply {
    background: var(--gradient-main);
  }

  .btn_search {
    background: var(--color-red);
  }

  .btn_apply a,
  .btn_search a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
  }

  .btn_apply a::before,
  .btn_search a::before {
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
  }

  .btn_apply a::before {
    background-image: url(../img/common/icon_apply.svg);
  }

  .btn_search a::before {
      background-image: url(../img/common/icon_search.svg);  
  }
  
  /* =====================
    job_list
  ===================== */
  
  .job_item {
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
  }

  .job_item:last-of-type {
    margin-bottom: 0;
  }

  .job_item .job_a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 20px 25px;
    position: relative;
  }

  .job_item .job_a::before {
    content: '';
    width: 30px;
    height: 29px;
    display: block;
    background: url(../img/common/icon_detail.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: -0.5px;
  }

  .job_img {
    width: 100px;
  }

  .job_img img {
    height: 100px;
    object-fit: cover;
  }

  .job_text {
    width: calc( 100% - 100px - 10px );
  }

  .job_area {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
  }

  .job_area::before {
    content: '';
    width: 11px;
    height: 14px;
    display: block;
    background: url(../img/common/icon_area.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }

  .job_ttl {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .job_data {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 13px;
  }

  .job_data li {
    width: calc( 50% - 5px );
    min-height: 25px;
    display: flex;
    background: var(--color-bg);
    font-size: 12px;
    line-height: 1.4;
    padding: 5px 5px 5px 35px;
    border-radius: 2px;
    position: relative;
  }

  .job_data li::before {
    content: '';
    width: 25px;
    height: 100%;
    background: #444;
    border-radius: 2px 0 0 2px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
  }

  .job_data li.cat::before {
    background-image: url(../img/common/icon_cat.svg);
  }

  .job_data li.pay::before {
    background-image: url(../img/common/icon_pay.svg);
  }

  .job_favo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -8px;
    right: -8px;
  }

  .job_favo img {
    width: 20px;
  }  

}

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

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

  /* =====================
    base
  ===================== */

  body {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .sp_none {
    display: none !important;
  }

  a {
    text-decoration: none;
    color: var(--color-black);
    word-break: break-all;
  }
  
  .inner {
    max-width: 500px;
    width: 84%;
  }

  .contents {
    padding: 15px 0;
  }

  .text p:not(:last-of-type) {
    margin-bottom: 14px;
  }

  /* =====================
    btn
  ===================== */

  /*  btns
  ------------------------*/
  
  .btns p:not(:last-of-type) {
    margin-bottom: 10px;
  }

  .btn_apply,
  .btn_search {
    width: 200px;
    height: 45px;
      font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.4;
    font-weight: 700;
    border-radius: 50px;
    background: var(--gradient-main);
    text-align: center;
    margin: 0 auto;
  }

  .btn_apply {
    background: var(--gradient-main);
  }

  .btn_search {
    background: var(--color-red);
  }

  .btn_apply a,
  .btn_search a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
  }

  .btn_apply a::before,
  .btn_search a::before {
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
  }

  .btn_apply a::before {
    background-image: url(../img/common/icon_apply.svg);
  }

  .btn_search a::before {
    background-image: url(../img/common/icon_search.svg);  
  }
  
  /* =====================
    job_list
  ===================== */
  
  .job_item {
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
  }

  .job_item:last-of-type {
    margin-bottom: 0;
  }

  .job_item .job_a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 15px 20px;
    position: relative;
  }

  .job_item .job_a::before {
    content: '';
    width: 25px;
    height: 25px;
    display: block;
    background: url(../img/common/icon_detail.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .job_img {
    width: 80px;
  }

  .job_img img {
    height: 80px;
    object-fit: cover;
  }

  .job_text {
    width: calc( 100% - 80px - 10px );
  }

  .job_area {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    position: relative;
    padding-left: 14px;
    margin-bottom: 5px;
  }

  .job_area::before {
    content: '';
    width: 10px;
    height: 14px;
    display: block;
    background: url(../img/common/icon_area.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }

  .job_ttl {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .job_data {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-top: 13px;
  }

  .job_data li {
    width: calc( 50% - 2.5px );
    min-height: 20px;
    display: flex;
    background: var(--color-bg);
    font-size: 10px;
    line-height: 1.4;
    padding: 3px 5px 3px 25px;
    border-radius: 2px;
    position: relative;
  }

  .job_data li::before {
    content: '';
    width: 20px;
    height: 100%;
    background: #444;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 2px 0 0 2px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .job_data li.cat::before {
    background-image: url(../img/common/icon_cat.svg);
  }

  .job_data li.pay::before {
    background-image: url(../img/common/icon_pay.svg);
  }

  .job_favo {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -4px;
    right: -4px;
  }

  .job_favo img {
    width: 18px;
  }

}