@charset "UTF-8";



/* ========================================
   募集職種 絞り込み部分
======================================== */

.recruit_filter {
  margin-top: 40px;
  margin-bottom: 50px;
}


/* 職種・地域それぞれのグループ */
.filter_group {
  margin-bottom: 30px;
}

.filter_group:last-child {
  margin-bottom: 0;
}


/* 「募集職種」「地域別」の文字 */
.filter_title {
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 28px;
  text-align: left;
}


/* ボタンの並び */
.filter_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}


/* 絞り込みボタン */
.filter_button {
  display: block;
  min-width: 130px;
  padding: 11px 18px;
  border: 2px solid #0065cc;
  border-radius: 4px;
  background-color: #fff;
  color: #0065cc;
  font-family: inherit;
  font-size: clamp(16px, 2.0vw, 24px);
  line-height: 1.4;
  text-align: center;
  cursor: pointer;

  transition:
    background-color 0.3s,
    color 0.3s,
    opacity 0.3s;
}


/* ボタンにカーソルを乗せた場合 */
.filter_button:hover {
  background-color: #edf6ff;
}


/* 選択されているボタン */
.filter_button.is_active {
  background-color: #0065cc;
  color: #fff;
}


/* キーボード操作時 */
.filter_button:focus-visible {
  outline: 3px solid rgba(0, 101, 204, 0.3);
  outline-offset: 2px;
}


/* ========================================
   求人一覧
======================================== */

.recruitment_list {
  margin-bottom: 40px;
}

.recruitment_list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


/* 求人1件 */
.recruitment_item {
  margin: 0;
  border-bottom: 1px solid #ccc;
}


/* 求人リンク */
.recruitment_item a {
  position: relative;
  display: block;
  padding: 20px 45px 20px 20px;
  color: #333;
  font-size: clamp(16px, 2.0vw, 24px);
  line-height: 1.7;
    text-align: left;
  text-decoration: none;

  transition:
    background-color 0.3s,
    color 0.3s;
}


/* 右側の矢印 */
.recruitment_item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0065cc;
  border-right: 2px solid #0065cc;
  transform: translateY(-50%) rotate(45deg);
}


/* 求人にカーソルを乗せた場合 */
.recruitment_item a:hover {
  background-color: #f3f7fb;
  color: #0065cc;
}


/* 絞り込みによって非表示にする求人 */
.recruitment_item.is_hidden {
  display: none;
}


/* 該当する求人がない場合 */
.no_result {
  margin: 30px 0 0;
  padding: 25px 20px;
  background-color: #f5f5f5;
  color: #555;
  text-align: center;
}


/* hidden属性がある場合は非表示 */
.no_result[hidden] {
  display: none;
}


/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 767px) {

  .recruit_filter {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .filter_group {
    margin-bottom: 25px;
  }

  .filter_title {
    font-size: 16px;
  }

  .filter_list {
    gap: 8px;
  }

  .filter_list li {
    width: calc(50% - 4px);
  }

  .filter_button {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 10px 6px;
    font-size: 13px;
  }

  .recruitment_item a {
    padding: 16px 35px 16px 10px;
    font-size: 14px;
  }

  .recruitment_item a::after {
    right: 12px;
  }

  .no_result {
    padding: 20px 15px;
    font-size: 14px;
  }

}


.companydoctor_about_content_area{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 10%;
    display: flex;
}

.companydictor_about_pic{
    width: 100%;
    margin-right: 2%;
    padding: 1%;
}

.companydoctor_about_p_area{
    width: 100%;
    margin-right: 2%;
    padding: 1%;
}

.companydoctor_about_p{
    text-align: left;
    
}

.bg_image_02{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/cont1_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* ==========================
   企業ドクター（スマホ）
========================== */
@media screen and (max-width: 767px){

  /* 背景 */
  .bg_image_02{
    background-image: url(../img/cont1_bg.png);
    background-repeat: no-repeat !important;
    background-position: center;
    background-size: 100% 100%;
  }

  /* 画像と文章を縦並びに */
  .companydoctor_about_content_area{
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
  }

  /* 画像 */
  .companydoctor_about_pic{
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    text-align: center;
  }

  .companydoctor_about_pic img{
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  /* 文章 */
  .companydoctor_about_p_area{
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .companydoctor_about_p{
    text-align: left;
    line-height: 1.9;
    font-size: 15px;
  }

}

    
    
    
    
    
    
    
    
    
    
    
    
}