/*====================================*/
/* individual
/*====================================*/
.individual {
  width: 1060px;
  margin: 90px auto 0 auto;

  @media screen and (max-width: 767px) {
    width: calc(100% - 40px);
    margin: 48px auto 0 auto;
  }

  .individual__introduce-text {
    text-align: center;

    @media screen and (max-width: 767px) {
      font-size: 14px;
      text-align: left;
    }
  }
}

/*====================================*/
/* service
/*====================================*/
.service {
  width: 1060px;
  margin: 120px auto 0 auto;

  @media screen and (max-width: 767px) {
    width: calc(100% - 40px);
    margin: 54px auto 0 auto;
  }

  .service__dot {
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
    width: 8px;
    height: 68px;
    margin: 50px auto 0 auto;

    @media screen and (max-width: 767px) {
      width: 5px;
      height: 42px;
    }

    span {
      width: 8px;
      height: 8px;
      border-radius: 10px;
      background-color: #A7A7B5;

      @media screen and (max-width: 767px) {
        width: 5px;
        height: 5px;
      }
    }
  }

  .service__under-text {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5em;
    text-align: center;
    color: var(--color-primary);
    margin-top: 28px;

    @media screen and (max-width: 767px) {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.75em;
      margin-top: 16px;
    }
  }
}

/*====================================*/
/* flow
/*====================================*/
.flow {
  width: 1200px;
  margin: 110px auto 0 auto;
  padding: 0 72px 68px 72px;
  position: relative;

  &::before {
    content: "";
    width: 100%;
    height: calc(100% - 46px);
    background-color: #F9F4F2;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;

    @media screen and (max-width: 767px) {
      height: 100%;
      background-color: #FCF9F9;
      border-radius: 24px 24px 0 0;
    }
  }

  @media screen and (max-width: 767px) {
    width: 100%;
    margin: 80px auto 0 auto;
    padding: 48px 0 48px 20px;
  }


  .flow__scroll {
    @media screen and (max-width: 767px) {
      width: 100%;
      overflow-x: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;

      &::-webkit-scrollbar {
        display: none;
      }
    }
  }

  .flow__flex {
    margin-top: 52px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;

    @media screen and (max-width: 767px) {
      width: 1060px;
      margin-top: 32px;
    }
  }

  .flow__period {
    width: 100%;
    height: 57px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #fff;
  }

  .flow__left {
    width: 780px;

    .flow__period {
      background-color: #2073EE;
    }
  }

  .flow__right {
    width: 226px;

    .flow__period {
      background-color: #002A80;
    }
  }

  .flow__step {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 24px;
  }

  .flow__contents {
    width: 225px;
    padding: 16px;
    border-radius: 8px;
    background-color: #fff;
  }

  .flow__title {
    font-size: 20px;
    text-align: center;
    color: var(--color-primary);
  }

  .flow__list {
    margin-top: 8px;
  }

  .flow__arrow {
    width: 9px;
    height: 16px;
    display: block;
    margin: auto;
  }

  .flow__arrow-main {
    width: 9px;
    height: 16px;
    display: block;
    margin-top: 150px;
  }

  .c-annotation {
    margin-top: 32px;

    @media screen and (max-width: 767px) {
      margin-top: 20px;
    }
  }
}

/*====================================*/
/* footer
/*====================================*/
.footer {
  margin-top: 160px;

  @media screen and (max-width: 767px) {
    margin-top: 0;
  }
}
