@charset "UTF-8";

/*-------------------------------
コンポーネント
-------------------------------*/
/* ボタン */
.c-btn {
  position: relative;
  background-color: var(--color-pink);
  height: 53px;
  border: 1px solid var(--color-pink);
  border-radius: 25px;
  color: var(--color-White);
  font-weight: bold;
  display: table;
  cursor: pointer;
  font-size: 15px;
}
@media (min-width: 40em) {
  .c-btn {font-size: 1rem;}
}
button.c-btn {
  padding: 0 60px;
}
.c-btn--clear {
  background-color: var(--color-border);
  border: 1px solid #3d3d3d;
  color: #3d3d3d;
}
button.c-btn--clear {
  padding: 0;
}
.c-btn::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-style: solid;
  border-color: var(--color-white);
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(-45deg);
}
.c-btn--clear::after {
  border-width: 0;
}
.c-btn a {
  padding: 0 60px;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  text-align: center;
}
.c-btn--long a {
  padding: 0 90px;
}
button.c-btn--long {
  padding: 0 90px;
}
.c-btn--100 {
  width: 100%;
  text-align: center;
  padding: 0 !important;
}
.c-btn--100 a {
  padding: 0;
}
.c-btn--350px {
  width: 350px;
  text-align: center;
  padding: 0;
}
.c-btn--350px a {
  padding: 0;
}

/* 検索ボックス */
.c-searchform {
  border: 2px solid var(--color-border);
  /* padding: 10px 5px 10px 15px; */
  width: 260px;
}
.c-searchform input[type="text"] {
  border: none;
}
@media (min-width: 40em) {
  .c-searchform {
    width: 260px;
  }
}
@media (min-width: 75em) {
  .c-searchform {
    width: 370px;
  }
}
.c-searchform__inputbox {
  border: none;
}
.c-searchform__btn {
  font-size: 22px;
  color: var(--color-main);
  background-color: var(--color-White);
  border: none;
  margin-left: auto;
}

/* 矢印 */
.c-arrow-img--bottom {
  width: auto;
  margin-left: auto;
}

/* 一覧表示アイテム */
.c-post-item {
  position: relative;
  width: 100%;
  background-color: var(--color-White);
  min-height: 186px;
  border: 2px solid #194080;
  margin-bottom: 1rem;
}
.o-jobs .c-post-item,.o-job_single .c-post-item {
  border: 4px solid var(--color-main4-2);
}
.c-post-item--column {
  /* height: 290px; */
}
@media (min-width: 40em) {
  .c-post-item {
    height: 460px;
    margin: 0 1px;
    border: 4px solid #194080;
  }
  .c-post-item--column {
    height: 390px;
  }
}
.c-post-item--info {
  border: 1px solid var(--color-border);
}
.c-post-item__level {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 100px;
  font-size: 12px;
  padding: 0 12px;
  color: var(--color-White);
  background-color: #DE4568;
}
.o-jobs .c-post-item__level,.o-job_single .c-post-item__level {
  right: -4px;
  top: -4px;
}
@media (min-width: 40em) {
  .c-post-item__level {
    min-width: 120px;
    font-size: 14px;
    padding: 5px 10px;
  }
  .o-jobs .c-post-item__level,.o-job_single .c-post-item__level {
    right: -4px;
    top: -4px;
    padding: 0 10px;
  }
}
.c-post-item--link,a.c-link {
  width: 100%;
  height: 100%;
  text-indent: -1000%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block
}
.c-post-item__thumbnail {
  width: 100%;
  aspect-ratio: 3 / 2;
}
.c-post-item__thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-post-item__content {
  position: relative;
  width: 100%;
  padding: 15px;
}
.c-post-item--column .c-post-item__content {
  height: 130px;
}
@media (min-width: 40em) {
  .c-post-item__content {
    padding: 20px 20px 22px;
  }
  .c-post-item--column .c-post-item__content {
    height: 180px;
  }
}
.c-post-item__content .c-post-jobtype {
  display: inline-block;
  padding: 6px 7px;
  color: var(--color-White);
  border-radius: 3px;
  line-height: 1em;
  font-size: 10px;
}
@media (min-width: 40em) {
  .c-post-item__content .c-post-jobtype {
    padding: 8px 13px;
    border-radius: 5px;
    font-size: 14px;
  }
}
.c-post-正社員 {
  background-color: var(--color-full-time);
}
.c-post-パート・アルバイト {
  background-color: var(--color-part-time);
}
.c-post-契約社員 {
  background-color: var(--color-contract);
}
.c-post-非常勤 {
  background-color: var(--color-hijoukinn);
}
.c-post-item__content .c-post-title {
  font-weight: bold;
  margin: 6px 0 8px;
  line-height: 1.2em;
  font-size: 14px;
}
@media (min-width: 40em) {
  .c-post-item__content .c-post-title {
    margin: 10px 0 20px;
    line-height: 1.5em;
    font-size: 17px;
  }
}
.c-post-item__content .c-post-date {
  margin-top: -10px;
  font-size: 0.5rem;
}
.c-post-cat--column {
  font-size: 11px;
  color: var(--color-main2);
  position: absolute;
  bottom: 1rem;
  left: 15px;
}
@media (min-width: 40em) {
  .c-post-item__content .c-post-date {
    margin-top: -10px;
    font-size: 1rem;
  }
  .c-post-cat--column {
    font-size: 12px;
    bottom: 2rem;
  }
}
.c-post-item__conditions {
  font-size: 13px;
}
@media (min-width: 40em) {
  .c-post-item__conditions {
    font-size: 1rem;
  }
}

/* セレクトボックス */
.c-selectbox {
  width: 224px;
  height: 48px;
  box-sizing: border-box;
  padding: 12px 12px 12px 12px;
  vertical-align: top;
  border: 1px solid var(--color-border);
  cursor: pointer;
}
input[type="text"].c-input,
input[type="password"].c-input,
input[type="email"].c-input,
input[type="url"].c-input,
input[type="search"].c-input,
input[type="telephone"].c-input,
input[type="number"].c-input,
input[type="date"].c-input,
input[type="datetime"].c-input,
input[type="datetime-local"].c-input,
input[type="month"].c-input,
input[type="week"].c-input,
input[type="time"].c-input {
  width: 270px;
  height: 48px;
  box-sizing: border-box;
  padding: 12px 12px 12px 12px;
  border: 1px solid var(--color-border);
}

/* モーダルウィンドウ */
/* グレー背景 */
.c-layer {
  background: rgba(0, 0, 0, .2); 
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1; 
  opacity: 0;
  visibility: hidden;
}
/* モーダルコンテンツ */
.c-modal {
  background: var(--color-White);
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
}
.c-modal-title {
  border-bottom: 1px solid var(--color-border);
  background: #f3f3f3;
  padding: 8px 16px 6px;
}
.c-modal-inner-title {
  border-bottom: 1px solid var(--color-border);
  padding: 8px 16px 6px;
  font-size: 18px;
  font-weight: bold;
  margin: 0 -10px;
}
.c-close-button--sp {
  font-size: 20px;
  position:absolute;
  right: 5px;
}
.c-modal-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--color-border);
  background:	#f3f3f3;
  padding: 8px 16px 6px;
  line-height: 1.3em;
}
.c-modal__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: var(--color-White);
  display: block;
  padding-bottom: 4rem;
  max-height: 100vh;
  overflow-y: scroll;
}
.c-modal__contents {
  padding-left: 10px;
  padding-right: 10px;
}
.c-modal__content {
  padding-top: 15px;
  padding-bottom: 23px;
}
.c-layer.is-open {
  z-index: 100;
  opacity: 1;
  visibility: visible;
}
.c-layer.is-open .c-modal{
  z-index: 110;
  opacity: 1;
  visibility: visible;
}
.c-layer.is-open .c-modal-close-bc {
  position: absolute;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
}
/* モーダルコンテンツPC */
@media (min-width: 40em) {
  .c-modal {
    width: 80%;
    height: auto;
    min-width: 440px;
  }
  .c-modal-title {
    padding: 8px 16px 6px;
    margin-top: 125px;
  }
  .c-modal-footer {
    position: relative;
  }
  .c-modal__inner {
    padding: 0;
    height: auto;
    min-height: 200px;
    max-height: 55vh;
  }
}

/* スマホ全画面表示 */
.c-spfulwidth {
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
@media (min-width: 40em) {
  .c-spfulwidth {
    margin-right: 0;
    margin-left: 0;
  }
}
/* アコーディオン */
.c-accordion__open {
  width: 0.75rem;
  height: 0.75rem;
  border-style: solid;
  border-color: var(--color-main2);
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s ease;
}
.c-accordion__open.is-open {
  transform: translateY(-50%) rotate(225deg);
}
/* 見出し */
/*--- 見出し ---*/
/* 見出し1 */
/*h1.elementor-heading-title,
.c-heading1 {
}
@media (min-width: 40em) {
  h1.elementor-heading-title,
  .c-heading1 {
  }
}*/

/* 見出し1 */
h1.elementor-heading-title,
.c-heading1 {
  border-bottom: 2px solid var(--color-main2);
  color: #333333;
  font-size: 1.25rem;
  padding: 0.25rem 0.25rem 0.25rem 0;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media (min-width: 40em) {
  h2.elementor-heading-title,
  .c-heading1 {
    margin-bottom: 2rem;
  }
}

/* 見出し2 */
/* h2.elementor-heading-title,
.c-heading2 {
  border-bottom: 2px solid var(--color-main2);
  color: #333333;
  font-size: 1.25rem;
  padding: 0.25rem 0.25rem 0.25rem 0;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media (min-width: 40em) {
  h2.elementor-heading-title,
  .c-heading2 {
    margin-bottom: 2rem;
  }
} */

/* 見出し3 */
/*h1.elementor-heading-title,
.c-heading4 {
}
@media (min-width: 40em) {
  h3.elementor-heading-title,
  .c-heading3 {
  }
}*/

/* 見出し4 */
/*h1.elementor-heading-title,
.c-heading4 {
}
@media (min-width: 40em) {
  h4.elementor-heading-title,
  .c-heading4 {
  }
}*/