@charset "utf-8";
:root {
  --mainColor: #003366;
  --baseColor: #ffffff;
  --pcnBlue: #dbeeff;
  --tableColor: #7c7c7c;
  --borderColor: #7c7c7c;
  --subColor: #053d94;
  --accentColor: #1a8796;
  --btnColor: #195287;
  --infobgcolor: #f5f5f5;
  --shadowColor: 0px 0px 25px 1px rgb(21 43 73 / 8%);
  --boxBorder: 10px;
  --space-xs: 2em;
  --space-s: 4em;
  --space-m: 6em;
}
.pcn-container .nw {
  @media (max-width: 768px) {
    display: inline;
  }
}
.is-pc {
  display: block;
  @media (max-width: 768px) {
    display: none;
  }
}
.is-sp {
  display: none;
  @media (max-width: 768px) {
    display: block;
  }
}
/* メインビジュアル */

.mv {
  position: relative;
  background-image: url(../image/service/it-support/teamviewer-one/mv_pc.webp);
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  min-height: 600px;
  width: 100%;
  display: grid;
  align-items: center;
  padding-left: 50px;
}
@media (max-width: 768px) {
  .mv {
        height: 90vh;
        min-height: 800px;
        background-size: cover;
        padding: 0 20px;
        width: 100vw;
        margin-left: -2em;
  }
}
.p-mv-area {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 0px;
}
@media (max-width: 768px) {
  .p-mv-area {
    padding: 30px 0 0;
    flex-direction: column;
    column-gap: none;
    row-gap: 50px;
  }
}
.p-mv-area__img {
  width: fit-content;
  @media (max-width: 768px) {
    order: 0;
  }
}
.p-mv-area__img img {
  max-width: 700px;
  width: 100%;
  height: auto;
  @media (max-width: 768px) {
    max-width: 500px;
  }
}
.p-mv-area__content {
  width: fit-content;
  @media (max-width: 768px) {
    order: 1;
  }
}
.p-mv-area-logo {
  display: block;
  width: 200px;
  height: auto;
  @media (max-width: 768px) {
    width: 200px;
  }
}
.p-mv-area h1 {
  margin: 20px 0 40px;
  font-size: clamp(30px, 2.7vw, 44px);
  font-weight: bold;
  line-height: 1.4em;
  color: var(--mainColor);
}
@media (max-width: 768px) {
  .p-mv-area h1 {
    font-size: 2.3em;
    margin: 20px 0;
  }
}
.p-mv-area .p-mv-sub-ttl {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: clamp(22px, 2.1vw, 26px);
  line-height: 140%;
}
.p-mv-text {
  font-size: clamp(16px, 1.2vw, 18px);
}

/* メインビジュアル */

/* レイアウト */
.c-section {
  margin-top: 6em;
  padding: 0;
}
@media (max-width: 768px) {
  .pcn-container {
    padding-left: 2em;
    padding-right: 2em;
  }
  .c-section {
    margin-top: 2em;
    padding: 0;
  }
}
/* セクション共通パーツ */
h2.pcn_underLine {
  font-size: 2.4em;
}
@media (max-width: 768px) {
  h2.pcn_underLine {
    padding: 0 0 20px;
    font-size: min(2.2em, 5.5vw);
  }
}
.p-dex-text .c-h3-ttl {
  border: none;
}
.p-card-list {
  margin: 0 auto;
  gap: 2em;
}
.p-card-list > li {
  display: grid;
  padding: var(--space-xs);
  border-radius: 10px;
  grid-row: span 3;
  gap: 0;
  grid-template-rows: subgrid;
}
.p-card-text > li {
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 0.75em;
}
@media (max-width: 768px) {
  .p-card-text > li {
    font-size: min(4vw, 1.6em);
  }
}

.p-shadow-box > li {
  border: 1px solid var(--accentColor);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-shadow-box .c-h3-ttl {
  border: none;
  font-size: 1.8em;
}

.p-shadow-box > li img {
  width: 250px;
}

.p-shadow-box > li p {
  width: fit-content;
  text-align: center;
}
/* セクション共通パーツ */

/* アンカーリンク */
.p-float-list {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
}

@media (max-width: 768px) {
  .p-float-list {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-row: span 3;
  }
}
.p-float-list li {
  display: grid;
  grid-template-rows: subgrid;
}
.p-float-list li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: var(--baseColor);
  color: var(--mainColor);
  border: solid 1px #bdbdbd;
  width: 100%;
  height: 100%;
  padding: 2em 0.5em;
  border-radius: 10px;
  justify-content: center;
  font-size: 1.3em;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .p-float-list li a {
    font-size: min(1.1em, 5vw);
    padding: 1em 0.5em;
  }
}
.p-float-list li a:hover {
  background-color: var(--mainColor);
  color: var(--baseColor);
}
/* .p-float-list li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 60px solid #555555;
  border-bottom: 0;
} */

/* アンカーリンク */

/* リード（課題） */
.p-lead-list > li {
  grid-row: span 2;
  padding: var(--space-xs);
  border-radius: var(--boxBorder);
}

.p-lead-text {
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-lead-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .p-lead-list.c-grid.c-gap2 {
    row-gap: 0;
  }
  .p-lead-list > li {
    width: 100%;
    padding: 1em;
  }
  .p-lead-text {
    font-size: min(4vw, 1.6em);
    @media (max-width: 768px) {
      text-align: left;
    }
  }
}
.p-lead-inner {
  display: grid;
  justify-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .p-lead-inner {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
  }
}

.p-lead-img {
  width: 11rem;
  position: relative;
  z-index: 1;
  @media (max-width: 768px) {
    flex: 1;
    padding: 10px;
    border-radius: 100px;
    background-color: var(--mainColor);
  }
}
.p-lead-img::before {
  position: absolute;
  content: "";
  background-color: var(--mainColor);
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  z-index: 0;
  @media (max-width: 768px) {
    display: none;
  }
}
.p-lead-img > img {
  position: relative;
  z-index: 1;
  @media (max-width: 768px) {
    width: 80px;
  }
}
/* リード（課題） */

/* サービス詳細 */

.p-can-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  width: 100%;
}

.p-can-area {
  background-color: #ffffff;
  box-shadow: var(--shadowColor);
  border-radius: 10px;
  width: 40%;
  @media (max-width: 768px) {
    width: 100%;
  }
}
.p-can-area-arrow {
  width: 38px;
  height: 100%;
  @media (max-width: 768px) {
    transform: rotate(90deg);
    margin: 20px auto;
  }
}
.p-can-box {
  border-radius: 20px;
}
.p-can-box.p-can-after .p-ttl-lv3 {
  background-color: var(--accentColor);
  text-align: center;
}

.p-can-box .p-ttl-lv3 {
  border-radius: 10px 10px 0 0;
  background-color: var(--tableColor);
  color: #ffffff;
  font-weight: bold;
  padding: 0.75em;
  font-size: 1.4em;
}
.p-can-text {
  padding: var(--space-xs);
}

.p-can-text li {
  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 120%;
  }
}
.p-can-before {
  position: relative;
}
.p-can-before h3 {
  text-align: center;
}
.p-detail-area .pcn_underLine {
  @media (max-width: 768px) {
    text-align: center;
    display: block;
    margin: 20px auto 0;
  }
}
.p-detail-area .c-h3-ttl {
  font-size: 1.5em;
  line-height: 180%;
}

.list-disc {
  width: fit-content;
  margin: auto;
}
.point ul li .c-img-wrap {
  flex: 1;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.point ul li .c-img-wrap img {
  width: 150px;
  height: auto;
}
@media (max-width: 768px) {
  .point ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
  }
  .point ul li {
    width: calc((100% - 10px) / 2);
    padding: 1em;
    /* display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 20px; */
  }
  .point ul li .c-img-wrap {
    flex: 1;
    margin-bottom: 0;
  }
  .point ul li .c-img-wrap img {
    width: 100px;
    height: auto;
  }
  .point .c-h3-ttl {
    font-size: 20px;
  }
  .point li p {
    font-size: 16px;
    text-align: left;
  }
}
.p-effect-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.p-effect-list > li {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-effect-list > li img {
  width: 250px;
}
.p-effect-list .c-h3-ttl {
  /* flex: 1; */
  border: none;
  font-size: 1.8em;

  text-align: center;
}
.p-effect-list > li p {
  width: fit-content;
  text-align: center;
}
@media (max-width: 768px) {
  .p-effect-list {
    width: 100%;
    flex-direction: column;
  }
  .p-effect-list > li {
    padding: 1em;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .p-effect-list > li > .c-img-wrap {
    margin: 0 !important;
  }
  .p-effect-list > li img {
    width: 120px;
  }
  .p-effect-list--content {
    flex: 1;
  }
  .p-effect-list .c-h3-ttl {
    flex: 1;
    border: none;
    font-size: 20px;
    padding: 0;
    text-align: left;
  }
  .p-effect-list > li p {
    font-size: 16px;
    text-align: left;
  }
}
.p-pcn-list {
  grid-row: auto;
}
.p-pcn-list li {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 2em;
}
@media (max-width: 1024px) {
  .p-pcn-list li {
    grid-template-columns: auto;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
}
@media (max-width: 768px) {
  .pcnet-point ul.c-grid.c-gap3 {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .pcnet-point ul li {
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
  .pcnet-point ul li > .c-img-wrap {
    margin: 0 !important;
  }
  .pcnet-point ul li img {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .pcnet-point .p-card-text {
    flex: 1;
  }
  .pcnet-point .c-h3-ttl {
    flex: 1;
    border: none;
    font-size: 20px;
    padding: 0;
    text-align: left;
  }
  .pcnet-point li p {
    font-size: 16px;
    text-align: left;
  }
}
.p-pcn-list .c-h3-ttl {
  border-left-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 10px;
}
.p-flow--inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.p-flow--block {
  width: calc((100% - 20px * 3) / 4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
}
.p-flow--icon {
  display: block;
  width: 40%;
  height: auto;
}
.p-flow--heading {
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.p-flow--text {
  font-size: 1.3em;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 768px) {
  .p-flow--inner {
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 20px;
  }
  .p-flow--block {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
  }
  .p-flow--icon {
    width: 100px;
  }
  .p-flow--heading {
    font-size: 22px;
    text-align: left;
    margin-bottom: 10px;
  }
  .p-flow--text {
    font-size: 16px;
    text-align: left;
  }
}
.p-contact-area {
  background-color: var(--pcnBlue);
  border-radius: 12px;
  padding: 3em;
}
.p-contact-area--inner {
  justify-content: space-between;
  align-items: stretch;
}
.p-contact-area--inner--content {
  width: 60%;
}
.p-contact-text {
  font-weight: bold;
  font-size: 2em;
  line-height: 140%;
  color: #003267;
  @media (max-width: 768px) {
    font-size: 22px;
  }
}
.p-contact-area--inner--cta {
  background-color: #02378d;
  width: 40%;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}
.p-contact-area--inner--cta img {
  width: 50px;
  height: auto;
}
.p-contact-area--inner--cta a {
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: clamp(1.2em, 2.4vw, 2em);
  line-height: 1em;
  font-weight: bold;
}
.p-contact-btn {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-contact-area {
    padding: 2em;
  }
  .p-contact-area--inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .p-contact-area--inner--content {
    width: 100%;
    margin-bottom: 40px;
  }
  .p-contact-text {
    font-size: 22px;
  }
  .p-contact-area--inner--cta {
    width: 100%;
    height: 100px;
  }
  .p-contact-area--inner--cta img {
    width: 30px;
    height: auto;
  }
  .p-contact-area--inner--cta a {
    font-size: clamp(1.4em, 2.4vw, 2em);
  }
}
.p-point-main {
  font-size: 1.5em;
  line-height: 1.3em;
  border-left: 3px double var(--mainColor);
  padding-left: 7px;
  font-weight: bold;
  color: var(--mainColor);
  font-size: 1.6em;
}

.p-flow-area {
  overflow-x: auto;
}

.p-flow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2em;
}
@media (max-width: 972px) {
  .p-flow-list {
    min-width: 1200px;
  }
}
.p-flow-list li {
  position: relative;
  justify-items: center;
}
.p-flow-list li::before {
  position: absolute;
  content: "";
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 11px solid #555555;
  border-right: 0;
  left: -1.3em;
  top: 50%;
  transform: translate(10px, 10px);
  transform: translateY(-100%);
}
.p-flow-list li:first-of-type::before {
  display: none;
}

.p-flow-wrap {
  background-color: var(--pcnBlue);
  width: 100%;
  border-radius: 12px;
  padding: 1.5em 1em 1em;
  display: grid;
  grid-template-rows: 1fr 0.5fr;
  align-items: center;
  gap: 1em;
}

@media (max-width: 768px) {
  .p-flow-wrap {
    width: 15em;
    height: 12em;
  }
}
.p-flow-icon {
  text-align: center;
}
.p-fas-style {
  font-size: 4.5em;
  color: var(--mainColor);
  font-weight: 900 !important;
}
@media (max-width: 768px) {
  .p-fas-style {
    font-size: 4em;
  }
}

.p-flow-ttl {
  text-align: center;
  font-weight: bold;
  color: var(--mainColor);
  font-size: 1.6em;
}
.p-flow-text {
  font-size: 1.2em;
  text-align: center;
  margin-top: 0.5em;
}
.p-knowledge-wrap {
  padding: 5em 4em;
}
@media (max-width: 768px) {
  .p-knowledge-wrap {
    padding: 3em 2em;
  }
}
.p-knowledge-col {
  gap: 3em;
  place-items: center;
}
.p-knowledge-merit li {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 0.4em;
}
.p-knowledge-reco-list {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 0.4em;
  width: 100%;
}
.p-knowledge-reco-list li {
  margin-bottom: 10px;
}
