@charset "UTF-8";
/*-----------------------------------

	message

-----------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}
.message {
  padding: 60px 0;
}
.message .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.message .flex .text {
  width: min(58%, 680px);
}
.message .flex .img-container {
  width: min(38%, 580px);
}
.message h3 {
  font-size: 3.4rem;
  margin: 20px 0 0 auto;
  padding-bottom: 10px;
  border-bottom: 2px solid #b49342;
}
.message .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.message .img-container img {
  width: 50%;
  aspect-ratio: 29/15;
  object-fit: cover;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .message .flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .message .flex .text {
    width: 100%;
    margin-bottom: 20px;
  }
  .message .flex .img-container {
    width: 100%;
  }
  .message h3 {
    margin-bottom: 20px;
    margin-top: 0;
  }
}
@media screen and (max-width: 740px) {
  .message {
    padding: 30px 0;
  }
  .message h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b49342;
  }
}
.recruitmenttype {
  padding: 60px 0;
  text-align: center;
}
.recruitmenttype h3 {
  font-size: 3.6rem;
  margin-bottom: 20px;
}
.recruit-accordion {
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area li .box {
  background: #fff;
  text-align: left;
  padding: 60px 90px;
}
.accordion-area li .box table {
  width: 100%;
}
.accordion-area section {
  border: 1px solid #f2f2f2;
}
.accordion-area .title {
  position: relative;
  cursor: pointer;
  font-size: 2.1rem;
  transition: all 0.5s ease;
  background-color: #66924f;
  color: #fff;
  text-align: left;
  line-height: 62px;
  padding: 0 50px;
}
.accordion-area .title::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 12px;
  background: url(../img/recruit/arrow-white.svg) no-repeat;
  display: block;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  background-size: contain;
}
.accordion-area .title.close::after {
  transform: translateY(-50%) rotate(0deg);
}
.accordion-area th,
.accordion-area td {
  padding: 1rem 3rem;
}
.accordion-area th {
  width: 35%;
  border-bottom: 1px solid #645551;
}
.accordion-area td {
  width: 65%;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 740px) {
  .recruitmenttype {
    padding: 30px 0;
    text-align: center;
  }
  .recruitmenttype h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .recruit-accordion {
    margin-top: 30px;
  }
  .accordion-area li .box {
    padding: 15px 2.5%;
  }
  .accordion-area .title {
    position: relative;
    cursor: pointer;
    font-size: 1.6rem;
    transition: all 0.5s ease;
    background-color: #66924f;
    color: #fff;
    text-align: left;
    line-height: 34px;
    padding-left: calc(10px + 2.5%);
  }
  .accordion-area .title::after {
    position: absolute;
    content: "";
    width: 0.8em;
    height: 0.8em;
    background: url(../img/recruit/arrow-white.svg) no-repeat;
    display: block;
    right: 2rem;
    top: 50%;
    background-position: center;
    background-size: contain;
  }
  .accordion-area li tr {
    display: block;
  }
  .accordion-area th {
    background-color: rgba(102, 146, 79, 0.1);
  }
  .accordion-area th,
  .accordion-area td {
    padding: 1rem 1rem;
  }
  .accordion-area th {
    width: 100%;
    border-bottom: none;
    display: block;
  }
  .accordion-area td {
    width: 100%;
    border-bottom: none;
    display: block;
  }
}
.voice {
  padding: 60px 0;
  text-align: center;
}
.voice h3 {
  font-size: 3.6rem;
  margin-bottom: 20px;
}
.recruit-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 60px auto 0;
}
.tab_item {
  width: calc((100% - 5px * 2) / 2);
  line-height: 62px;
  text-align: center;
  transition: all 0.3s ease;
  background: #f2f2f2;
  color: #707070;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  padding: 60px 40px;
  overflow: hidden;
  width: 100%;
  margin-top: 5px;
  background-color: #fff;
  border: 2px solid #e46161;
  transition: all 0.5s ease;
}
#staff01:checked ~ #staff01_content,
#staff02:checked ~ #staff02_content,
#staff03:checked ~ #staff03_content {
  display: block;
}
input:checked + .tab_item {
  background-color: #fff;
  color: #645551;
  border: 2px solid #e46161;
}
.tab-content_inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.tab-content01 h4 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.tab-content01 .img-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  padding-top: calc(360 / 316 * 100%);
}
.tab-content01 .img-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
}
.tab-content02 {
  margin-bottom: 20px;
}
.tab-content02 dl {
  margin-bottom: 15px;
}
.tab-content02 dt {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.tab-content02 dt::before {
  content: "";
  background: #e46161;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  color: #fff;
  letter-spacing: 0.03em;
  text-align: center;
  vertical-align: bottom;
  display: inline-block;
  margin-right: 0.3em;
  font-size: 0.8em;
  line-height: 2em;
}
.tab-content02 dl:first-child dt::before {
  content: "Q1";
}
.tab-content02 dl:nth-child(2) dt::before {
  content: "Q2";
}
.tab-content02 dl:nth-child(3) dt::before {
  content: "Q3";
}
.tab-content03 h4 {
  color: #fff;
  background: #645551;
  padding: 12px 13px;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}
.content-box {
  width: calc(100% / 2);
}
.content-box:not(:last-child) {
  margin-right: 40px;
}
.schedule {
  display: flex;
  flex-wrap: wrap;
}
.schedule dt {
  width: 35%;
  border-bottom: 1px solid #645551;
  padding: 5px;
}
.schedule dd {
  width: 65%;
  border-bottom: 1px solid #645551;
  padding: 5px;
}
@media screen and (max-width: 980px) {
  .schedule {
    display: block;
    text-align: center;
  }
  .schedule dt {
    width: 100%;
    padding: 8px 5px 5px;
    background-color: rgba(100, 85, 81, 0.1);
    border-bottom: none;
  }
  .schedule dd {
    width: 100%;
    padding: 8px 5px 5px;
    border-bottom: none;
  }
}
@media screen and (max-width: 740px) {
  .voice {
    padding: 30px 0;
    text-align: center;
  }
  .voice h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .recruit-tab {
    margin: 30px auto 0;
  }
  .tab_item {
    width: calc((100% - 5px * 2) / 3);
    line-height: 1.2;
    font-size: 1.2rem;
    padding: 7px 0 5px;
  }
  .tab_content {
    padding: 15px 2.5%;
  }
  .tab-content_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
  .tab-content01 .intro {
    text-align: center;
  }
  .tab-content01 h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #645551;
  }
  .tab-content01 .img-wrapper {
    width: min(400px, 98%);
    position: relative;
    padding-top: calc(316 / 360 * 100%);
    margin: 0 auto 20px;
  }
  .tab-content02 dl {
    margin-bottom: 15px;
  }
  .tab-content02 dt {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .tab-content03 h4 {
    color: #fff;
    background: #645551;
    padding: 10px;
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
  }
  .schedule {
    display: block;
    text-align: center;
  }
  .schedule dt {
    width: 100%;
    padding: 8px 5px 5px;
    background-color: rgba(100, 85, 81, 0.1);
    border-bottom: none;
  }
  .schedule dd {
    width: 100%;
    padding: 8px 5px 5px;
    border-bottom: none;
  }
  .content-box {
    width: 100%;
    margin-right: 0px;
  }
  .content-box:not(:last-child) {
    margin-right: 0;
  }
}
.flow {
  text-align: center;
  padding: 60px 0;
}
.flow h3 {
  font-size: 3.6rem;
  margin-bottom: 20px;
}
.step-contents__list {
  margin-top: 60px;
}
.step_item:not(:last-child) {
  position: relative;
  margin-bottom: 60px;
}
.step_item:not(:last-child):after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50px 0 50px;
  border-color: #ffe88c transparent transparent transparent;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.step-contents__list h4 {
  width: 100%;
  line-height: 62px;
  color: #fff;
  font-size: 3.6rem;
  margin-bottom: 20px;
}
.step-contents__list .step_item:first-child h4 {
  background-color: #a5c5d6;
}
.step-contents__list .step_item:nth-child(2) h4 {
  background: #2999c4;
}
.step-contents__list .step_item:nth-child(3) h4 {
  background: #144e94;
}
.step_item dl {
  text-align: left;
  padding: 20px 40px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #f2f2f2;
}
.step_item dt {
  font-size: 1.8rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #707070;
}
.step_item dt span {
  padding: 0 10px;
}
@media screen and (max-width: 740px) {
  .flow {
    text-align: center;
    padding: 30px 0;
  }
  .flow h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .step-contents__list {
    margin-top: 30px;
  }
  .step_item:not(:last-child) {
    position: relative;
    margin-bottom: 40px;
  }
  .step_item:not(:last-child):after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 60px 0 60px;
    border-color: #ffe88c transparent transparent transparent;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .step-contents__list h4 {
    width: 100%;
    line-height: 34px;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .step_item dl {
    text-align: left;
    padding: 20px 20px;
    background: #fff;
    border-radius: 15px;
  }
  .step_item dt {
    font-size: 1.6rem;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #707070;
  }
  .step_item dt span {
    padding: 0 10px;
  }
}
