/* ==========================================================================
 * Page Name : [自社開発プロダクト]Remote Work ManagerCSS
 * File Name : /assets/css/remote-work-management.css
 * Created   : 2026-07-28
 * Updated   : 2026-07-28
 * ========================================================================== */

/* -- Remote Work Managerとは? -- */
/* 監視システムの仕組み */
.rwm-point-flow {
  margin-top: 20px;
  padding: 20px;
  background-color: #F7F7F7;
  border-radius: 15px;
}
.rwm-point-flow-title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}
.rwm-point-flow-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rwm-point-flow-list li {
  font-weight: var(--font-weight-regular);
}
.rwm-point-flow-list li span {
  margin-bottom: 5px;
  padding: 3px 10px 2px;
  display: block;
  width: fit-content;
  background-color: var(--custom-color-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .rwm-point-flow {
    margin-top: 30px;
  }
}

/* -- 「yet」で実際に運用中！ -- */
.rwm-os {
  padding-top: 100px;
  padding-bottom: 180px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  background-color: var(--custom-color-1);
}
.rwm-os-subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
}
.rwm-os-title {
  text-align: center;
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
}
.rwm-os-text {
  margin-top: 30px;
  text-align: center;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  line-height: 2.0;
}
.rwm-os-company {
  margin-inline: auto;
  margin-top: 30px;
  padding: 30px;
  background-color: var(--color-white);
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: fit-content;
}
.rwm-os-company-logo {
  width: 100%;
  max-width: 116px;
}
.rwm-os-company p {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 2.0;
}
.rwm-os-company p > img {
  margin-left: 13px;
  margin-right: 4px;
  margin-bottom: 3px;
  display: inline-block;
  width: 39px;
}
/* 「yet」で導入して変わったこと */
.rwm-os-change {
  margin-top: 55px;
  padding: 50px 30px;
  background-color: var(--color-white);
  border-radius: 15px;
}
.rwm-os-change-title {
  text-align: center;
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
}
.rwm-os-change-fl {
  margin-top: 53px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.rwm-os-change-box {
  flex: 1;
  padding: 40px 30px;
  border-radius: 15px;
  position: relative;
}
.rwm-os-change-box.-before {
  background-color: #F7F7F7;
}
.rwm-os-change-box.-after {
  background-color: #FEFAF6;
}
.rwm-os-change-box::before {
  display: block;
  padding: 2px 60px;
  width: fit-content;
  border-radius: 999px;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  position: absolute;
  top: -15px;
  left: calc(50% - 83px);
  z-index: 2;
}
.rwm-os-change-box.-before:before {
  content: "導入前";
  background-color: #584849;
}
.rwm-os-change-box.-after::before {
  content: "導入後";
  background-color: var(--color-main);
}
.rwm-os-change-catch {
  text-align: center;
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
}
.rwm-os-change-box img {
  margin-top: 20px;
  margin-inline: auto;
  display: block;
  max-width: 205px;
}
.rwm-os-change-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.rwm-os-change-list li {
  padding: 10px 20px;
  background-color: var(--color-white);
  border-radius: 5px;
  width: 100%;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
}
.rwm-os-change-more {
  margin-top: 15px;
  text-align: right;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
}
.rwm-os-change-arrow {
  width: 50px;
  height: 76px;
  background: url("../../images/product/RemoteWorkManager/os-arrow.svg") center center /contain no-repeat;
}

.rwm-os-message {
  margin-top: 65px;
  text-align: center;
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1060px) {
  /* 「yet」で導入して変わったこと */
  .rwm-os-change-fl {
    margin-inline: auto;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
  }
  .rwm-os-change-box {
    width: 100%;
  }

  .rwm-os-change-arrow {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 767px) {
  .rwm-os {
    padding-top: 50px;
    padding-bottom: 80px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .rwm-os-subtitle {
    font-size: 14px;
  }
  .rwm-os-title {
    font-size: 20px;
  }
  .rwm-os-text {
    margin-top: 14px;
    text-align: left;
    line-height: 1.7;
  }
  .rwm-os-company {
    margin-inline: auto;
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
    width: min(100%, 500px);
  }
  .rwm-os-company-logo {
    width: 100%;
    max-width: 116px;
  }
  /* 「yet」で導入して変わったこと */
  .rwm-os-change {
    margin-inline: auto;
    margin-top: 30px;
    padding: 30px 20px;
    width: min(100%, 500px);
  }
  .rwm-os-change-title {
    font-size: 20px;
  }
  .rwm-os-change-fl {
    margin-top: 40px;
  }
  .rwm-os-change-box {
    padding: 30px 20px;
  }
  .rwm-os-change-catch {
    font-size: 18px;
  }
  .rwm-os-change-list {
    margin-top: 20px;
  }
  .rwm-os-change-more {
    margin-top: 10px;
  }

  .rwm-os-message {
    margin-top: 50px;
    font-size: 20px;
  }
}

/* 料金プラン */
.page.-rwm .pr-price {
  margin-top: -60px;
  padding-top: 100px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .page.-rwm .pr-price {
    margin-top: -20px;
    padding-top: 50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}