@charset "UTF-8";
/* CSS Document */
.hero {
  width: 86%;
  margin: 0rem auto 5rem; }
  .hero p.pankuzu {
    font-size: 10px;
    text-align: right; }
  .hero h1 {
    max-width: 1400px;
    font-size: clamp(40px, 4vw, 70px);
    color: #133284;
    line-height: 1.7;
    font-weight: 700;
    margin: 4rem auto 5rem;
    width: 90%; }
    .hero h1 span {
      font-size: clamp(14px, 1.25rem, 20px);
      display: block;
      font-weight: 300; }

.inner-link-area {
  width: 100%;
  color: #133284; }
  .inner-link-area .tab {
    margin-left: 8rem;
    display: inline-block;
    background-color: #e7ecf8;
    padding: 0.25rem 3rem;
    font-size: clamp(10px, 0.85rem, 16px); }
    .inner-link-area .tab::after {
      content: "";
      width: 6px;
      display: inline-block;
      height: 6px;
      margin-left: 10px;
      border-right: 1.5px solid #133284;
      border-bottom: 1.5px solid #133284;
      transform: rotate(45deg) translateY(-2px);
      transition: transform .3s ease; }
  .inner-link-area .link-area {
    background-color: #e7ecf8;
    padding: 1rem 5%;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    gap: 8px 62px;
    flex-wrap: wrap; }
    .inner-link-area .link-area li {
      position: relative;
      font-size: clamp(10px, 0.85rem, 16px);
      font-weight: 300;
      white-space: nowrap; }
      .inner-link-area .link-area li::after {
        content: ">";
        position: absolute;
        right: -14px;
        top: 45%;
        transform: translateY(-50%);
        line-height: 1;
        font-size: 14px;
        transition: transform .3s ease, opacity .3s ease;
        opacity: .7; }

.link-area-sidebar {
  position: fixed;
  top: 50%;
  top: 50svh;
  right: 0;
  left: auto;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 10px 12px;
  max-width: 200px;
  width: auto;
  box-sizing: border-box;
  background: rgba(237, 237, 237, 0.77);
  border-radius: 8px 0 0 8px;
  box-shadow: -8px 0px 26px -13px #c7c7c7;
  opacity: 0;
  visibility: hidden;
  transform: translate(40px, -50%);
  transition: transform .35s ease, opacity .35s ease, visibility 0s linear .35s; }
  .link-area-sidebar.is-show {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
    transition: transform .35s ease, opacity .35s ease, visibility 0s linear 0s; }
  .link-area-sidebar.no-transition {
    transition: none !important; }
  .link-area-sidebar.is-collapsed {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate(40px, -50%) !important;
    pointer-events: none;
    transition: transform .35s ease, opacity .35s ease, visibility 0s linear .35s !important; }
  .link-area-sidebar ul {
    display: flex;
    letter-spacing: 0px;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%; }
  .link-area-sidebar li {
    display: flex;
    align-items: flex-start;
    font-size: clamp(10px, 0.6rem, 12px);
    color: #133284;
    background: none;
    padding: 0;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word; }
    .link-area-sidebar li::before {
      content: "";
      width: 10px;
      height: 10px;
      flex-shrink: 0;
      margin-right: 6px;
      margin-top: 4px;
      border: 2px solid #133284;
      border-radius: 50%;
      box-sizing: border-box; }

.link-area-close {
  position: absolute;
  top: -10px;
  left: -10px;
  right: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer; }
  .link-area-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #133284; }
    .link-area-close span:nth-child(1) {
      transform: translate(-50%, -50%) rotate(45deg); }
    .link-area-close span:nth-child(2) {
      transform: translate(-50%, -50%) rotate(-45deg); }

.link-area-reopen {
  position: fixed;
  top: 50%;
  top: 50svh;
  right: 0;
  z-index: 999;
  padding: 10px 6px;
  border: none;
  border-radius: 8px 0 0 8px;
  background: #133284;
  color: #fff;
  font-size: clamp(10px, 0.6rem, 12px);
  writing-mode: vertical-rl;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translate(100%, -50%);
  transition: transform .3s ease, opacity .3s ease, visibility 0s linear .3s;
  will-change: transform;
  backface-visibility: hidden; }
  .link-area-reopen.is-show {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%) translateZ(0);
    transition: transform .3s ease, opacity .3s ease, visibility 0s linear 0s; }

.link-area-toggle {
  display: none !important; }

.link-area-overlay {
  display: none; }

.pj-about {
  width: 90%;
  margin: 5rem auto;
  max-width: 1400px;
  color: #133284; }
  .pj-about .m-ttl {
    display: inline-block;
    font-size: clamp(30px, 2vw, 45px);
    border-bottom: 1px solid #133284;
    padding-bottom: 1px;
    margin-bottom: 2.25rem;
    color: #133284; }
  .pj-about p.m-txt-intro {
    font-size: clamp(10px, 0.85rem, 16px);
    margin-bottom: 1rem;
    text-align: left;
    margin-bottom: 3rem; }
  .pj-about .intro {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 3%; }
    .pj-about .intro figure {
      width: 40%;
      flex-shrink: 0; }
      .pj-about .intro figure img {
        width: 100%;
        border-radius: 8px; }
    .pj-about .intro .contents {
      flex: 1;
      min-width: 0;
      color: #133284; }
      .pj-about .intro .contents p.m-txt {
        font-size: clamp(10px, 0.85rem, 16px);
        margin-bottom: 1rem;
        text-align: left; }
      .pj-about .intro .contents .item {
        margin-bottom: 4rem; }
        .pj-about .intro .contents .item h3 {
          font-size: clamp(14px, 1.25rem, 20px);
          margin-bottom: 1rem; }
        .pj-about .intro .contents .item figure.insert-img {
          width: 90%;
          margin: 30px auto; }
        .pj-about .intro .contents .item p.txt-area {
          font-size: clamp(10px, 0.85rem, 16px);
          letter-spacing: 3px;
          margin-bottom: 1rem; }
          .pj-about .intro .contents .item p.txt-area span.big-catch {
            font-size: clamp(40px, 4vw, 70px);
            letter-spacing: -0.05rem;
            font-weight: 700;
            font-family: "noto-sans-cjk-jp", sans-serif; }
        .pj-about .intro .contents .item .ins-img {
          width: 100%;
          max-width: 1200px;
          margin-top: 2rem; }
          .pj-about .intro .contents .item .ins-img img {
            width: 100%; }
        .pj-about .intro .contents .item .ins-img-short {
          width: 90%;
          max-width: 1200px;
          margin: 2rem auto; }
          .pj-about .intro .contents .item .ins-img-short img {
            width: 100%; }
      .pj-about .intro .contents .devision02-wrapper {
        display: flex; }
      .pj-about .intro .contents .list-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem; }
        .pj-about .intro .contents .list-wrap li {
          margin-bottom: 1rem;
          padding: 2rem;
          background-color: #e5eef5;
          border-radius: 8px; }
          .pj-about .intro .contents .list-wrap li h3 {
            font-size: clamp(14px, 1.25rem, 20px);
            color: #133284;
            margin-bottom: 1rem; }
          .pj-about .intro .contents .list-wrap li p.m-txt {
            font-size: clamp(10px, 0.85rem, 16px);
            color: #133284;
            text-align: left; }
      .pj-about .intro .contents .flow-learning-entry {
        display: flex;
        width: 90%;
        align-items: stretch;
        margin: 0 auto;
        max-width: 1400px;
        justify-content: space-between; }
        .pj-about .intro .contents .flow-learning-entry li {
          padding: 1.5rem;
          text-align: center;
          width: 30%;
          display: flex;
          flex-direction: column; }
          .pj-about .intro .contents .flow-learning-entry li figure {
            width: 70%;
            margin: 0 auto 2rem;
            flex-shrink: 0; }
            .pj-about .intro .contents .flow-learning-entry li figure img {
              width: 100%; }
          .pj-about .intro .contents .flow-learning-entry li h3 {
            color: #133284;
            font-size: clamp(14px, 1.25rem, 20px);
            text-align: left;
            margin-bottom: 2rem;
            flex-shrink: 0; }
          .pj-about .intro .contents .flow-learning-entry li p.m-txt {
            font-size: clamp(10px, 0.85rem, 16px);
            flex-grow: 1; }
        .pj-about .intro .contents .flow-learning-entry li:not(:last-child) {
          position: relative; }
          .pj-about .intro .contents .flow-learning-entry li:not(:last-child)::after {
            content: "▶︎";
            position: absolute;
            right: -0.75rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: #133284; }
      .pj-about .intro .contents .wide-card {
        width: 100%;
        margin-bottom: 3rem; }
        .pj-about .intro .contents .wide-card li {
          display: flex;
          width: 90%;
          justify-content: space-between;
          align-items: center;
          border-bottom: 1px dashed #133284;
          padding-bottom: 0.5rem;
          margin: 1rem auto 0.5rem; }
          .pj-about .intro .contents .wide-card li figure.ico {
            width: 15%;
            margin-right: 3%; }
            .pj-about .intro .contents .wide-card li figure.ico img {
              width: 100%; }
          .pj-about .intro .contents .wide-card li .contents h3 {
            font-size: clamp(30px, 2vw, 45px);
            margin-bottom: 1.5rem; }
          .pj-about .intro .contents .wide-card li .contents p.m-txt {
            font-size: clamp(10px, 0.85rem, 16px);
            letter-spacing: 2px;
            line-height: 1.7;
            margin-bottom: 0px; }
  .pj-about .area-header {
    color: #133284; }
    .pj-about .area-header p.txt-area {
      font-size: clamp(10px, 0.85rem, 18px);
      letter-spacing: 3px;
      margin-bottom: 1rem; }
  .pj-about .service {
    border: 1px solid #95a1c0;
    width: 100%;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.81);
    border-radius: 8px;
    color: #133284; }
    .pj-about .service h3 {
      font-size: clamp(14px, 1.25rem, 20px);
      margin-bottom: 1.5rem;
      font-weight: 400; }
      .pj-about .service h3 span {
        display: inline-block;
        font-size: clamp(10px, 0.85rem, 16px);
        font-weight: 300;
        margin-left: 5rem; }
    .pj-about .service p.m-txt {
      font-size: clamp(10px, 0.85rem, 16px); }
    .pj-about .service ul.parts {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 20px; }
      .pj-about .service ul.parts li {
        border: 1px solid #95a1c0;
        padding: 0px 1rem;
        border-radius: 36px;
        font-size: clamp(10px, 0.85rem, 16px); }
    .pj-about .service .item-wrapper {
      display: flex;
      gap: clamp(20px, 4vw, 60px);
      align-items: flex-start; }
      .pj-about .service .item-wrapper .item {
        flex: 1;
        min-width: 0; }
        .pj-about .service .item-wrapper .item:first-child {
          flex: 1;
          min-width: 0; }
        .pj-about .service .item-wrapper .item:last-child {
          flex: 0 0 auto; }
      .pj-about .service .item-wrapper .item:empty {
        display: none; }
    .pj-about .service .half-pic {
      width: 30%; }
      .pj-about .service .half-pic img {
        width: 100%; }
  .pj-about .container {
    margin-bottom: 3rem;
    width: 100%; }
  .pj-about .card-design {
    color: #133284;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2%;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1400px; }
    .pj-about .card-design .card-wrap {
      display: grid;
      grid-row: span 4;
      grid-template-rows: subgrid;
      padding: 2.25rem;
      text-align: center; }
      .pj-about .card-design .card-wrap p.mini-catch {
        font-size: clamp(12px, 1rem, 20px);
        font-weight: 500;
        color: #e82782;
        text-align: center;
        margin-bottom: 0.85rem; }
      .pj-about .card-design .card-wrap .ttl-normal {
        font-size: clamp(30px, 2vw, 45px);
        margin-bottom: 2rem;
        line-height: 1.5;
        letter-spacing: 1px; }
      .pj-about .card-design .card-wrap figure.icon {
        width: 50%;
        margin: 0px auto 2rem; }
        .pj-about .card-design .card-wrap figure.icon img {
          width: 100%; }
      .pj-about .card-design .card-wrap figure.map-l {
        width: 100%;
        margin-bottom: 2rem; }
        .pj-about .card-design .card-wrap figure.map-l img {
          width: 100%; }
    .pj-about .card-design .m-txt {
      font-size: clamp(10px, 0.85rem, 16px); }

.pj-about .timeline {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 1rem;
  padding-left: 2.5rem;
  width: 80%;
  margin: 0 auto;
  /* 縦線 */
  /* item */
  /* ● */
  /* テキスト */ }
  .pj-about .timeline-line {
    position: absolute;
    top: 0;
    left: 4.9rem;
    width: 0.2rem;
    height: 100%;
    background: #133284; }
  .pj-about .timeline-item {
    position: relative;
    width: 100%;
    display: flex;
    z-index: 2;
    align-items: center;
    padding-bottom: 2rem; }
  .pj-about .timeline-dot {
    min-width: 5rem;
    height: 5rem;
    align-self: flex-start;
    border-radius: 50%;
    background: #133284;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    white-space: nowrap;
    line-height: 1;
    text-align: center; }
    .pj-about .timeline-dot span {
      font-size: clamp(10px, 0.6rem, 12px);
      margin-top: 0.5rem;
      display: contents; }
  .pj-about .timeline-content {
    margin-left: 1rem; }
    .pj-about .timeline-content h3 {
      font-size: clamp(10px, 0.85rem, 16px);
      font-weight: 500;
      line-height: 1.4;
      border: 1px dashed #133284;
      display: inline-block;
      padding: 0.5rem;
      margin-bottom: 0.95rem; }
    .pj-about .timeline-content p {
      font-size: clamp(10px, 0.85rem, 16px);
      line-height: 1.7;
      color: #133284;
      letter-spacing: 2px; }

/*interview*/
.interview-block {
  display: flex;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  border-bottom: 1px dashed rgba(253, 253, 253, 0.5); }

.interview-profile {
  width: 15%;
  flex-shrink: 0; }
  .interview-profile img {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    border-radius: 4px; }
  .interview-profile .year,
  .interview-profile .name {
    font-size: clamp(10px, 0.85rem, 16px);
    line-height: 1.6; }

.interview-content {
  flex: 1; }

.interview-item + .interview-item {
  margin-top: 3rem; }
.interview-item .label {
  display: inline-block;
  background: #58a89d;
  color: #fff;
  font-size: clamp(12px, 1rem, 20px);
  border-radius: 4px;
  font-weight: 700;
  padding: 4px 12px;
  margin-bottom: 1.5rem; }
.interview-item h2 {
  font-size: clamp(30px, 2vw, 45px);
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 1.5rem; }
.interview-item p {
  font-size: clamp(10px, 0.85rem, 16px);
  line-height: 1.7; }

.interview-block.is-hidden {
  display: none; }

.interview-more-btn {
  display: block;
  margin: 2rem auto 0;
  padding: 8px 40px;
  border: 1px solid rgba(253, 253, 253, 0.5);
  color: rgba(253, 253, 253, 0.5);
  cursor: pointer;
  font-size: 16px; }
  .interview-more-btn .icon {
    margin-right: 4px; }

.interview-hidden-area {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s ease; }

/*interview*/
.pj-about .card-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem 4%; }
  .pj-about .card-section li {
    width: 48%; }
    .pj-about .card-section li .photo {
      width: 100%;
      margin-bottom: 2rem; }
      .pj-about .card-section li .photo img {
        border-radius: 8px; }
    .pj-about .card-section li .card-item h2.case-card__title {
      font-size: clamp(30px, 2vw, 45px);
      line-height: 1.4;
      letter-spacing: 2px; }
    .pj-about .card-section li .card-item .case-card__tags {
      margin-top: 1rem; }
      .pj-about .card-section li .card-item .case-card__tags span {
        background-color: #000000;
        color: #FFFDFD;
        font-size: clamp(10px, 0.85rem, 16px);
        display: inline-block;
        margin-right: 0.5rem;
        padding: 0px 3px; }

/*cv-area*/
.cv-area {
  background: url("../img/common/bg-entry.webp") center/cover no-repeat;
  padding: 4rem;
  color: #FFFFFF;
  margin-top: 8rem; }
  .cv-area .container {
    width: 100%;
    margin: 0 auto;
    display: flex; }
    .cv-area .container .contents-area {
      margin-bottom: 1rem;
      width: 60%;
      width: min(60%, 1200px);
      margin-left: auto; }
      .cv-area .container .contents-area h2 {
        font-size: clamp(30px, 2vw, 45px);
        margin-bottom: 3.5rem;
        font-weight: 500; }
        .cv-area .container .contents-area h2 span {
          display: inline-block;
          margin-left: 2rem;
          font-size: clamp(14px, 1.25rem, 20px);
          font-weight: 400; }
    .cv-area .container .qr {
      display: flex;
      align-items: flex-start;
      gap: 5%; }
      .cv-area .container .qr .line {
        display: none; }
      .cv-area .container .qr .qrimg {
        width: 30%;
        max-width: 220px; }
        .cv-area .container .qr .qrimg img {
          width: 100%; }
      .cv-area .container .qr .txt-area {
        flex: 1;
        width: auto;
        font-size: clamp(10px, 0.85rem, 16px);
        font-weight: 300;
        letter-spacing: 1px; }
    .cv-area .container .cv-wrap {
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
      display: flex;
      justify-content: space-between; }
      .cv-area .container .cv-wrap .btn-area {
        width: 48%; }
        .cv-area .container .cv-wrap .btn-area .btn {
          width: 100%;
          background-color: #e82782;
          font-size: clamp(12px, 1rem, 20px);
          font-weight: 500; }
          .cv-area .container .cv-wrap .btn-area .btn:hover {
            background-color: #133284; }
    .cv-area .container .agent-area {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      width: 100%;
      border-radius: 6px;
      padding: 6px;
      text-decoration: none; }
      .cv-area .container .agent-area img {
        width: 40%;
        display: block;
        max-width: 300px; }

/* ========================================
   table
======================================== */
.nk-table-wrap {
  padding: 0; }

.nk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed; }

.nk-table thead th {
  padding: 0;
  font-weight: 500; }

.nk-table thead th:first-child {
  background: #042C53;
  color: #B5D4F4;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  text-align: left;
  border-radius: 8px 0 0 0; }

.nk-table thead th.year-col {
  background: #0C447C;
  color: #85B7EB;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 6px;
  text-align: center;
  border-left: 1px solid #185FA5;
  /*width: 110px;*/ }

.nk-table thead th.year-col:last-child {
  border-radius: 0 8px 0 0; }

.nk-table tbody td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 0.5px solid #e0e0e0;
  color: #1a1a1a;
  background-color: #FFFFFF; }

.nk-table tbody td:last-child {
  text-align: center;
  width: 110px; }

.nk-table-col-days {
  width: 110px; }

.nk-table tbody tr:last-child td {
  border-bottom: none; }

/* アニメーション用ラッパー */
.nk-table-overflow {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease; }

.nk-table-overflow.is-open {
  max-height: 400px; }

.badge {
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px; }

.badge--2 {
  background: #E6F1FB;
  color: #0C447C; }

.badge--3 {
  background: #B5D4F4;
  color: #0C447C; }

.badge--5 {
  background: #378ADD;
  color: #042C53; }

.badge--8 {
  background: #042C53;
  color: #85B7EB; }

.toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background-color: #FFFFFF;
  border: 0.5px solid #c0c0c0;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  color: #444;
  cursor: pointer; }

.nk-table-overflow table tbody tr:first-child td {
  border-top: 0.5px solid #e0e0e0; }

.toggle-btn:hover {
  background: #f5f5f5; }

/* ========================================
   募集要項
======================================== */
.job-table {
  width: 90%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: clamp(10px, 0.85rem, 16px);
  margin: 0 auto 3rem;
  border-radius: 12px;
  overflow: hidden;
  color: #133284;
  box-shadow: 0px 0px 15px -5px #d6d6d6; }

.job-table th,
.job-table td {
  padding: 24px 28px;
  border-bottom: 1px solid #c0cfe4;
  vertical-align: top;
  text-align: left; }

.job-table th {
  width: 160px;
  font-weight: bold;
  background-color: rgba(68, 133, 178, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  white-space: nowrap; }

.job-table td {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px); }

.job-table tr:last-child th,
.job-table tr:last-child td {
  border-bottom: none; }

.job-table tr:first-child th {
  border-radius: 12px 0 0 0; }

.job-table tr:first-child td {
  border-radius: 0 12px 0 0; }

.job-table tr:last-child th {
  border-radius: 0 0 0 12px; }

.job-table tr:last-child td {
  border-radius: 0 0 12px 0; }

.recruit-year {
  font-weight: bold;
  margin: 0 0 16px; }

.recruit-type {
  font-weight: bold;
  margin: 0 0 4px; }

.recruit-desc {
  margin: 0 0 16px;
  color: #555;
  line-height: 1.7; }

.recruit-desc:last-of-type {
  margin-bottom: 0; }

.note {
  font-size: clamp(10px, 0.6rem, 12px);
  margin-top: 16px;
  line-height: 1.7; }

.work-title {
  font-weight: bold;
  margin: 0 0 10px; }

.work-list {
  margin: 0;
  padding: 0;
  list-style: none; }

.work-list li {
  list-style: disc;
  margin-left: 1rem;
  line-height: 2; }

/* ========================================
 recruiter
======================================== */
.recruiter-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  color: #133284; }
  @media (max-width: 1100px) {
    .recruiter-wrapper {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) {
    .recruiter-wrapper {
      grid-template-columns: 1fr; } }

.rec-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column; }
  .rec-card__video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #000000;
    overflow: hidden; }
    .rec-card__video-wrapper iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: block; }
  .rec-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .rec-card__dept {
    font-size: clamp(10px, 0.6rem, 12px);
    color: #133284;
    letter-spacing: 0.03em; }
  .rec-card__name {
    font-size: clamp(12px, 1rem, 20px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #133284;
    line-height: 1.3; }
  .rec-card__bio {
    font-size: clamp(10px, 0.85rem, 16px);
    line-height: 1.5;
    color: #133284;
    margin-top: 4px; }

/* ========================================
アコーディオン
======================================== */
.career-path-accordion {
  --color-background-page: #F7F6F2;
  --color-background-primary: #FFFFFF;
  --color-background-secondary: #F2F1ED;
  --color-text-primary: #133284;
  --color-text-secondary: #6B6B6B;
  --color-text-tertiary: #9B9B9B;
  --color-border-secondary: #D6D3CD;
  --color-border-tertiary: #E8E6E1;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --type1-accent: #185FA5;
  --type1-badge-bg: #E6F1FB;
  --type1-badge-color: #0C447C;
  --type2-accent: #3B6D11;
  --type2-badge-bg: #EAF3DE;
  --type2-badge-color: #27500A;
  --type3-accent: #6c6d11;
  --type3-badge-bg: #d0d17c;
  --type3-badge-color: #4b4c0c;
  --type4-accent: #930d95;
  --type4-badge-bg: #e6c1e7;
  --type4-badge-color: #751876;
  --type5-accent: #0a7a81;
  --type5-badge-bg: #b3dee1;
  --type5-badge-color: #18696e;
  --type6-accent: #06393c;
  --type6-badge-bg: #dedede;
  --type6-badge-color: #202117;
  --type7-accent: #940909;
  --type7-badge-bg: #eac1c1;
  --type7-badge-color: #5a1c1c;
  --type8-accent: #c24ea3;
  --type8-badge-bg: #e5bbda;
  --type8-badge-color: #9b3981;
  --type9-accent: #3b9418;
  --type9-badge-bg: #c5ddbc;
  --type9-badge-color: #2e611a;
  background: var(--color-background-page);
  padding: 1rem 2rem; }
  .career-path-accordion .acc-item + .acc-item {
    border-top: 0.5px solid var(--color-border-tertiary); }
  .career-path-accordion .acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.25rem 0;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left; }
    .career-path-accordion .acc-trigger:hover .acc-trigger-name {
      color: var(--type-accent); }
  .career-path-accordion .acc-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 0.5px solid var(--color-border-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s; }
    .career-path-accordion .acc-icon svg {
      width: 14px;
      height: 14px;
      color: var(--color-text-secondary);
      transition: color 0.15s; }
    .career-path-accordion .acc-icon .vert {
      transition: transform 0.2s;
      transform-origin: center; }
  .career-path-accordion .acc-item.open .acc-icon {
    background: var(--type-accent);
    border-color: var(--type-accent); }
    .career-path-accordion .acc-item.open .acc-icon svg {
      color: #fff; }
    .career-path-accordion .acc-item.open .acc-icon .vert {
      transform: scaleY(0); }
  .career-path-accordion .acc-item.open .acc-trigger-name {
    color: var(--type-accent); }
  .career-path-accordion .acc-thumb {
    display: none;
    width: 0%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-text-tertiary);
    overflow: hidden; }
    .career-path-accordion .acc-thumb svg {
      width: 22px;
      height: 22px;
      display: none; }
    .career-path-accordion .acc-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: none; }
  .career-path-accordion .acc-trigger-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0; }
  .career-path-accordion .acc-trigger-name {
    font-size: clamp(30px, 2vw, 45px);
    font-weight: 600;
    color: var(--color-text-primary);
    transition: color 0.15s; }
  .career-path-accordion .acc-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap; }
  .career-path-accordion .acc-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: clamp(12px, 1rem, 20px);
    color: var(--color-text-secondary); }
    .career-path-accordion .acc-meta-item svg {
      width: 18px;
      height: 18px;
      color: var(--color-text-tertiary);
      flex-shrink: 0; }
    .career-path-accordion .acc-meta-item .arrow {
      color: var(--color-text-tertiary);
      font-size: 11px; }
    .career-path-accordion .acc-meta-item .to {
      color: var(--color-text-primary);
      font-weight: 500; }
  .career-path-accordion .acc-body-outer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease; }
  .career-path-accordion .acc-item.open .acc-body-outer {
    grid-template-rows: 1fr; }
  .career-path-accordion .acc-body {
    overflow: hidden;
    min-height: 0; }
  .career-path-accordion .acc-body-inner {
    padding: 0 0 2.5rem 0%; }
  .career-path-accordion .timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
    width: 100%; }
  .career-path-accordion .tl-line {
    position: absolute;
    top: 6px;
    left: 3%;
    right: 3%;
    height: 1px;
    background: var(--color-border-secondary); }
  .career-path-accordion .tl-step {
    position: relative; }
  .career-path-accordion .tl-dot-row {
    display: flex;
    align-items: center;
    margin-bottom: 14px; }
  .career-path-accordion .tl-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid var(--color-background-page);
    background: var(--type-accent);
    flex-shrink: 0; }
  .career-path-accordion .tl-badge {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
    display: inline-block;
    background: var(--type-badge-bg);
    color: var(--type-badge-color); }
  .career-path-accordion .tl-age {
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-bottom: 4px; }
  .career-path-accordion .tl-salary {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--type-accent); }
    .career-path-accordion .tl-salary span {
      font-size: 13px;
      font-weight: 400; }
  .career-path-accordion .tl-tags {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px; }
  .career-path-accordion .tl-tag {
    font-size: 11px;
    color: var(--color-text-secondary);
    background: var(--color-background-secondary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: 3px;
    padding: 3px 8px; }
  .career-path-accordion .tl-desc {
    font-size: 12px;
    color: var(--color-text-secondary);
    line-height: 1.7; }
  .career-path-accordion .acc-item.type1 {
    --type-accent: var(--type1-accent);
    --type-badge-bg: var(--type1-badge-bg);
    --type-badge-color: var(--type1-badge-color); }
  .career-path-accordion .acc-item.type2 {
    --type-accent: var(--type2-accent);
    --type-badge-bg: var(--type2-badge-bg);
    --type-badge-color: var(--type2-badge-color); }
  .career-path-accordion .acc-item.type3 {
    --type-accent: var(--type3-accent);
    --type-badge-bg: var(--type3-badge-bg);
    --type-badge-color: var(--type3-badge-color); }
  .career-path-accordion .acc-item.type4 {
    --type-accent: var(--type4-accent);
    --type-badge-bg: var(--type4-badge-bg);
    --type-badge-color: var(--type4-badge-color); }
  .career-path-accordion .acc-item.type5 {
    --type-accent: var(--type5-accent);
    --type-badge-bg: var(--type5-badge-bg);
    --type-badge-color: var(--type5-badge-color); }
  .career-path-accordion .acc-item.type6 {
    --type-accent: var(--type6-accent);
    --type-badge-bg: var(--type6-badge-bg);
    --type-badge-color: var(--type6-badge-color); }
  .career-path-accordion .acc-item.type7 {
    --type-accent: var(--type7-accent);
    --type-badge-bg: var(--type7-badge-bg);
    --type-badge-color: var(--type7-badge-color); }
  .career-path-accordion .acc-item.type8 {
    --type-accent: var(--type8-accent);
    --type-badge-bg: var(--type8-badge-bg);
    --type-badge-color: var(--type8-badge-color); }
  .career-path-accordion .acc-item.type9 {
    --type-accent: var(--type9-accent);
    --type-badge-bg: var(--type9-badge-bg);
    --type-badge-color: var(--type9-badge-color); }
  .career-path-accordion .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap; }
  @media (max-width: 768px) {
    .career-path-accordion {
      padding: 0.75rem 1rem; }
      .career-path-accordion .acc-trigger {
        gap: 6px;
        padding: 4rem 0.75rem;
        align-items: flex-start; }
      .career-path-accordion .acc-icon {
        margin-top: 3px;
        flex-shrink: 0; }
      .career-path-accordion .acc-trigger-text {
        gap: 6px; }
      .career-path-accordion .acc-trigger-name {
        font-size: 18px;
        line-height: 1.4;
        font-weight: 700; }
      .career-path-accordion .acc-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px; }
      .career-path-accordion .acc-meta-item {
        font-size: 12px; }
      .career-path-accordion .acc-body-inner {
        padding: 0 0 1.5rem 0; }
      .career-path-accordion .timeline {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%; }
      .career-path-accordion .tl-line {
        display: none; }
      .career-path-accordion .tl-step {
        display: flex;
        flex-direction: column;
        padding: 0 0 0 28px;
        position: relative; }
        .career-path-accordion .tl-step::before {
          content: '';
          position: absolute;
          left: 5px;
          top: 14px;
          bottom: 0;
          width: 1px;
          background: var(--color-border-secondary); }
        .career-path-accordion .tl-step:last-child::before {
          display: none; }
      .career-path-accordion .tl-dot-row {
        position: absolute;
        left: 0;
        top: 0;
        margin-bottom: 0; }
      .career-path-accordion .tl-dot {
        width: 12px;
        height: 12px; }
      .career-path-accordion .tl-badge {
        margin-bottom: 4px; }
      .career-path-accordion .tl-age {
        font-size: 11px; }
      .career-path-accordion .tl-salary {
        font-size: 18px;
        margin-bottom: 8px; }
      .career-path-accordion .tl-tags {
        margin-bottom: 8px; }
      .career-path-accordion .tl-tag {
        font-size: 11px; }
      .career-path-accordion .tl-desc {
        font-size: 12px;
        margin-bottom: 20px; } }

/* ========================================
   common spot
======================================== */
.photo-2col {
  display: flex;
  width: 100%;
  margin-top: 2rem;
  justify-content: space-between; }
  .photo-2col figure {
    width: 48%; }
    .photo-2col figure img {
      width: 100%;
      border-radius: 8px; }

.bg-pattern {
  background-image: url("../img/common/bg-pattern-gray.webp");
  background-size: 100px 100px;
  background-repeat: repeat;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0px 0px 12px -5px #b0b0b0;
  background-attachment: fixed; }

.side-btn {
  padding-top: 2rem;
  width: 13rem;
  margin: auto; }

.side-btn-long {
  margin: auto;
  padding-top: 2rem;
  width: 20rem; }

.w20 {
  width: 20% !important; }

.w50 li {
  width: 48%; }

.w-all {
  width: 100%; }

.spt-main-txt-area {
  font-size: clamp(10px, 0.85rem, 16px);
  margin-bottom: 2rem; }

.info-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1.5rem 2rem;
  align-items: center; }
  .info-list__item {
    display: contents;
    font-size: clamp(12px, 1rem, 20px);
    margin-bottom: 2rem;
    align-items: center; }
  .info-list__label {
    flex-shrink: 0;
    white-space: nowrap;
    text-align: center;
    background-color: #133284;
    color: #FFFFFF;
    padding: 0.75rem;
    font-size: clamp(12px, 1rem, 20px);
    border-radius: 8px; }

.txt-left {
  text-align: left; }

.sp {
  display: none; }

/* ========================================
   お知らせ
======================================== */
#news .day {
  text-align: right;
  margin: 1rem 0 3rem; }
#news .column {
  border-top: 1px #5E5E5E dashed;
  padding: 3rem 1rem 0px;
  margin: 3rem 0rem; }
  #news .column h3 {
    margin-bottom: 1rem; }
#news .caution {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #999999;
  font-size: 12px;
  line-height: 1.6;
  counter-reset: note; }
  #news .caution li {
    position: relative;
    padding-left: 2.2em;
    margin-bottom: 1rem; }
    #news .caution li::before {
      content: "※" counter(note) ".";
      counter-increment: note 1;
      position: absolute;
      left: 0px;
      top: 0px; }

/*# sourceMappingURL=lower.css.map */
