@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/monte-stella-trial");
.tab-images {
  margin: 100px 0;
}
.tab-images .tab-btn {
  margin-bottom: 30px;
  width: 550px;
  max-width: 90%;
  display: block;
}
.tab-images .tab-btn:nth-child(2) {
  margin-left: 50px;
}

.tab-contents {
  background: white;
  margin: 0 auto;
  width: 1200px;
  padding: 70px 5%;
  border-radius: 15px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}
.tab-contents h2 {
  text-align: center;
  color: #0a3b5d;
  font-size: 35px;
}
.tab-contents table {
  margin: 50px 0;
  border-top: solid 1px #adddff;
}
.tab-contents table tr {
  display: flex;
  border-bottom: solid 1px #adddff;
  padding: 30px 0;
}
.tab-contents table th,
.tab-contents table td {
  display: block;
}
.tab-contents table th {
  padding: 50px 0px;
  min-width: 200px;
  background: #106eb0;
  border-radius: 10px;
}
.tab-contents table th .bg {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  justify-content: center;
  border-radius: 10px;
}
.tab-contents table th .bg .th {
  color: white;
}
.tab-contents table td {
  padding-left: 50px;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.tab-contents table td ul {
  padding-left: 18px;
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

.faq {
  padding-bottom: 150px;
}
.faq .content_box {
  margin: 100px auto;
}
.faq .title_en {
  margin-bottom: 80px;
}
.faq .title_en span img {
  transform: translate(-20%, 0);
}
.faq ul li {
  list-style: none;
}

details {
  width: 100%;
}
details img {
  width: 50px;
}
details p {
  font-weight: 400;
  font-size: 16px;
  padding: 40px calc(20px + 4%);
  padding-top: 10px;
}
details p span {
  color: #cf111b;
}

details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

details summary::-webkit-details-marker {
  display: none;
}

.text-box {
  background: white;
  margin-bottom: 30px;
  padding: 0 0 0 2.5%;
  border-radius: 10px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

.q-box,
.a-box {
  margin: 0px 10px;
  line-height: 100%;
  font-size: 24px;
}
.q-box img,
.a-box img {
  padding: 10px;
  padding-right: 20px;
}

.q-box {
  margin: 20px 10px;
}

.a_block {
  display: flex;
  position: relative;
  padding: 20px 0 20px 0;
}

.d-title {
  position: relative;
  padding-left: 10px;
  max-width: calc(100% - 30px);
  width: 100%;
  padding: 0px 20px;
  padding-right: 60px;
}

.a-text {
  padding: 20px 20px;
}

details summary .d-title::after {
  position: absolute;
  content: "+";
  background-repeat: no-repeat;
  background-size: contain;
  font-weight: 400;
  margin-left: 20px;
  color: #0a3b5d;
  right: calc(4% + 20px);
  top: 50%;
  font-size: 20px;
  transform: translate(0%, -50%);
}

/**
   * アコーディオンがオープン時はマイナスアイコンに変更
  **/
details[open] summary .d-title::after {
  content: "−";
}

.recruit_btn .contact-block {
  width: 960px;
  margin: 100px auto;
}
.recruit_btn .contact-block .contact_text .title {
  font-size: 24px;
  margin: 10px 0;
  margin-bottom: 30px;
}
.recruit_btn .contact-block .contact_text .arrow_flex {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.recruit_btn .contact-block .contact_text .arrow {
  position: static;
  border: none;
  width: 20px;
  height: 20px;
  transform: none;
}

.bg_img2 {
  background-image: url("../../src/recruit/bg.webp");
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: top 90% center;
}

@media screen and (max-width: 1024px) {
  .tab-images {
    margin: 72px 0;
  }
  .tab-images .tab-btn {
    width: min(480px, 100%);
  }
  .tab-images .tab-btn:nth-child(2) {
    margin-left: 24px;
  }
  .tab-contents {
    width: auto;
    max-width: calc(100% - 40px);
    padding: 44px 5%;
  }
  .tab-contents table tr {
    display: block;
    padding: 22px 0;
  }
  .tab-contents table th {
    width: 220px;
    max-width: 100%;
    min-width: 0;
    padding: 18px 0;
  }
  .tab-contents table td {
    display: block;
    padding: 18px 0 0;
    font-size: 16px;
  }
  .recruit_btn .contact-block {
    width: auto;
    max-width: calc(100% - 40px);
  }
  .bg_img2 {
    background-size: cover;
    background-position: top center;
  }
}
@media screen and (max-width: 767px) {
  .tab-images {
    margin: 40px 0 24px;
  }
  .tab-images .tab-btn {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }
  .tab-images .tab-btn:nth-child(2) {
    margin-left: 0;
  }
  .tab-contents {
    max-width: calc(100% - 32px);
    padding: 28px 16px;
  }
  .tab-contents h2 {
    font-size: 26px;
  }
  .tab-contents table {
    margin: 30px 0;
  }
  .tab-contents table tr {
    padding: 18px 0;
  }
  .tab-contents table th {
    width: 100%;
    padding: 14px 0;
  }
  .tab-contents table th .bg {
    font-size: 18px;
  }
  .tab-contents table td {
    font-size: 15px;
    line-height: 1.8;
  }
  .faq {
    padding-bottom: 80px;
  }
  .faq .content_box {
    margin: 56px auto;
  }
  .faq .title_en {
    font-size: 40px;
    margin-top: 50px;
  }
  .faq .title_en span img {
    height: 80px;
  }
  details img {
    width: 40px;
  }
  details p {
    font-size: 14px;
    padding: 24px 16px 0;
  }
  .text-box {
    padding-left: 0;
  }
  .q-box,
  .a-box {
    font-size: 18px;
  }
  .q-box img,
  .a-box img {
    padding-right: 12px;
  }
  .a_block {
    padding: 12px 0;
  }
  .d-title {
    padding: 0 14px 0 8px;
    padding-right: 44px;
  }
  details summary .d-title::after {
    right: 16px;
  }
  .a-text {
    padding: 12px 14px 18px;
  }
  .recruit_btn .contact-block {
    max-width: calc(100% - 32px);
    margin: 60px auto;
  }
}/*# sourceMappingURL=recruit.css.map */