@charset "utf-8";
/* リクルートCSS */
.recruit-section {
  padding: 42px 0 0 13%;
}
.heading-curve {
  grid-column: 1 / -1;
  position: relative;
  margin: 83px 0 0 13%;
}
.heading-curve > span {
  position: absolute;
  left: -35px;
  top: -30px;
  width: 106px;
  height: 112px;
  background: url("../img/recruit/circle.png") no-repeat left top / contain;
  z-index: -1;
}
.heading-curve h3 {
  margin: 0;
  color: #0060a9;
  font-size: 2em;
  line-height: 1.35;
  font-weight: 700;
}
.heading-curve h3 span {
  display: block;
  font-size: 0.8em;
}
.recruit-intro__wrap {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}
.recruit-intro__txt {
  width: 47.5%;
}
.recruit-intro__photo {
  width: 47.5%;
  margin: 0;
}
.recruit-intro__photo img {
  display: block;
  width: 100%;
  height: auto;
}
.recruit-intro__photo figcaption {
  margin-top: 14px;
  font-size: 0.8em;
}
.recruit-intro__wrap .lead {
  margin: 0 0 1em;
  padding-bottom: 0.8em;
  border-bottom: 1px solid #231815;
  font-size: 1.3em;
  line-height: 1.45;
  font-weight: 700;
}
.blue-list, .white-list {
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}
.blue-list li, .white-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 24px;
  font-size: 1em;
  line-height: 1.5;
  font-weight: 700;
}
.blue-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0060a9;
}
.white-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
}
.work-band {
  display: flex;
  color: white;
  background: #005cab;
  align-items: flex-start;
  gap: 5%;
  margin-left: 70px;
}
.work-band__txt {
  padding: 30px 0 0 0;
  width: calc(100% - 160px);
}
.work-band__photo {
  margin-left: -140px;
}
.work-band h4 {
  font-size: 1.4em;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
  border-bottom: 1px solid white;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 0 30px 0 0;
}
.support-grid h4 {
  font-size: 1.3em;
}
.target-box {
  margin: 50px 30px 70px 0;
  padding: 30px 30px;
  background: #d8e3ef;
  color: #005cab;
}
.target-box h4 {
  margin: 0 0 20px;
  font-size: 1.3em;
  line-height: 1.3;
  font-weight: 700;
}
.target-box p {
  text-align: left;
  font-weight: normal;
}
.target-box dl {
  margin-top: 20px;
}
.target-box dl > div {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.target-box dt {
  flex-shrink: 0;
  min-width: 110px;
  padding: 8px 6px;
  background: #005cab;
  color: #fff;
  font-size: 1em;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.target-box dd {
  margin: 0;
  font-size: 1em;
  line-height: 1;
  font-weight: 700;
}
.target-box > p {
  font-size: 1em;
}
.manga-wrap {
  position: relative;
  max-height: 620px; /* 最初に見せる高さ */
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.manga-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 70%, #fff 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.manga-wrap.is-open {
  max-height: 3000px;
}
.manga-wrap.is-open::after {
  opacity: 0;
}
.manga-images img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.read-more {
  position: relative;
  display: block;
  padding: 0.75em 0;
  text-align: center;
  transition: opacity .3s;
  margin: 0 auto 70px;
  width: 50%;
  min-width: 200px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.read-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  border: 3px solid transparent;
  background: linear-gradient(to right, #005FA2, #22B473) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}
.read-more span {
  position: relative;
  display: inline-block;
  color: #0A0A0A;
}
.read-more::after {
  content: "↓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0071bc;
  color: #fff;
  font-size: 16px;
  margin-left: 7px;
}
.read-more.is-open::after {
  content: "↑";
}
.course-grid, .career-table, .note, .other-list, .flow-list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.course-card {
  border-radius: 6px 6px 0 0;
  background: #d8e3ef;
  color: #0060a9;
}
.course-card.is-active {
  border: 1px solid #0060a9;
  border-bottom: none;
  position: relative;
  z-index: 100;
  background: #fff;
  color: #231815;
  margin-bottom: -1px;
}
.course-card + .course-card {
  margin-left: 18px;
}
.course-card h4 {
  margin: 0;
  padding: 16px 18px;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}
.course-panel {
  display: none;
}
.course-panel.is-active {
  display: block;
}
.career-table {
  width: 100%;
  padding: 42px 55px 0;
  border: 1px solid #0060a9;
  border-bottom: none;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1em;
}
.career-table th, .career-table td {
  padding: 12px 0;
  border-bottom: 1px solid #0060a9;
  text-align: left;
}
.career-table th:nth-child(1), .career-table td:nth-child(1) {
  width: 36%;
}
.career-table th:nth-child(2), .career-table td:nth-child(2) {
  width: 38%;
}
.career-table thead th {
  color: #231815;
}
.career-table tbody th, .career-table tbody td {
  color: #231815;
}
.note {
  box-sizing: border-box;
  margin-top: 0;
  padding: 8px 55px 22px;
  border-left: 1px solid #0060a9;
  border-right: 1px solid #0060a9;
  font-size: 0.8em;
}
.other-list {
  box-sizing: border-box;
  margin-top: 0;
  padding: 24px 55px 42px;
  border-left: 1px solid #0060a9;
  border-right: 1px solid #0060a9;
  font-size: 16px;
  max-width: 800px;
}
.other-list__box {
  max-width: 480px;
  padding: 10px 18px;
  border: 1px solid #0060a9;
}
.other-list__box div {
  display: flex;
}
.other-list__box dt {
  font-weight: 700;
  width: 6em;
}
.flow-list {
  box-sizing: border-box;
  margin-top: 0;
  padding: 60px 55px 60px;
  border: 1px solid #0060a9;
  border-top: none;
  list-style: none;
  counter-reset: flow;
}
.flow-list::before {
  content: "";
  display: block;
  margin-bottom: 36px;
  border-top: 3px dotted #0060a9;
}
.flow-list h5 {
  font-size: 1.6em;
}
.flow-list h6 {
  display: inline-block;
  min-width: 110px;
  margin: 18px 0;
  padding: 6px 14px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 1em;
  line-height: 1.3;
}
.flow-list h6:first-of-type {
  background: #0060a9;
}
.flow-list li {
  margin: 0 0 0 1em;
  padding: 0;
  color: #231815;
  font-size: 1em;
  line-height: 1.6;
}
.flow-list li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px 0 -1em;
  border-radius: 50%;
  background: #0060a9;
  vertical-align: .05em;
}
.flow-list li {
  white-space: normal;
}
.entry-section {
  min-height: 600px;
  margin: 70px 0 0 0;
  padding: 42px 0 0 13%;
  background: transparent url("../img/recruit/bg2.webp") center center / cover no-repeat;
  color: #fff;
}
.entry-section__inner h2 {
  font-size: 1.8em;
  margin-bottom: 1em;
}
.entry-section__inner h3 {
  font-size: 1.3em;
  margin-bottom: 1em;
}
.entry-button {
  display: inline-block;
  color: white;
  background: #23b473;
  font-size: 1.3em;
  font-weight: bold;
  padding: 0 3em;
  margin: 0 0 70px 0;
}
/* SP */
@media screen and (max-width: 767px) {
  .recruit-section {
    padding: 15px;
  }
  .heading-curve {
    padding: 30px 15px 0 30px;
    margin: 50px 0 30px 15px;
  }
  .heading-curve > span {
    left: 0px;
    top: 0px;
    width: 90px;
    height: 100px;
  }
  .heading-curve h3 {
    font-size: 1.4em;
    margin: 0;
  }
  .heading-curve h3 span {
    font-size: 0.8em;
  }
  .lead {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .blue-list li {
    font-size: 18px;
  }
  .recruit-intro__wrap {
    display: block;
  }
  .recruit-intro__txt, .recruit-intro__photo {
    width: 100%;
  }
  .recruit-intro__photo {
    margin-top: 70px;
  }
  .recruit-intro__photo figcaption {
    font-size: 14px;
  }
  .work-band {
    flex-direction: column-reverse;
    gap: 5%;
    margin: 0 0 70px;
    padding: 30px;
  }
  .work-band__txt {
    width: 100%;
    padding-top: 0;
  }
  .work-band__photo {
    width: 100%;
    margin: 0 auto -140px;
    text-align: center;
  }
  .support-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-right: 0;
  }
  .support-grid h4 {
    font-size: 1.2em;
  }
  .manga-section p {
    margin: 0;
  }
  .target-box {
    margin: 15px 0 0 0;
  }
  .course-card h4 {
    font-size: 1em;
    padding: 16px 12px;
  }
  .read-more {
    margin-bottom: 0;
  }
  .career-table, .other-list, .flow-list {
    padding-left: 30px;
    padding-right: 30px;
  }
  .flow-list {
    padding-top: 0;
  }
  .entry-section {
    padding: 30px;
  }
  .entry-section__inner h2 {
    font-size: 1.4em;
  }
  .entry-button {
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
  }
}
@media print {
  @page {
    margin: 12mm;
  }

  html,
  body {
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  body {
    overflow-x: visible !important;
    overflow-y: visible !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .container {
    position: static !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
  }

  header,
  footer,
  #btn-to-top,
  .hamburger,
  #menu-btn,
  .header__nav,
  .header__lang {
    display: none !important;
  }

  main {
    display: block !important;
    position: static !important;
    z-index: auto !important;
    margin-left: 0 !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .title,
  .service__head-newgraduate,
  .recruit-section,
  .heading-curve,
  .entry-section {
    margin-left: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .manga-wrap {
    max-height: none !important;
    overflow: visible !important;
  }

  .manga-wrap::after,
  .read-more {
    display: none !important;
  }

  .course-panel {
    display: block !important;
  }

  .course-panel:not(.is-active) {
    display: none !important;
  }
}