/*===========================================================================*/
/*  menu  */
/*===========================================================================*/
.p-menu {
  padding: 105px 0 60px;
}

.p-menu__title {
  font-size: 48px;
  line-height: 1.38;
  text-align: center;
  font-weight: 700;
}

.p-menu__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.p-menu__item {
  display: table;
  box-shadow: 8px 8px 28px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 12px;
}

.p-menu__link {
  width: 200px;
  height: 74px;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: 0.01em;
  color: #313c55;
  font-weight: 700;
  position: relative;
  border: solid 1px #eee;
  padding: 12px 15px 15px;
  display: table-cell;
  vertical-align: middle;
  border-radius: 12px;
  background-color: #fff;
  transition: box-shadow .5s 0s cubic-bezier(.44, .14, .09, 1.02);
}

.p-menu__link::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 12px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/function/arrow-bottom-perple.svg) no-repeat center center/contain;
}

.p-menu__link:hover {
  box-shadow: 8px 8px 28px 0px rgba(0, 0, 0, 0.22);
}

.p-menu__link span {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #262b36;
  font-weight: 400;
  display: block;
}

.p-menu__wrapper {
  padding: 0 20px 20px;
  position: sticky;
  top: 100px;
  z-index: 3;
}

@media screen and (max-width: 900px) {
  .p-menu {
    padding: 50px 0 25px;
  }

  .p-menu__title {
    font-size: 26px;
  }

  .p-menu__items {
    margin-top: 25px;
    padding: 0 30px;
    max-width: 375px;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
  }

  .p-menu__item {
    width: 100%;
  }

  .p-menu__link {
    padding: 8px 25px 13px 25px;
    font-size: 16px;
    line-height: 1.33;
    letter-spacing: 0.02em;
  }

  .p-menu__link:hover {
    box-shadow: none;
  }

  .p-menu__link::after {
    right: 25px;
    width: 16px;
    height: 12px;
  }

  .p-menu__link span {
    font-size: 11px;
  }

  .p-menu__wrapper {
    padding: 0 0 60px;
    position: relative;
    top: unset;
  }
}

/*===========================================================================*/
/*  functionContent  */
/*===========================================================================*/
.p-functionContent {
  padding: 120px 0 130px;
  background-color: #F7F8F8;
  margin-top: 120px;
}

.p-functionContent__section {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 132px;
}

.p-functionContent__section:first-child {
  padding-top: 0;
}

.p-functionContent__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  width: 22.8301886792%;
  position: sticky;
  top: 185px;
}

.p-functionContent__head {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 700;
  color: #262B36;
  text-align: center;
}

.p-functionContent__head span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 3px;
}

.p-functionContent__icon {
  width: 78px;
  height: 78px;
  border-radius: 11px;
  background-color: #fff;
  box-shadow: 20px 20px 50px 0px rgba(0, 0, 0, 0.0196078431);
  border: 0.74px solid #EEEEEE;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-functionContent__img {
  width: 40px;
  height: 40px;
}

.p-functionContent__items {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-left: 50px;
  border-left: 1px solid #CDCDCD;
  max-width: 818px;
  width: 77.1698113208%;
}

.p-functionContent__item {
  padding: 10px 10px 30px;
  width: calc((100% - 24px) / 2);
  border-radius: 12px;
  box-shadow: 20px 20px 50px 0px rgba(0, 0, 0, 0.0196078431);
  background-color: #fff;
}

.p-functionContent__item--img {
  border-radius: 10px;
  overflow: hidden;
}

.p-functionContent__item--txts {
  padding: 20px 20px 0;
}

.p-functionContent__item--title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  color: #262B36;
  margin-bottom: 16px;
  position: relative;
}

.p-functionContent__item--tags {
  margin-bottom: 15px;
}

.p-functionContent__item--tags span {
  font-size: 11px;
  font-weight: 500;
  line-height: 15.93px;
  padding: 3px 10px 5px 10px;
  background-color: #F8F8F8;
  border-radius: 6px;
  margin-right: 6px;
  color: #262B36;
}

.p-functionContent__item--tags span:last-child {
  margin-right: 0;
}

.p-functionContent__item--description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #262B36;
}

@media screen and (max-width: 900px) {
  .p-functionContent {
    padding: 60px 20px;
    margin-top: 0;
  }

  .p-functionContent__section {
    flex-direction: column;
    width: 100%;
    max-width: 375px;
    margin: 0 auto 60px;
    padding-top: 0;
  }

  .p-functionContent__section:last-child {
    margin-bottom: 0;
  }

  .p-functionContent__icon {
    width: 68px;
    height: 68px;
  }

  .p-functionContent__img {
    width: 35px;
    height: 35px;
  }

  .p-functionContent__head {
    font-size: 18px;
    text-align: left;
  }

  .p-functionContent__head span {
    font-size: 13px;
  }

  .p-functionContent__box {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 20px;
    position: inherit;
  }

  .p-functionContent__items {
    padding: 25px 0 0 0;
    border-top: 1px solid #CDCDCD;
    border-left: none;
    width: 100%;
    gap: 12px;
  }

  .p-functionContent__item {
    width: 100%;
    padding-bottom: 25px;
  }

  .p-functionContent__item--txts {
    padding: 15px 15px 0;
  }

  .p-functionContent__item--title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-right: 10.5610561056%;
  }

  .p-functionContent__item--tags {
    margin-bottom: 12px;
  }

  .p-functionContent__item--tags span {
    font-size: 10px;
    line-height: 1.45;
    padding: 3px 8px 4px 8px;
  }

  .p-functionContent__item--description {
    font-size: 13px;
  }
}

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