
body {
  margin: 0;
}

/* 看護用色変更 */
:root {
  .kango-site {
    --green: #ee98b8;
    --l-green: #ddf0f7;
  }
}

/* メインビジュアル */
.main-visual {
    position: relative;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100vh;
    background-image: url('../img/keyv_recruit.jpg');
    background-size: cover;
    background-position: center;
    &.fresh, &.career {
      height: auto;
      aspect-ratio: 8 / 3;
      @media screen and (max-width: 767px) {
        aspect-ratio: 16 / 9;
      }
    }
    &.fresh {
      background-image: url('../img/keyv_fresh.jpg');
    }
    &.career {
      background-image: url('../img/keyv_career.jpg');
    }
  }
  
  .main-visual .main-visual-text {
    position: absolute;
    width: 100%;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 120px;
    color: white;
    padding: 20px;
    text-shadow:
      /* 1つ目：全体にシャドウをつける */
      0 0 5px rgba(253, 100, 79, .7),
      /* 2つ目：下方向 */
      0 2px 5px rgba(253, 100, 79, .5),
      /* 3つ目：右方向 */
      2px 0 5px rgba(253, 100, 79, .5),
      /* 4つ目：上方向 */
      0 -2px 5px rgba(253, 100, 79, .5),
      /* 5つ目：左方向 */
      -2px 0 5px rgba(253, 100, 79, .5);
      @media screen and (max-width: 767px) {
        bottom: calc(120 / 780 * 100vw);
      }
  }

  .main-visual .main-visual-title {
    font-size: 92px;
    font-family: var(--serif);
    letter-spacing: 0.09em;
    font-weight: 500;
    margin: 0;
    padding: 0;
    @media screen and (max-width: 767px) {
      font-size: calc(92 / 780 * 100vw);
    }
  }

  .main-visual .main-visual-lead {
    font-size: 20px;
    font-family: var(--noto);
    letter-spacing: 0.04em;
    font-weight: 400;
    margin: 0;
    padding: 0;
  }

  .main-title {
    margin-top: 70px!important;
    @media screen and (max-width: 767px) {
      margin: calc(120 / 780 * 100vw) calc(40 / 780 * 100vw) 0!important;
    }
    & h2 {
      font-family: var(--noto);
      font-size: 32px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-align: center;
      position: relative;
      padding: 0;
      @media screen and (max-width: 767px) {
        font-size: 22px;
        letter-spacing: 0.1em;
      }
      &::before {
        width: 240px;
        height: 3px;
        background-color: var(--green);
        top: auto;
        bottom: -17px;
        left: calc(50% - 120px);
        @media screen and (max-width: 767px) {
          width: 180px;
          left: calc(50% - 90px);
        }
      }
      &::after {
        display: none;
      }
    }
    & p {
      max-width: 900px;
      margin: 52px auto 0;
      font-size: 18px;
      letter-spacing: 0.12em;
      line-height: 1.74;
      @media screen and (max-width: 767px) {
        letter-spacing: 0.1em;
        line-height: 1.6;
        text-align: left;
      }
    }
  }
  
  .column-list-wrapper {
    margin-top: 120px!important;
    @media screen and (max-width: 767px) {
      margin: calc(120 / 780 * 100vw) calc(40 / 780 * 100vw) 0!important;
    }
    & h2 {
      font-family: var(--noto);
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-align: center;
      position: relative;
      padding: 0;
      @media screen and (max-width: 767px) {
        font-size: 22px;
        letter-spacing: 0.1em;
      }
      &::before {
        width: 240px;
        height: 3px;
        background-color: var(--green);
        top: auto;
        bottom: -17px;
        left: calc(50% - 120px);
        @media screen and (max-width: 767px) {
          width: 180px;
          left: calc(50% - 90px);
        }
      }
      &::after {
        display: none;
      }
    }
  }

  .column-list-wrapper .column.col3 {
    display: flex;
    flex-wrap: wrap;
    gap: 72px 52px;
    margin-top: 60px;
    @media screen and (max-width: 767px) {
      flex-direction: column;
      gap: 0;
      margin-top: calc((40 / 780 * 100vw) + 20px);
    }
    & li {
      width: calc((100% - 104px) / 3);
      border-bottom: 1px solid #cccccc;
      @media screen and (max-width: 767px) {
        width: 100%;
        border-bottom: 1px solid #cccccc;
        &:first-child {
          border-top: 1px solid #cccccc;
        }
      }
    }
    & a {
      display: block;
      width: 100%;
      height: 100%;
      text-decoration: none;
      color: #333333;
      transition: 0.5s ease-in-out;
      /* padding-bottom: 45px; */
		padding: 30px 0;
      position: relative;
      &:hover {
        background-color: var(--l-green);
        & .more-link {
          color: var(--green);
          &::before {
            border-color: var(--green);
            left: -20px;
          }
        }
      }
      &.disabled {
        pointer-events: none;
        & h3, & p {
          color: #cccccc;
        }
        & .more-link {
          display: none;
        }
      }
      @media screen and (max-width: 767px) {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: calc(50 / 780 * 100vw) calc(30 / 780 * 100vw) calc(48 / 780 * 100vw);
      }
    }
    & h3 {
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 0.08em;
      padding: 0 0 0 24px;
      margin: 0;
      @media screen and (max-width: 767px) {
        font-weight: bold;
        letter-spacing: 0.06em;
        padding: 0 0 0 22px;
      }
      &::before {
        width: 18px;
        height: 18px;
        top: calc(50% - 9px);
        left: 0;
        @media screen and (max-width: 767px) {
          width: 16px;
          height: 16px;
          top: calc(50% - 8px);
        }
      }
      &::after {
        display: none;
      }
    }
    & p {
      margin-top: 18px;
      padding: 0;
      font-size: 14.4px;
      font-weight: 400;
      letter-spacing: 0.04em;
      line-height: 1.35;
		display: none;
      @media screen and (max-width: 767px) {
        display: none;
      }
    }
    & .more-link {
      font-size: 16px;
      font-weight: 700;
      position: absolute;
      /* bottom: 0; */
		bottom: calc(50% - 8px);
      right: 0;
      @media screen and (max-width: 767px) {
        position: relative;
      }
      &::before {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        border-top: 3px solid #333333;
        border-right: 3px solid #333333;
        transform: rotate(45deg);
        position: absolute;
        top: calc(50% - 6px);
        left: -35px;
        transition: 0.5s ease-in-out;
        @media screen and (max-width: 767px) {
          width: 10px;
          height: 10px;
          top: calc(50% - 5px);
          left: -30px;
        }
      }
    }
  }
  
  .column-list {
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 767px) {
      flex-direction: column;
      gap: calc(90 / 780 * 100vw);
      margin: calc(120 / 780 * 100vw) calc(40 / 780 * 100vw) 0!important;
    }
  }
  
  .column-list .column {
    width: 44%;
    &:nth-child(1) .link-bnr {
      background: url('../img/bg_list_career.jpg') no-repeat center center / cover;
    }
    &:nth-child(2) .link-bnr {
      background: url('../img/bg_list_fresh.jpg') no-repeat center center / cover;
    }
    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .column .link-bnr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 30px;
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 321;
    position: relative;
    transition: 0.5s ease-in-out;
    @media screen and (max-width: 767px) {
      padding: calc(30 / 780 * 100vw);
    }
    &::before {
      content: '';
      display: block;
      width: calc(100% - 60px);
      height: calc(100% - 60px);
      background-color: var(--l-green);
      position: absolute;
      top: 30px;
      left: 30px;
      z-index: 0;
      opacity: 0.8;
      @media screen and (max-width: 767px) {
        width: calc(100% - calc(60 / 780 * 100vw));
        height: calc(100% - calc(60 / 780 * 100vw));
        top: calc(30 / 780 * 100vw);
        left: calc(30 / 780 * 100vw);
      }
    }
    &:hover {
      opacity: 0.7;
      & .btn-entry {
        opacity: 1;
        background-color: #ffffff;
        color: var(--green);
      }
    }
  }

  .link-bnr h2,
  .link-bnr p,
  .link-bnr .btn-entry {
    z-index: 1;
    position: relative;
  }
  
  .link-bnr h2 {
    color: #000000;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 40px;
    letter-spacing: 0.12em;
    line-height: 1;
    text-align: center;
    padding: 0;
    position: relative;
    @media screen and (max-width: 767px) {
      font-size: 28px;
      padding-top: 10px;
    }
    &::before,&::after {
      display: none;
    }
    & .link-catch {
      width: max-content;
      color: #ff2a6d;
      font-size: 16px;
      font-weight: 400;
      position: absolute;
      top: calc(-1em - 18px);
      left: calc(50% - 6.5em);
      letter-spacing: 0.12em;
      @media screen and (max-width: 767px) {
        top: calc(-1em + 4px);
      }
    }
  }
  
  .link-bnr p {
    color: #000000;
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 1;
    text-align: center;
    margin-top: 10px;
    @media screen and (max-width: 767px) {
      font-size: 14px;
    }
  }
  
  .link-bnr .btn-entry {
    display: flex;
    width: 240px;
    height: 50px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: var(--green);
    color: #ffffff;
    border: none;
    position: relative;
    margin-top: 25px;
		transition: 0.5s ease-in-out;
    @media screen and (max-width: 767px) {
      margin-top: 15px;
    }
  }
  
  /* .link-bnr .btn-entry:hover {
    opacity: 1;
    background-color: #ffffff;
    color: var(--green);
  } */
  
  .column-list .column .more-link {
    display: block;
    margin-top: 10px;
    padding: 0;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-align: right;
    & span {
      position: relative;
      &::before {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        border-top: 3px solid #333333;
        border-right: 3px solid #333333;
        transform: rotate(45deg);
        position: absolute;
        top: calc(50% - 6px);
        left: -35px;
        transition: 0.5s ease-in-out;
      }
    }
    &:hover {
      color: var(--green);
      & span::before {
        border-color: var(--green);
        left: -20px;
      }
    }
  }

  .column-list .link-list {
    margin-top: 30px;
    @media screen and (max-width: 767px) {
      margin-top: calc(30 / 780 * 100vw);
    }
  }

  .column-list .link-list li {
    border-bottom: 1px solid #333333;
    & a {
      padding: 14px 25px 14px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-decoration: none;
      width: 100%;
      height: 100%;
      min-height: 100px;
      position: relative;
      transition: 0.5s ease-in-out;
      @media screen and (max-width: 767px) {
        padding-right: 30px;
        min-height: 80px;
      }
      &::before {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        border-top: 3px solid #333333;
        border-right: 3px solid #333333;
        transform: rotate(45deg);
        position: absolute;
        top: calc(50% - 6px);
        right: 15px;
        transition: 0.5s ease-in-out;
      }
      &:hover {
        background-color: var(--l-green);
        color: var(--green);
        &::before {
          border-color: var(--green);
          right: 5px;
        }
      }
    }
    & h3 {
      font-size: 16.8px;
      font-weight: bold;
      letter-spacing: 0.08em;
      padding: 0;
      &::before, &::after {
        display: none;
      }
    }
    & p {
      font-size: 15px;
      letter-spacing: initial;
      line-height: 1.5;
      padding: 0;
      margin-top: 8px;
      @media screen and (max-width: 767px) {
        display: none;
      }
    }
  }

/*テーブル枠線なし*/
.culture-table {
    border: none;
    border-collapse: collapse; /* これは罫線の間隔をなくすため */
}
.culture-table td, .culture-table th {
    border: none;
}