

body {
    font-family: "Helvetica Neue",
      Arial,
      "Hiragino Kaku Gothic ProN",
      "Hiragino Sans",
      Meiryo,
      sans-serif;
  }

body * {
    box-sizing: border-box;
}

  a:hover {
    opacity: 0.6;
  }

  :root {
    --part-time:#0088C9;
    --spot: #FFB326;
    --main: #6280F2;
    --salary: #FA8510;
    --text: #006187;
  }

.container {
    max-width: 988px;
    background-color: #FFFFFF;
    padding: 16px;
}



/* アカウント名 */

.account {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.account_name{
    font-weight: bold;
    margin-left: 8px;
}

.account_icon{
    margin-left: 4px;
}




/* タイトル */

.Joblist_title{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.title_1 {
    font-size: 24px;
    font-weight: bold;
    padding-left: 8px;
    border-left: #0088C9 solid 4px;
    color: var(--part-time);
}

.title_2 {
    font-size: 24px;
    font-weight: bold;
    padding-left: 8px;
    border-left: var(--spot) solid 4px;
    color: var(--spot);
}


.Joblist_title_text {
    font-weight: bold;
    margin-left: 8px;
}





/* カード */

.card_area {
    padding: 16px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
    background-color: #FFFFFF;
    border-radius: 4px;
    /* margin-bottom: 16px; */
	position: relative;
	/* min-width :390px; */
    /* box-sizing: border-box; */
}

.card_area:last-child{
    margin: 0;
}

.card_label_1 {
    display: inline-block;
    padding: 4px 16px;
    margin-bottom: 8px;
    border: var(--part-time) solid 1px;
    border-radius: 4px;
    color: var(--part-time);
    font-size: 12px;
    font-weight: bold;
    line-height: 1.0;
}

.card_label_2 {
    display: inline-block;
    padding: 4px 16px;
    margin-bottom: 8px;
    border: var(--spot) solid 1px;
    border-radius: 4px;
    color: var(--spot);
    font-size: 12px;
    font-weight: bold;
    line-height: 1.0;
}


.card_text {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: calc(1em* 1.7* 3);
}

.card_bottom_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card_salary {
    display: flex;
    align-items: center;
}

.card_salary_icon {
    padding-top: 2px;
}

.card_salary_text {
    color: var(--salary);
    font-size: 18px;
    font-weight: bold;
    line-height: 1.0;
    margin-left: 4px;
}

.card_button {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    line-height: 1.0;
    background-color: var(--main);
    padding: 8px 16px;
    border-radius: 4px;
    transition: .3s;
}

.card_button::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
  }

  .new::before {
    content: url("./images/new_label.svg");
    top: 0;
    right: 0;
    position: absolute;
    z-index: 100;
}



/* ボタン・インジケータ */

.indicator {
    margin: 24px 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator-button {
    display: inline-block;
    padding: 6px;
    border: var(--main) solid 1px;
    border-radius: 50%;
}

.button-left{
    margin-right: 24px;
}

.button-right {
    margin-left: 24px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background-color: #D9D9D9;
    border-radius: 50%;
    margin-right: 16px;
}

.dot-last {
    margin: 0px;
}

.dot-true {
    background-color: var(--main);
}





/* 導線バナーver */


.banner-text {
    line-height: 1.5;
    margin-bottom: 16px;
}

.banner-image {
    width: 100%;
    box-sizing: border-box;
}

.banner-image img {
    width: 100%;
}
