.o-sectionTieUp {
  padding: 0 0 20px;

  .o-sectionTieUp__heading {
    background-color: #7198b3;
    color: var(--semantic-color-white);
    text-align: center;
    padding-block: 8px;
    margin-block: 20px 24px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;

    @media (width >= 840px) {
      font-size: 20px;
    }
  }

  .o-sectionTieUp__list {
    display: grid;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    grid-template-columns: repeat(3, 1fr);

    @media (width >= 840px) {
      gap: 48px;
    }
  }

  .o-sectionTieUp__item {
    width: 100%;
    /* max-width: 370px; */
    margin-bottom: 0;
    text-align: center;
    background: none;
    box-shadow: none;

    picture {
      margin-bottom: 12px;
      display: block;
    }

    img {
      min-height: 120px;
      width: 100%;
      aspect-ratio: 3/2;
      /* max-width: 370px; */
      height: auto;
      object-fit: cover;
      background: #b0b0b0;
    }
  }

  .o-sectionTieUp__title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;

    @media (width >= 840px) {
      font-size: 22px;
    }
  }

  .o-sectionTieUp__description {
    font-size: 17px;
    line-height: 1.5;
    color: #222;
    margin-bottom: 0;
    display: none;

    @media (width >= 840px) {
      display: block;
    }
  }
}
.o-sectionLinks {
  padding-block: 72px;
  background-color: #ebe0e3;
  position: relative;

  &::before {
    content: '';
    display: block;
    width: 100%;
    height: 96px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--semantic-color-white);
  }

  .o-sectionLinks__topMessage {
    font-feature-settings:
      'liga' off,
      'clig' off;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    text-decoration-skip-ink: none;
    text-underline-offset: -6px;
    text-decoration-thickness: 12px;
    text-decoration-color: #fffdbb;
    text-decoration-line: underline;
    margin-bottom: 24px;

    @media (width >= 840px) {
      margin-bottom: 32px;
    }
  }

  .o-sectionLinks__heading {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
  }

  .o-sectionLinks__catch {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;

    @media (width >= 840px) {
      font-size: 18px;
    }
  }

  .o-sectionLinks__sub {
    text-align: center;
    margin-bottom: 16px;

    @media (width >= 840px) {
      margin-bottom: 24px;
    }
  }

  .o-sectionLinks__mainTitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;

    @media (width >= 840px) {
      font-size: 26px;
    }
  }

  .o-sectionLinks__list {
    display: grid;
    grid-template-columns: 1;
    gap: 10px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;

    @media (width >= 840px) {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .o-sectionLinks__item {
    background: var(--semantic-color-white);
    border: 2px solid #c38396;
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
    transition: box-shadow 0.2s;
  }

  .o-sectionLinks__link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 10px;
  }

  .o-sectionLinks__title {
    color: #c38396;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;

    &::after {
      content: '\25B6';
      color: #c38396;
      font-size: 16px;
      line-height: 1;
    }
  }

  .o-sectionLinks__description {
    background: #b97c96;
    color: var(--semantic-color-white);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    padding: 4px 8px;
    margin-bottom: 0;
  }
}

.o-sectionPickup {
  padding-block: 80px;
  background-color: #f5f0cf;

  .o-sectionPickup__highlight {
    text-align: center;
    font-feature-settings:
      'liga' off,
      'clig' off;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    padding-block: 60px;
  }

  .o-sectionPickup__list {
    display: flex;
    flex-direction: column;
    gap: 60px;

    .o-sectionPickup__link {
      display: flex;
      flex-direction: column-reverse;
      text-decoration: none;
      color: inherit;
      gap: 40px;

      @media (width >= 840px) {
        flex-flow: row-reverse nowrap;
      }
    }

    .o-sectionPickup__item:nth-of-type(even) {
      .o-sectionPickup__link {
        @media (width >= 840px) {
          flex-direction: row;
        }
      }
    }
  }

  .o-sectionPickup__image {
    flex: 0 0 50%;

    img {
      width: 100%;
      height: auto;
    }
  }

  .o-sectionPickup__caption {
    font-family: Oswald;
    font-size: 32px;
    font-style: normal;
    font-weight: 200;
    line-height: 1.3;
    letter-spacing: 1.28px;
    text-transform: capitalize;
    margin-bottom: 24px;

    @media (width >= 840px) {
      font-weight: 250;
    }
  }

  .o-sectionPickup__title {
    display: inline-flex;
    background-color: #89a7b1;
    color: var(--semantic-color-white);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    padding: 10px;
    margin-bottom: 20px;
  }

  .o-sectionPickup__subTitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
  }

  .o-sectionPickup__description {
    font-style: normal;
    font-weight: 300;
    line-height: 1.7;
  }
}

.o-sectionInterview {
  .m-sectionHead {
    &.-type-interview {
      --sectionHead-bg-color: #becbd4;
    }
  }

  .o-sectionInterview__list {
    display: flex;
    flex-flow: column;
    gap: 32px;
  }

  .o-sectionInterview_title {
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 2px #817262 solid;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;

    h3 {
      color: #817262;
      font-size: 20px;
      font-weight: 600;
      line-height: 1.4;
      word-wrap: break-word;
    }
  }

  .o-sectionInterview_text {
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    word-wrap: break-word;
  }
}

.o-sectionSupport {
  .m-sectionHead {
    &.-type-support {
      --sectionHead-bg-color: #e2ced5;
    }
  }

  .o-sectionSupport_text {
    font-weight: 300;
    line-height: 32px;
    word-wrap: break-word;
    margin-top: 32px;

    @media (min-width: 840px) {
      margin-top: 62px;
    }
  }

  .o-sectionSupport__comparison {
    background: var(--color-ivory-400);
    padding: var(--spacing-10) var(--spacing-3);
    margin-top: 32px;

    @media (min-width: 840px) {
      padding: var(--spacing-10) var(--spacing-6);
    }
  }

  .o-sectionSupport__tableContainer {
    width: 100%;
    /* max-width: 688px; */
    overflow-x: auto;

    .o-sectionSupport__table {
      --table-cell-x-padding: 8px;
      width: 100%;
      table-layout: fixed;
      border-collapse: collapse;
      margin-bottom: 20px;
      font-size: 13px;

      th,
      td {
        padding: 12px var(--table-cell-x-padding);
        border: 1px solid #ebe7dd;
        vertical-align: middle;
        line-height: 1.5;
      }

      thead {
        th {
          background-color: rgb(255 255 255 / 0.5);
          color: #333;
          text-align: center;
          font-weight: 600;
        }

        tr {
          &:first-child {
            th {
              color: white;
              font-weight: bold;

              &:nth-of-type(2) {
                background-color: #cd91a3;
              }

              &:nth-of-type(3) {
                background-color: #b1b1b1;
              }
            }
          }

          &:nth-child(2) {
            th {
              font-weight: 300;

              &:nth-of-type(2) {
                background-color: rgb(230 209 214 / 0.698);
              }

              &:not(:nth-of-type(1), :nth-of-type(2)) {
                background-color: #eaeaea80;
              }
            }
          }
        }
      }

      tbody {
        th {
          background-color: #fff;
          text-align: center;
          font-weight: 300;
        }

        td {
          text-align: left;
          background-color: #fff;

          &:first-of-type {
            background-color: #e6d1d6;
            font-weight: 600;
            text-align: center;
            font-weight: bold;
          }

          &:nth-of-type(2) {
            font-weight: bold;
          }

          &:nth-of-type(3),
          &:nth-of-type(4) {
            text-align: center;
          }
        }
      }
    }
  }
}
