@charset "UTF-8";
/*------------title--------------*/
.page-title {
  width: 100vw;
  background: url(../img/page-title-bg.png) no-repeat;
  background-size: cover;
}
.page-title .page-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/page-title-recruit.png) no-repeat;
  background-size: 280px;
  background-position: center center;
}
.page-title .page-title-container img {
  margin-top: 160px;
  width: 56px;
  height: auto;
}
.page-title .page-title-container h2 {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 64px;
  padding-top: 16px;
}
.page-title .page-title-container p {
  color: #888;
  font-size: 16px;
  margin-bottom: 120px;
}

/*------------content--------------*/
.tabs input[type=radio] {
  display: none;
}
.tabs .tab-buttons {
  width: 100%;
  max-width: 1100px;
  display: flex;
  gap: 10px;
  margin: 0 auto;
  padding: 0 10px;
  overflow-x: auto; /* 横スクロールを有効に */
  -webkit-overflow-scrolling: touch; /* スマホでスムーズスクロール */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE, Edge */
}
.tabs .tab-buttons label {
  text-align: center;
  width: 100%;
  padding: 20px;
  cursor: none;
  transition: 0.3s;
  border: 1px solid #ccc;
  border-bottom: none;
  white-space: nowrap;
}
.tabs .tab-buttons label:hover {
  background: #ddd;
}
.tabs .tab-contents {
  border-top: 3px solid #333;
}
.tabs .tab-contents .tab-content {
  display: none;
  padding: 20px;
  /* border: 1px solid #ddd;
  border-radius: 4px; */
}
.tabs #tab1:checked ~ .tab-contents #content1,
.tabs #tab2:checked ~ .tab-contents #content2,
.tabs #tab3:checked ~ .tab-contents #content3,
.tabs #tab4:checked ~ .tab-contents #content4 {
  display: block;
}
.tabs #tab1:checked ~ .tab-buttons label[for=tab1],
.tabs #tab2:checked ~ .tab-buttons label[for=tab2],
.tabs #tab3:checked ~ .tab-buttons label[for=tab3],
.tabs #tab4:checked ~ .tab-buttons label[for=tab4] {
  background: #333;
  color: #eee;
}

#content1 .job-text {
  width: 100%;
  max-width: 1100px;
  margin: 80px auto;
}
#content1 .job-card {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
  border: 1px solid #aaa;
  /* 開閉：チェックで本文を表示、矢印を反転 */
  /* 開 */
}
#content1 .job-card:last-of-type {
  margin-bottom: 120px;
}
#content1 .job-card > input[type=checkbox] {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  padding: 0;
}
#content1 .job-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #333;
  color: #eee;
  padding: 46px 36px;
  cursor: none;
  /* 矢印 */
}
#content1 .job-card .card-header .card-header-text {
  display: flex;
  flex-direction: column;
}
#content1 .job-card .card-header .card-header-text .no {
  font-size: 12px;
  color: #666;
}
#content1 .job-card .card-header .card-header-text .title-en {
  font-size: 36px;
  line-height: 46px;
}
#content1 .job-card .card-header .chevron {
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  /* 閉 */
  transition: transform 0.2s ease;
}
#content1 .job-card .card-header-con {
  background: #82A2DB;
  padding: 36px;
}
#content1 .job-card .card-header-con .title-con {
  font-size: 24px;
}
#content1 .job-card .card-body {
  padding: 0;
}
#content1 .job-card .card-body .spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-top: 1px solid #aaa;
}
#content1 .job-card .card-body .spec-row:first-of-type {
  border-top: 0;
}
#content1 .job-card .card-body .spec-row .spec-head {
  background: #ddd;
  padding: 14px 16px;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content1 .job-card .card-body .spec-row .spec-body ul {
  margin: 0;
  padding: 24px 20px;
  border-bottom: 1px dotted #ccc;
}
#content1 .job-card .card-body .spec-row .spec-body ul:last-child {
  border-bottom: none;
}
#content1 .job-card .card-body .spec-row .spec-body ul li {
  padding: 2px 0;
}
#content1 .job-card .card-body .spec-row .spec-body ul li .tag {
  display: inline;
  margin: 24px 0;
  padding: 2px 10px;
  border: solid 1px #aaa;
  border-radius: 4px;
  font-size: 12px;
}
#content1 .job-card .card-body .spec-row .spec-body ul li .spec-text {
  position: relative;
  padding-left: 24px;
  margin-bottom: -8px;
}
#content1 .job-card .card-body .spec-row .spec-body ul li .spec-text span {
  font-weight: 600;
  margin-bottom: -8px;
  /* color: $blue; */
}
#content1 .job-card .card-body .spec-row .spec-body ul li .spec-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 10px;
  height: 1px;
  background: #ccc;
}
#content1 .job-card .card-body .spec-row .spec-body .mt {
  margin-top: 10px;
}
#content1 .job-card > input[type=checkbox]:checked ~ .card-body {
  display: block;
}
#content1 .job-card > input[type=checkbox] ~ .card-body {
  display: none;
}
#content1 .job-card > input[type=checkbox]:checked + .card-header .chevron {
  transform: rotate(-135deg);
}

#content2 a {
  color: #82A2DB;
  text-decoration: underline;
}
#content2 a:hover {
  color: #333;
}
#content2 .recruit-flow {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}
#content2 .recruit-flow .step {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#content2 .recruit-flow .step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #82A2DB;
  z-index: 0;
}
#content2 .recruit-flow .step:first-child::before {
  top: 50%;
}
#content2 .recruit-flow .step:last-child::before {
  height: 50%;
}
#content2 .recruit-flow .step .step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #82A2DB;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
#content2 .recruit-flow .step .step-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: 40px;
  padding: 80px 40px;
  border-top: 1px solid #aaa;
}
#content2 .recruit-flow .step .step-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-right: 20px;
  white-space: nowrap;
  min-width: 110px;
}
#content2 .recruit-flow .step .step-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}
#content2 .recruit-flow .step:last-child .step-content {
  border-bottom: 1px solid #aaa;
}
#content2 .flow-sub-text {
  text-align: center;
  margin: 40px auto 160px;
}
#content2 .flow-sub-text p {
  font-size: 12px;
}
#content2 .flow-sub-text a {
  display: inline;
}

#content3 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 120px;
}
#content3 .interview-outer .interview-container {
  margin-top: 80px;
  margin-bottom: 100px;
}
#content3 .interview-outer .interview-container .interview-title {
  display: flex;
  align-items: center;
  background: #333;
  color: #eee;
  padding: 30px;
}
#content3 .interview-outer .interview-container .interview-title img {
  width: 100%;
  max-width: 240px;
  margin-right: 40px;
}
#content3 .interview-outer .interview-container .interview-title .content-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
#content3 .interview-outer .interview-container .interview-content {
  padding: 80px 0 60px;
  border-bottom: dashed 1px #ccc;
}
#content3 .interview-outer .interview-container .interview-content .content-main {
  font-size: 20px;
  font-weight: 600;
}
#content3 .interview-outer .interview-container .interview-content .content-q {
  font-weight: 600;
  color: #aaa;
  margin-bottom: 12px;
}

/*------------form--------------*/
.contact-form {
  max-width: 1100px;
  margin: 100px auto;
  padding: 90px 170px;
  border: 1px solid #ccc;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  /* font-weight: bold; */
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  max-width: 560px;
  padding: 10px;
  margin-bottom: 40px;
  border: none;
  border-radius: 4px;
  background: #f8f8f8;
}

.contact-form textarea {
  max-width: 760px;
  height: 240px;
  resize: vertical;
}

.contact-form select {
  width: 100%;
  max-width: 560px;
  padding: 14px;
  margin-bottom: 40px;
  border: none;
  border-radius: 4px;
  background: #f8f8f8;
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* ブラウザ標準の矢印を消す */
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.file-input {
  width: 100%;
  position: relative;
  display: inline-block;
  border-bottom: 1px solid #ccc;
  padding: 30px 0;
}
.file-input p {
  font-weight: 400;
}

/* 実際のinputは非表示 */
.file-input input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: none;
}

/* 見た目用のボタン */
.file-input label {
  display: inline-block;
  padding: 8px 36px;
  background-color: #333;
  color: #eee;
  border-radius: 4px;
  cursor: none;
  font-size: 14px;
  transition: background-color 0.3s;
}

.file-input label:hover {
  background-color: #82A2DB;
  /* ホバー時の色 */
}

/* 選択中のファイル名 */
.file-name {
  margin-left: 10px;
  font-size: 14px;
  color: #333;
}

.note {
  font-size: 12px;
  color: #555;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #ccc;
}

.privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.privacy a {
  color: #82A2DB;
  text-decoration: underline;
  display: inline;
}

.contact-form .send-btn {
  display: flex;
  justify-content: center;
}
.contact-form .send-btn button {
  background: #82A2DB;
  color: #fff;
  border: none;
  padding: 16px 100px;
  font-size: 16px;
  border-radius: 100px;
  cursor: none;
}

.contact-form button:hover {
  background: #333;
}

/*----------------------------responsive--------------------------*/
@media screen and (max-width: 640px) {
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .break {
    flex-basis: 100%;
  }
  /*------------form--------------*/
  #content1 .job-card .card-body .spec-row {
    grid-template-columns: none;
  }
  #content1 .job-card .card-body .spec-row .spec-head {
    padding: 36px 16px;
  }
  #content2 .recruit-flow {
    padding: 60px 0;
  }
  #content2 .recruit-flow .step {
    border-top: 1px solid #aaa;
  }
  #content2 .recruit-flow .step::before {
    display: none;
  }
  #content2 .recruit-flow .step .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  #content2 .recruit-flow .step .step-content {
    flex-direction: column;
    align-items: flex-start;
    border: none;
    padding: 60px 10px;
    margin-left: 10px;
  }
  #content2 .recruit-flow .step .step-content h3 {
    margin-bottom: 20px;
  }
  #content2 .recruit-flow .step:last-child .step-content {
    border-bottom: none;
  }
  #content2 .recruit-flow .step:last-child {
    border-bottom: 1px solid #aaa;
  }
  #content3 .interview-outer {
    padding: 0 10px;
  }
  #content3 .interview-outer .interview-container .interview-title {
    flex-direction: column;
    padding: 30px;
  }
  #content3 .interview-outer .interview-container .interview-title p {
    font-size: 12px;
  }
  #content3 .interview-outer .interview-container .interview-title img {
    max-width: 320px;
    margin-right: 0;
  }
  #content3 .interview-outer .interview-container .interview-title .content-title {
    font-size: 20px;
    margin-top: 30px;
  }
  /*------------form--------------*/
  .contact-form {
    padding: 0 10px 90px;
    border: none;
  }
}/*# sourceMappingURL=recruit.css.map */