@charset "UTF-8";

/*
	##### OGIS #####
	business/assets/css/biz_pc.css
*/


/* --------------------------------------------------
contents section
-------------------------------------------------- */

.sec {
  display: block;
  width: 100%;
  max-width: 920px;
  padding: 120px 0;
  margin: 0 auto;
  counter-increment: number;

  &.sec-01 {
    padding-top: 150px
  }

  @media (width > 1400px) {
    max-width: calc(920 / 1400 * 100vw);
    padding: calc(120 / 1400 * 100vw) 0;

    &.sec-01 {
      padding-top: calc(150 / 1400 * 100vw);
    }
  }
}

.line {
  all: unset;
  display: block;
  height: 1px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--color-5);

  @media (width > 1400px) {
    max-width: calc(1100 / 1400 * 100vw);
  }

  .chart-1-5 + & {
    margin-top: 120px;
  }
}

.sec-ttl {
  display: inline-block;
  padding-left: 75px;
  margin-bottom: 48px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .14em;
  line-height: 1.6666666666666667;
  position: relative;

  &::before {
    content: counter(number, decimal-leading-zero);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: "Catamaran", sans-serif;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0;
    width: 62px;
    height: 62px;
    border: solid 1.5px var(--color-4);
    border-radius: 50%;
    color: var(--color-4);
    position: absolute;
    left: 0;
    top: -.38em;
  }

  @media (width > 1400px) {
    padding-left: calc(75 / 1400 * 100vw);
    margin-bottom: calc(48 / 1400 * 100vw);
    font-size: calc(24 / 1400 * 100vw);

    &::before {
      font-size: calc(24 / 1400 * 100vw);
      width: calc(62 / 1400 * 100vw);
      height: calc(62 / 1400 * 100vw);
      border-width: calc(1.5 / 1400 * 100vw);
    }
  }
}

em.bold {
  font-style: normal;
  font-size: 120%;
  font-weight: 700;
  color: var(--color-3)
}
em.marker {
  font-size: 110%;
  font-style: normal;
  font-weight: 700;
  color: var(--color-3);
  text-decoration: underline;
  text-decoration-thickness: .5em;
  text-decoration-color: #fdffa1;
  text-underline-offset: -.25em;
}


/* --------------------------------------------------
business page
-------------------------------------------------- */

.chart-1-4 {
  display: block;
  width: 753px;
  height: auto;
  margin: 60px auto 70px;

  @media (width > 1400px) {
    width: calc(753 / 1400 * 100vw);
    margin: calc(60 / 1400 * 100vw) auto calc(70 / 1400 * 100vw);
  }
}

.chart-1-5 {
  display: block;

  figure {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    figcaption {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
  
      .small {
        font-size: 70%;
        font-weight: 600;
        vertical-align: baseline;
      }
      &::before {
        content: '●';
        color: var(--color-4);
        font-size: .7em;
        padding-right: .2em;
        display: inline-block;
        translate: 0 -.25em;
      }
    }
    .img-box {
      width: 100%;
      height: auto;
    }
  }

  .fig-note {
    font-size: 15px;
    line-height: 2;
    text-align: right;
    margin-top: 1em;
  }

  @media (width > 1400px) {
    figure figcaption {
      font-size: calc(16 / 1400 * 100vw);
      margin-bottom: calc(10 / 1400 * 100vw);
    }
    .fig-note {
      font-size: calc(15 / 1400 * 100vw);
    }
  }
}


.biz {
  display: block;
  width: 100%;
  margin-top: 105px;

  .grid {
    display: grid;
    width: 100%;
    grid-template-areas: "title photo" ". photo";
    grid-template-columns: 480px 380px;
    grid-template-rows: auto auto;
    column-gap: 60px;
    background-color: var(--bg-col);
    background-image: radial-gradient(closest-side, rgba(255, 255, 255, .5) 30%, transparent 0);
    background-size: 6px 6px;
    border-radius: 10px;
    margin-bottom: 50px;

    @media (width < 920px) {
      grid-template-columns: 52.178% 41.3%;
      column-gap: 6.522%;
    }

    .right-side {
      grid-area: photo;
      border-radius: 0 10px 10px 0;
      overflow: hidden;

      .img-box {
        display: block;
        width: 100%;
        height: 100%;
      }
    }
    .ttl-group {
      grid-area: title;
      padding: 55px 0 30px 60px;
      position: relative;

      .ttl {
        margin-left: -60px;
        margin-bottom: 27px;

        .jp {
          font-size: 16px;
        }
        .en {
          font-size: 17px;

          --f: .5em;
          --r: .8em;
          
          margin-left: calc(-1*var(--r));
          padding: .1em 1em 0 .65em;
          line-height: 0;
          color: #fff;
          background: var(--color-4);
          border-top: var(--f) solid #0005;
          clip-path: 
            polygon(calc(100% - var(--r)) 98%,0 98%,0 var(--f),var(--r) 0,var(--r) var(--f),100% var(--f));
        }
      }
      .sub-ttl {
        font-weight: 700;
        font-size: 24px;
        line-height: 1.5;
        color: #3373b1;
      }
    }
    .txt {
      padding: 0 0 48px 60px;
      text-align: justify;
    }

    @media (width > 1400px) {
      grid-template-columns: calc(480 / 1400 * 100vw) calc(380 / 1400 * 100vw);
      column-gap: calc(60 / 1400 * 100vw);
      border-radius: calc(10 / 1400 * 100vw);
      margin-bottom: calc(50 / 1400 * 100vw);

      .right-side {
        border-radius: 0 calc(10 / 1400 * 100vw) calc(10 / 1400 * 100vw) 0;
      }
      .ttl-group {
        padding: calc(55 / 1400 * 100vw) 0 calc(30 / 1400 * 100vw) calc(60 / 1400 * 100vw);
  
        .ttl {
          margin-left: calc(-60 / 1400 * 100vw);
          margin-bottom: calc(27 / 1400 * 100vw);
  
          .jp {
            font-size: calc(16 / 1400 * 100vw);
          }
          .en {
            font-size: 17 / 1400 * 100vw;
          }
        }
        .sub-ttl {
          font-size: calc(24 / 1400 * 100vw);
        }
      }
      .txt {
        padding: 0 0 48px 60px;
      }
  
    }
  }
}

.projects {
  padding: 0 50px;

  dt {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;

    &::before {
      content: '● ';
      white-space: pre;
      font-size: 70%;
      vertical-align: middle;
      color: var(--color-4);
    }
  }

  @media (width > 1400px) {
    padding: 0 calc(50 / 1400 * 100vw);

    dt {
      font-size: calc(16 / 1400 * 100vw);
      margin-bottom: calc(20 / 1400 * 100vw);
    }
  }

  .projects-list {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    grid-auto-rows: minmax(90px, 1fr);
    align-items: stretch;
    column-gap: 20px;
    row-gap: 15px;

    li {
      display: block;

       a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 0 70px 0 30px;
        border-width: 1px;
        border-style: solid;
        border-color: var(--color-3);
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.5;
        text-decoration: none;
        background-repeat: no-repeat;
        background-position: center right 30px;
        background-size: 17px auto;
        background-image: url(../../../assets/images/ico-links-popup.svg);

        .name {
          font-size: 13px;
          color: var(--color-2);
          font-feature-settings: "palt"
        }

        @media (hover: hover) {
          opacity: 1;
          transition: opacity .3s ease;
  
          &:hover {
            opacity: .5;
          }
        }
      }
    }
    @media (width > 1400px) {
      grid-template-columns: repeat(2, calc(400 / 1400 * 100vw));
      grid-auto-rows: calc(90 / 1400 * 100vw);
      column-gap: calc(20 / 1400 * 100vw);
      row-gap: calc(15 / 1400 * 100vw);

      li a {
        padding: 0 calc(70 / 1400 * 100vw) 0 calc(30 / 1400 * 100vw);
        border-width: calc(1 / 1400 * 100vw);
        border-radius: calc(10 / 1400 * 100vw);
        font-size: calc(15 / 1400 * 100vw);
        background-position: center right calc(30 / 1400 * 100vw);
        background-size: calc(17 / 1400 * 100vw) auto;

        .name {
          font-size: calc(13 / 1400 * 100vw);
        }
      }
    }
  }
}

.chart-1 {
  display: block;
  width: 902px;
  height: auto;
  margin: 60px auto;
}



/* --------------------------------------------------
jobs page
-------------------------------------------------- */

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  column-gap: 40px;
  margin-top: 40px;

  @media (width > 1400px) {
    column-gap: calc(40 / 1400 * 100vw);
    margin-top: calc(40 / 1400 * 100vw);
  }

  li {
    display: block;
    width: 100%;
    position: relative;

    &:not(:last-child)::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 10px 14px;
      position: absolute;
      top: 65px;
      left: calc(100% + 13px);
      transform: translate(0, -50%);

      @media (width > 1400px) {
        border-width: calc(10 / 1400 * 100vw) calc(14 / 1400 * 100vw);
        top: calc(65 / 1400 * 100vw);
        left: calc(100% + calc(13 / 1400 * 100vw));
      }
    }

    dl {
      display: flex;
      flex-direction: column;
      row-gap: 20px;
      width: 100%;

      dt {
        display: block;
        width: 100%;
        height: 130px;
        border-radius: 10px;
        padding-top: 95px;
        text-align: center;
        font-weight: 700;
        font-size: 16px;
        color: #fff;
        background-repeat: no-repeat;
        background-position: center top 12px;
        background-size: 76px;
      }
      dd {
        font-feature-settings: "palt";
        font-size: 14px;
        line-height: 1.8571428571428572;
        text-align: justify;
      }

      @media (width > 1400px) {
        row-gap: calc(20 / 1400 * 100vw);

        dt {
          height: calc(130 / 1400 * 100vw);
          border-radius: calc(10 / 1400 * 100vw);
          padding-top: calc(95 / 1400 * 100vw);
          font-size: calc(16 / 1400 * 100vw);
          background-position: center top calc(12 / 1400 * 100vw);
          background-size: calc(76 / 1400 * 100vw);
        }
        dd {
          font-size: calc(14 / 1400 * 100vw)
        }
      }
    }

    &:nth-child(1) {

      &::after {
        border-color: transparent transparent transparent rgba(var(--rgb-3), .5);
      }

      dl dt {
        background-color: rgba(var(--rgb-3), .5);
        background-image: url(../images/ico-1.svg);
      }
    }
    &:nth-child(2) {

      &::after {
        border-color: transparent transparent transparent rgba(var(--rgb-3), .66);
      }

      dl dt {
        background-color: rgba(var(--rgb-3), .66);
        background-image: url(../images/ico-2.svg);
      }
      dl dd {
        letter-spacing: -.05em;
      }
    }
    &:nth-child(3) {

      &::after {
        border-color: transparent transparent transparent rgba(var(--rgb-3), .83);
      }

      dl dt {
        background-color: rgba(var(--rgb-3), .83);
        background-image: url(../images/ico-3.svg);
      }
    }
    &:nth-child(4) {

      dl dt {
        background-color: var(--color-3);
        background-image: url(../images/ico-4.svg);
      }
    }
  }
}

.chart-2 {
  display: block;
  width: 100%;
  max-width: 920px;
  height: auto;
  margin: 50px auto 60px;

  @media (width > 1400px) {
    max-width: calc(920 / 1400 * 100vw);
    margin: calc(50 / 1400 * 100vw) auto calc(60 / 1400 * 100vw)
  }
}

.modal-triggers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 70px;
  column-gap: 20px;
  row-gap: 15px;
  align-items: stretch;

  li {
    display: block;
    background-color: var(--bg-col);
    background-image: radial-gradient(closest-side, rgba(255, 255, 255, .5) 30%, transparent 0);
    background-size: 6px 6px;
    border-radius: 10px;

    @media (hover: hover) {
      opacity: 1;
      transition: opacity .3s ease;
  
      &:hover {
        opacity: .5;
      }
    }
  }

  @media (width > 1400px) {
    grid-auto-rows: calc(70 / 1400 * 100vw);
    column-gap: calc(20 / 1400 * 100vw);
    row-gap: calc(15 / 1400 * 100vw);

    li {
      background-size: calc(6 / 1400 * 100vw) calc(6 / 1400 * 100vw);
      border-radius: calc(10 / 1400 * 100vw);
    }
  }
  & + .txt {
    margin-top: .75em;
    font-size: 20px;

    @media (width > 1400px) {
      font-size: calc(20 / 1400 * 100vw);
    }
  }
}
a.pop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 24px 0 30px;
  font-size: 20px;
  text-decoration: none;

  &::after {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    background: url(../../../assets/images/trggr-arrw.svg) no-repeat center / contain
  }

  @media (width > 1400px) {
    padding: 0 calc(24 / 1400 * 100vw) 0 calc(30 / 1400 * 100vw);
    font-size: calc(20 / 1400 * 100vw);

    &::after {
      width: calc(26 / 1400 * 100vw);
      height: calc(26 / 1400 * 100vw);
    }
  }

  span {
    font-weight: 700;
    color: var(--color-6);

    &::before {
      display: inline-block;
      content: '●';
      font-size: .5em;
      vertical-align: bottom;
      transform: translateY(-50%);
      padding-right: .5em;
    }
  }
}
:is(.pop, .job-type) .sales::before {
  color: #9cc1a4;
}
:is(.pop, .job-type) .consultant::before {
  color: #8ac8e6;
}
:is(.pop, .job-type) .it-architect::before {
  color: #d38991;
}
:is(.pop, .job-type) .prjct-manager::before {
  color: #e2c479;
}
:is(.pop, .job-type) .it-specialist::before {
  color: #ecb286;
}
:is(.pop, .job-type) .app-specialist::before {
  color: #bd98b9;
}
:is(.pop, .job-type) .it-srvc-management::before {
  color: #87abcc;
}

/* MODAL */

.modal-set {
  display: none;
}

.job-type {
  display: block;
  width: 100%;
  max-width: 720px;
  padding: 55px 60px 50px;
  background-size: 6px 6px;
  border-radius: 10px;
  background-color: var(--bg-col);
  background-image: radial-gradient(closest-side, rgba(255, 255, 255, .5) 30%, transparent 0);
  margin: 0 auto;
  position: relative;

  .job-ttl {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-6);
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: solid 1px var(--color-3);

    &::before {
      display: inline-block;
      content: '●';
      font-size: .5em;
      vertical-align: bottom;
      transform: translateY(-50%);
      padding-right: .5em;
    }
  }
  .txt {
    text-align: justify;
  }

  .mfp-close {
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 23px;
    right: 23px;
    background: url(../../../assets/images/close-x.svg) no-repeat center / contain;
    color: transparent;
    overflow: hidden;
  }

  @media (width > 1400px) {
    max-width: calc(720 / 1400 * 100vw);
    padding: calc(55 / 1400 * 100vw) calc(60 / 1400 * 100vw) calc(50 / 1400 * 100vw);
    background-size: calc(6 / 1400 * 100vw) calc(6 / 1400 * 100vw);
    border-radius: calc(10 / 1400 * 100vw);

    .job-ttl {
      font-size: calc(20 / 1400 * 100vw);
      padding-bottom: calc(24 / 1400 * 100vw);
      margin-bottom: calc(24 / 1400 * 100vw);
      border-bottom-width: calc(1 / 1400 * 100vw);
    }
    .mfp-close {
      width: calc(16 / 1400 * 100vw);
      height: calc(16 / 1400 * 100vw);
      top: calc(23 / 1400 * 100vw);
      right: calc(23 / 1400 * 100vw);
    }
  }
}

/* overlay at start */
.mfp-fade.mfp-bg {
	opacity: 0;
	transition: opacity 0.3s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	transition: opacity 0.3s ease-out;
}

/* content animate in */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

