@charset "UTF-8";
body {
  font-size: 16px;
  line-height: 1.6;
  color: black;
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 450px) {
  body {
    line-height: 1.4;
  }
}




@media (max-width: 450px) {
  .button_koshiki {
    font-size: 14px;
}
}




:root {
  --main-color: #237a93;
  --sub-main-color: #e8f6f9;
  --text-color: #000000;
}

.header-wrapper{
  background-color: var(--sub-main-color);
}


.header_logo{
  padding: 8px;
  width: 150px;
  background-color: var(--sub-main-color);
}

@media (min-width: 1100px) {
  .header_logo{
    width: 200px;
    padding: 8px;
  }
}




/* 入力フォーム */
.top-kv{
  font-weight: bold;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  gap: 8px;
}

.mini{
  font-size: 14px;
}

.kv1{
  text-align: center;
  margin-bottom: 8px;
}

.kv2{
  font-size: 20px;
}

.high{
  font-size: 52px;
  color: var(--main-color);
  font-weight: bold;
}

.eyecatch-container {
  position: relative;
}

.eyecatch-box {
  width: 100%;
}

.eyecatch-img-PC {
  width: 100%;
  height: auto;
  display: block;
}



@media (min-width: 1100px) {
  .eyecatch-img-PC {
    display: block;
  }
}

.container_2 {
  background-color: #ffffff;
  padding: 30px 30px 60px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

@media (min-width: 1100px) {
  .eyecatch-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .container_2 {
    width: 30%;
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8); /* 背景色を半透明に */
    border-radius: 10px; /* 角を丸くする */
  }
}

.progress-container {
  background-color: var(--main-color); /* ピンク色の背景 */
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  font-family: Arial, sans-serif;
}

.progress-label {
  font-weight: bold;
  margin-right: 10px;
}

.progress-numbers {
  display: flex;
  margin-right: auto;
}

.form-step {
  width: 25px;
  height: 25px;
  background-color: #c62828; /* より濃いピンク色 */
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  font-weight: bold;
}

.form-step.active {
  background-color: white;
  color: var(--main-color);
}



h2 {
  margin-top: 16px;
  font-size: 18px;
  /* text-align: center; */
  font-weight: bold;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}


.option {
  flex: 1 0 calc(50% - 10px);
  padding: 15px;
  background-color: #f0f0f0;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}
.option:hover {
  background-color: #e0e0e0;
}
.option.selected {
  background-color: var(--main-color);
  color: white;
}
.input-group {
  margin-bottom: 20px;
}
.input-group-1{
  margin-top: 24px;
  
}


label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
input, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}



.button-container {
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
  text-align: center;
}

.button-container-2 {
  margin-top: 0px;
  text-align: center;
}


.next-button, .back-button {
  background-color: #3FA4A2;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
}
.next-button:hover, .back-button:hover {
  background-color: #3FA4A2;
}
.back-button {
  background-color: #ccc;
}
.back-button:hover {
  background-color: #bbb;
}
.step-content {
  display: none;
}
.step-content.active {
  display: block;
}


input::placeholder {
  color: #999;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 50%;
}

.step1-button {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.step1-button .next-button {
  width: 80%;
  max-width: 300px;
  padding: 15px 0;
  font-size: 18px;
}

.progress-container {
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 5px;
  color: white;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
}

.progress-label {
  font-weight: bold;
  margin-right: 12px;
  font-size: 16px;
}

.progress-numbers {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0 10px;
}

.form-step {
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
}

.form-step.active {
  background-color: white;
  color: var(--main-color);
}


/* 以下内容 */


.container {
  margin: 0 auto;
  padding: 64px 16px;
}

@media (min-width: 768px) {
  .container {
    /* background-color: #f7f7f7; */
    background-color: #f0f3f8;
  }
}




.main-title {
  text-align: center;
  background-color: var(--sub-main-color);
  font-size: 24px;
  padding: 24px 0 24px 0;
  width: 100%;
  font-weight: bold;
  color: var(--main-color);
}



.reason {
  margin-top: 20px;
  max-width: 1120px;
  margin: 0 auto;
  margin-bottom: 32px;
  background-color: #fff;
}

.image-container {
  text-align: center;
}

.reason-image {
  width: 100%;
  height: auto;
}

.text-container {
  padding: 40px 0;
}

.reason-title {
  color: var(--text-color);
  font-weight: bold;
  font-size: 32px;
  text-align: left;
}

.reason-title .highlight {
  color: var(--main-color);
}

.number {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 42px;
  color: var(--main-color);
}

.reason-subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
  margin-top: 32px;
}

.highlighted {
  color: var(--main-color);
}


.reason-description {
  font-size: 16px;
  /* line-height: 1.5; */
  margin-top: 16px;
}



.support-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;

}

.cta-button {
  background-color: #3DA49A;
  color: #fff;
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #339489;
}



.highlight {
  color: var(--main-color);
  font-weight: bold;
}



.flow {
  display: flex;
  align-items: flex-start;
  padding: 20px 10px;
  gap: 16px;
  text-align-last: left;
}

.flow:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}

.flow-number {
  width: 60px; /* 画像の幅に合わせて調整 */
  height: 60px; /* 画像の高さに合わせて調整 */
}

.flow-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 画像のアスペクト比を保持 */
}

.flow-content {
  flex: 1;
}

.flow-title {
  /* font-size: 16px; */
  font-weight: bold;
  color: var(--main-color);
}

.flow-description {
  font-size: 14px;
  color: #666;
  margin: 5px 0 0;
}


.container.color {
  background-color: var(--sub-main-color);
   padding: 0px 16px 104px;
}

.container-inner{
  background-color: white;
  border-radius: 30px;
  padding: 16px 0;
}

@media (min-width: 768px) {
  .container-inner{
    padding: 16px 24px;
  }
}

.ques-colar{
  background-color: #f0f3f8;
  padding: 0 16px 64px 16px;
}



.ques-title{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  color: var(--main-color);
}

.main-title.ques-title{
  background-color: #f0f3f8;
}

.question-container {
  background-color: #f0f3f8;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}


.question-container:not(:first-child){
  margin-bottom: 40px;
}

.question-header {
  background-color: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  cursor: pointer;
}

.question-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  text-align-last: left;
}

.question-icon {
  font-size: 18px;
}

.answer-container {
  display: none;
  padding: 20px;
  background-color: #f5f5f5;
  position: relative;
}

.answer-text {
  margin: 0;
  line-height: 1.6;
}

.answer-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
}


.question-container.active .answer-container {
  display: block;
}

.item {
  display: flex;
  gap:8px;
  align-items: center;
  padding: 20px;
}

.item:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}

.item-ttl {
  width: 100px; /* 必要に応じて調整 */
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.item-text {
  flex: 1;
  font-size: 14px;
  margin: 0;
}



/* レスポンシブ化 */
@media (min-width: 768px) {

  .reason {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .image-container {
    order: 2;
    flex: 1;
  }

  .text-container {
    order: 1;
    flex: 1;
  }

  .reason:nth-child(even) .image-container {
    order: 1;
  }

  .reason:nth-child(even) .text-container {
    order: 2;
  }

  .reason-image {
    max-width: 100%;
    height: auto;
  }

  .number {
    text-align: left;
    font-size: 36px;
  }

  .reason-title {
    font-size: 28px;
  }

  .reason-subtitle {
    font-size: 20px;
  }

  .reason-description {
    font-size: 16px;
  }

  .cta-button {
    font-size: 20px;
    padding: 15px 30px;
    font-weight: bold;
  }
  
  .container.color {
    background-color: var(--sub-main-color);
    padding: 8px 16px 40px;
  }

}

@media (min-width: 1024px) {
  body {
    font-size: 18px;
    
  }

  .main-title {
    font-size: 32px;
    padding: 20px 0;
  }

  .number {
    font-size: 42px;
  }

  .reason-title {
    font-size: 32px;
  }

  .reason-subtitle {
    font-size: 22px;
  }

  .reason-description {
    font-size: 18px;
  }


  .container.color {
    background-color: var(--sub-main-color);
    padding: 0px 16px 64px;
  }

  .container-inner{
    max-width: 800px;
    margin: 0 auto;
  }
}

.color-inner{
  background-color: var(--sub-main-color);
}

#result {
    margin-top: 20px;
    padding: 10px;
    background-color: #e8f0fe;
    border: 1px solid #b8d4fe;
    border-radius: 4px;
}

.thanks-container{
  background-color: var(--sub-main-color);
  height: 100vh;
  padding: 104px 16px;
}
.thanks-ttl{
  color: var(--main-color);
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.thanks-txt{
  color: var(--main-color);
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-top: 16px;
}
.check-img-box{
  max-width: 80px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 500px) {
  .thanks-ttl{
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 8px;
  }
  .thanks-txt{
    color: var(--main-color);
    text-align: center;
    font-size: 16px;
  }
}


/* 実際の求人例 */
.job-color-wrapper{
  background-color: #d1eefd;
  padding: 64px 16px;
  }


.job-container{
  margin: 0 auto;
  padding: 0 0 40px 0;
}



@media (min-width: 1000px) {
  .job-container{
    max-width: 1125px;
    display: flex;
    justify-content: space-between;
  }
}

.job-listings {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.job-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  padding: 20px;
  width: calc(33.333% - 20px);
}


.job-tags {
  margin-bottom: 10px;
}
.job-tag {
  background-color: white;
  color: #e60012;
  border: 1px solid #e60012;
  border-radius: 15px;
  display: inline-block;
  font-size: 0.8em;
  margin-right: 10px;
  /* margin-bottom: 6px; */
  padding: 5px 10px;
}
.job-title {
  color: #003366;
  margin-top: 0;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #003366;
  height: 55px;
  display: flex;
  align-items: center;
  font-size: 21px;
}
.job-workplace {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 15px;
  height: 40px;
}
.job-description-title {
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #003366;
}
.job-duties {
  padding-left: 20px;
  margin-top: 5px;
  color: #333;
  height: 150px;
}
@media (max-width: 1000px) {
  .job-duties {
    height: 100px;
  }
}
@media (max-width: 600px) {
  .job-duties {
    height: 110px;
  }
}
@media (max-width: 450px) {
  .job-duties {
    height: 100px;
  }
}
.job-duty {
  margin-bottom: 5px;
}
.job-salary {
  background-color: #003366;
  color: white;
  padding: 10px;
  border-radius: 4px;
  height: 80px; /* 固定の高さを設定 */
  text-align: center;
}

.job-salary-label {
  font-size: 0.8em;
  margin: 0;
}
.job-salary-amount {
  font-size: 1em;
  font-weight: bold;
  margin: 0;
}
.job-salary-number {
  font-size: 1.5em;
}
@media (max-width: 1000px) {
  .job-card {
      width: 100%;
  }
}