@charset "UTF-8";
/* =========================================================
 *
 * function__pagenav
 * ====================================================== */

.function__pagenav {
  position: relative;
  padding-top: 80px;
}

.function__pagenav::before {
  content: "";
  height: 374px;
  width: 100%;
  background-color: #8ec6db;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.function__pagenav::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100vw 200px 0;
  border-color: transparent #8ec6db transparent transparent;
  position: absolute;
  top: 374px;
  z-index: -1;
}

.function__pagenav__inner {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}

.function__pagenav a {
  width: 31%;
  height: 29.7vw;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.function__pagenav a > p {
  height: 19.2vw;
  margin-bottom: 2.1vw;
  overflow: hidden;
}

.function__pagenav a > p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.function__pagenav a em {
  display: block;
  text-align: center;
  font-size: max(1.2vw, 14px);
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 2.42vw;
}

.function__pagenav .funcompass__viewmore {
  font-size: 1vw;
  margin: 0 auto;
  width: max(124px, 8.85vw);
  display: block;
}

.function__pagenav .funcompass__viewmore span::before {
  display: none;
}

.function__pagenav .funcompass__viewmore span::before,
.function__pagenav .funcompass__viewmore span::after {
  content: "";
  width: 11px;
  height: 7px;
  background: url(/content/dam/nttcom/hq/jp/business/lp/funcompass/img/function/icon-arrow.svg)
    no-repeat 50% 50% / contain;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(0);
}

.function__pagenav .funcompass__viewmore::before {
  width: 40px;
  height: 40px;
  left: -20px;
}

@media (hover: hover) and (pointer: fine) {
  .function__pagenav a:hover .funcompass__viewmore::before {
    width: calc(100% + 40px);
  }
  .function__pagenav a:hover > p img {
    transform: scale(1.04);
  }
}

@media screen and (max-width: 767px) {
  .function__pagenav {
    padding-top: 40px;
  }

  .function__pagenav::before {
    content: "";
    height: 225px;
  }

  .function__pagenav::after {
    border-width: 0 100vw 112px 0;
    top: 225px;
  }

  .function__pagenav__inner {
    display: block;
    width: auto;
    margin: 0 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
  }

  .function__pagenav a {
    width: auto;
    height: auto;
    border-radius: 0px;
    box-shadow: none;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #d0d0d0;
  }

  .function__pagenav a:last-child {
    border-bottom: 0;
  }

  .function__pagenav a > p {
    height: 80px;
    margin-bottom: 0;
    overflow: hidden;
    margin-right: 15px;
    width: 106px;
  }

  .function__pagenav a em {
    display: block;
    text-align: center;
    font-size: min(3.7vw, 14px);
    letter-spacing: 0;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .function__pagenav .funcompass__viewmore {
    font-size: 10px;
    margin: 0 auto;
    width: 85px;
    display: block;
    position: absolute;
    left: 132px;
    bottom: 20px;
  }

  .function__pagenav .funcompass__viewmore span::before {
    display: none;
  }

  .function__pagenav .funcompass__viewmore span::before,
  .function__pagenav .funcompass__viewmore span::after {
    content: "";
    width: 10px;
    height: 7px;
    background: url(/content/dam/nttcom/hq/jp/business/lp/funcompass/img/function/icon-arrow.svg)
      no-repeat 50% 50% / contain;
    position: absolute;
    right: 0;
    top: 2px;
    bottom: 0;
    margin: auto;
    transform: rotate(0);
  }

  .function__pagenav .funcompass__viewmore::before {
    width: 18px;
    height: 18px;
    left: -10px;
  }
}

/* =========================================================
 *
 * function__pageheader
 * ====================================================== */
.function__pageheader {
  position: fixed;
  width: 100%;
  left: 0;
  top: 80px;
  background-color: rgba(232, 244, 238, 0.9);
  z-index: 97;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.function__pageheader.is-active {
  opacity: 1;
}

.function__pageheader a {
  color: #222;
  font-size: 14px;
  line-height: 1.1;
  margin: 0 40px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  text-align: center;
}

.function__pageheader a::after {
  content: "";
  width: 11px;
  height: 7px;
  background: url(/content/dam/nttcom/hq/jp/business/lp/funcompass/img/function/icon-arrow.svg)
    no-repeat 50% 50% / contain;
  display: inline-block;
  margin: auto;
  transform: rotate(0);
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .function__pageheader {
    top: 65px;
  }

  .function__pageheader a {
    font-size: 3.2vw;
    margin: 0 3.2vw;
    padding: 13px 0 12px;
    display: block;
  }

  .function__pageheader a::after {
    display: block;
    margin: 5px auto 0;
  }
}

/* =========================================================
 *
 * function-secttl
 * ====================================================== */

.function-secttl {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 100px;
}

.function-secttl em {
  font-size: 4.2vw;
  letter-spacing: 0.1em;
  color: #222;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.function-secttl em::before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #222;
  display: block;
  margin: 0 auto 20px;
}

.function-secttl > em span {
  font-weight: 400;
}

.function-secttl > span {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
}

@media screen and (max-width: 767px) {
  .function-secttl {
    margin-bottom: 60px;
    padding-top: 100px;
  }

  .function-secttl em {
    font-size: min(10.6vw, 40px);
    margin-bottom: 10px;
  }

  .function-secttl em::before {
    height: 30px;
    margin: 0 auto 10px;
  }

  .function-secttl > em span {
    display: block;
    margin-bottom: 5px;
  }

  .function-secttl > span {
    font-size: min(4.2vw, 16px);
  }
}

/* =========================================================
 *
 * function__forusers
 * ====================================================== */

.function__forusers .function-secttl {
  margin-bottom: 100px;
}

.function__forusers__sec {
  width: 77.4vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 96px;
}

.function__forusers__sec > figure {
  width: 51%;
  display: block;
  position: relative;
}

.function__forusers__sec > figure::before {
  content: "";
  width: 50vw;
  height: 28.5vw;
  position: absolute;
  left: 100px;
  top: 6vw;
  background-color: #8ec6db;
  z-index: -1;
  border-radius: 20px;
}

.function__forusers__sec > div {
  position: relative;
  width: 44%;
  flex: none;
  white-space: nowrap;
}

.function__forusers__sec > div span {
  position: absolute;
  width: 7.8vw;
  height: 7.8vw;
  left: 0;
  top: 0;
  font-size: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8ec6db;
}

.function__forusers__sec > div span::after {
  content: "";
  width: 7.8vw;
  height: 7.8vw;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(/content/dam/nttcom/hq/jp/business/lp/funcompass/img/function/circle-function.svg)
    no-repeat 50% 50% / contain;
  animation: rotation 30s linear infinite reverse;
  z-index: 11;
  pointer-events: none;
}

.function__forusers__sec h3 {
  margin-left: 9.6vw;
  font-size: 3.57vw;
  margin-bottom: 10px;
}

.function__forusers__sec > div > em {
  background-color: #8ec6db;
  border-radius: 5px;
  color: #fff;
  padding: 8px 10px;
  margin-right: 5px;
  display: inline-block;
  font-size: 1.1vw;
}

.function__forusers__sec > div > em:nth-of-type(1) {
  margin-left: 9.6vw;
}

.function__forusers__sec ul {
  list-style: none;
  margin: 43px 0 40px;
}

.function__forusers__sec ul li {
  font-weight: 500;
  font-size: 1.1vw;
  line-height: 1.5;
  padding-left: 3vw;
  position: relative;
  margin-bottom: 20px;
}

.function__forusers__sec ul li::before {
  content: "";
  width: 2.1vw;
  height: 2.1vw;
  background: url(/content/dam/nttcom/hq/jp/business/lp/funcompass/img/about/icon-check.svg)
    no-repeat 50% 50% / contain;
  position: absolute;
  left: 0;
  top: 0;
}

.function__forusers__sec > div img {
  height: 17.8vw;
  display: block;
  margin: 0 auto;
}

.function__forusers__sec:nth-child(2n) {
  flex-direction: row-reverse;
}

.function__forusers__sec:nth-child(2n) > figure::before {
  left: auto;
  right: 100px;
}

.function__forusers__other {
  margin-bottom: 150px;
}

.function__forusers__other h3 {
  text-align: center;
  font-size: 2.1vw;
  margin-bottom: 40px;
}

.function__forusers__other__inner {
  display: flex;
  justify-content: space-between;
}

.function__forusers__other__inner > div {
  width: 48%;
  background-color: #e8f4f8;
  border-radius: 10px;
  padding: 60px 0 40px;
  position: relative;
}

.function__forusers__other__inner h4 {
  position: absolute;
  left: 0;
  right: 0;
  top: -19px;
  padding: 10px 30px 11px;
  background-color: #8ec6db;
  color: #fff;
  border-radius: 25px;
  display: inline-block;
  width: 160px;
  text-align: center;
  margin: auto;
}

.function__forusers__other__inner img {
  height: min(27.2vw, 381px);
  width: auto;
  display: block;
  margin: 0 auto -3vw;
}

.function__forusers__other__inner p {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  color: #333;
  margin: 0 60px;
}

.function__forusers__other__inner small {
  font-size: 14px;
  display: block;
  margin-top: 20px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .function__forusers .function-secttl {
    margin-bottom: 60px;
  }

  .function__forusers__sec {
    width: auto;
    margin: 0 20px;
    display: block;
    margin-bottom: 20px;
  }

  .function__forusers__sec > figure {
    width: auto;
    display: block;
    position: relative;
  }

  .function__forusers__sec > figure::before {
    content: "";
    width: 73.3vw;
    height: 66.6vw;
    left: auto;
    right: -30px;
    top: 12vw;
    border-radius: 10px;
  }

  .function__forusers__sec > div {
    width: auto;
    flex: none;
    white-space: normal;
    margin-bottom: 50px;
  }

  .function__forusers__sec > div span {
    width: 29.3vw;
    height: 29.3vw;
    font-size: 7.4vw;
    top: -10px;
  }

  .function__forusers__sec > div span::after {
    width: 100%;
    height: 100%;
  }

  .function__forusers__sec h3 {
    margin-left: 36vw;
    font-size: 6.4vw;
    margin-bottom: 15px;
    white-space: nowrap;
  }

  .function__forusers__sec > div > em {
    padding: 8px 10px;
    font-size: 2.8vw;
  }

  .function__forusers__sec > div > em:nth-of-type(1) {
    margin-left: 36vw;
  }

  .function__forusers__sec ul {
    list-style: none;
    margin: 8vw 0;
  }

  .function__forusers__sec ul li {
    font-size: 4.2vw;
    padding-left: 7.3vw;
    position: relative;
    margin: 0 20px 10px;
  }

  .function__forusers__sec ul li br {
    display: none;
  }

  .function__forusers__sec ul li::before {
    width: 5.3vw;
    height: 5.3vw;
  }

  .function__forusers__sec > div img {
    height: 48vw;
    display: block;
    margin: 0 auto;
  }

  .function__forusers__sec:nth-child(2n) {
    flex-direction: row-reverse;
  }

  .function__forusers__sec:nth-child(2n) > figure::before {
    left: -30px;
    right: auto;
  }

  .function__forusers__other {
    margin-bottom: 100px;
  }

  .function__forusers__other h3 {
    font-size: 6.4vw;
    margin-bottom: 63px;
  }

  .function__forusers__other__inner {
    display: block;
  }

  .function__forusers__other__inner > div {
    width: auto;
    border-radius: 5px;
    padding: 43px 0 40px;
    margin-bottom: 63px;
  }

  .function__forusers__other__inner h4 {
    width: 150px;
    font-size: 18px;
  }

  .function__forusers__other__inner img {
    height: auto;
    width: 260px;
    margin-bottom: 20px;
  }

  .function__forusers__other__inner > div:last-child img{
    margin-bottom: -40px;
    width: 345px;
    max-width: 100%;
  }

  .function__forusers__other__inner p {
    margin: 0 20px;
  }

  .function__forusers__other__inner small {
    margin-top: 0px;
    line-height: 1.4;
  }
}

/* =========================================================
 * 店舗向け機能
 * function__forstores
 * ====================================================== */
.function__forstores {
  margin-bottom: 150px;
  position: relative;
  z-index: 91;
}

.function__forstores::before {
  content: "";
  width: 100%;
  height: 49.6vw;
  background-color: #8ec6db;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.function__forstores::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100vw 200px 0;
  border-color: transparent #8ec6db transparent transparent;
  position: absolute;
  top: 49.6vw;
  right: 0;
  z-index: -1;
}

.function__forstores > p {
  margin-bottom: -100px;
  width: 100vw;
}

.function__forstores > p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.function__forstores .funcompass__inner {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 0px 60px 80px;
  position: relative;
  z-index: 10;
}

.function__forstores .funcompass__inner > p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2;
  text-align: center;
  margin-bottom: 40px;
}

.function__forstores__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.function__forstores__inner > div {
  width: 48%;
  background-color: #e8f4f8;
  border-radius: 10px;
  padding: 50px 0px 40px 0px;
}

.function__forstores__inner > div:last-child {
  width: 100%;
  margin-top: 4%;
}

.function__forstores__inner h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.function__forstores__inner figure {
  display: block;
  text-align: center;
}

.function__forstores__inner figure img{
  height: min(31.1vw , 436px);
  width: auto;
  margin-bottom: -3vw;
}

.function__forstores__inner > div:last-child figure img{
  height: min(34.6vw, 485vw);
  width: auto;
  margin-bottom: 0;
}

.function__forstores__inner p {
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  margin: 0 54px;
}

.function__forstores__inner>div:last-child p{
  text-align: center;
}

@media screen and (max-width: 960px) {
}

@media screen and (max-width: 767px) {
  .function__forstores {
    margin-bottom: 100px;
  }

  .function__forstores::before {
    height: 329.3vw;
  }

  .function__forstores::after {
    border-width: 0 100vw 112px 0;
    top: 329.3vw;
  }

  .function__forstores .function-secttl {
    padding-top: 60px;
    margin-bottom: 40px;
  }

  .function__forstores > p {
    margin-bottom: -70px;
  }

  .function__forstores .funcompass__inner {
    border-radius: 10px;
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
    padding: 0px 20px 60px;
    position: relative;
    z-index: 10;
  }

  .function__forstores__inner {
    display: block;
  }

  .function__forstores__inner > div {
    width: auto;
    border-radius: 5px;
    padding: 40px 0px;
    margin-bottom: 40px;
  }

  .function__forstores__inner > div:last-child {
    width: 100%;
    margin-top: 0%;
    margin-bottom: 0px;
  }

  .function__forstores__inner > div:last-child img {
    width: 100%;
  }

  .function__forstores__inner h3 {
    font-size: 20px;
  }

  .function__forstores__inner p {
    text-align: left;
    margin: 0 20px;
  }

  .function__forstores__inner p br {
    display: none;
  }

  .function__forstores__inner > div:first-child figure img{
    width: 165px;
    height: auto;
  }
  .function__forstores__inner>div:nth-child(2) figure img {
    width: 345px;
    max-width: 100%;
    height: auto;
    margin-bottom: -40px;
  }

  .function__forstores__inner>div:last-child figure img {
    width: 300px;
    max-width: 100%;
    height: auto;
  }

    .function__forstores__inner>div:last-child p {
      text-align: left;
    }
}

/* =========================================================
 * サイト契約者向け機能
 * function__contractors
 * ====================================================== */
.function__contractors {
  margin-bottom: 150px;
  position: relative;
  z-index: 91;
}

.function__contractors::before {
  content: "";
  width: 100%;
  height: 49.6vw;
  background-color: #8ec6db;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.function__contractors::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100vw 200px 0;
  border-color: transparent #8ec6db transparent transparent;
  position: absolute;
  top: 49.6vw;
  right: 0;
  z-index: -1;
}

.function__contractors > p {
  margin-bottom: -100px;
  width: 100vw;
}

.function__contractors > p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.function__contractors .funcompass__inner {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 0px 60px 80px;
  position: relative;
  z-index: 10;
}

.function__contractors__inner > div {
  background-color: #e8f4f8;
  border-radius: 10px;
  padding: 50px 0px 40px 0px;
}

.function__contractors__inner > div:last-child {
  width: 100%;
  margin-top: 4%;
}

.function__contractors__inner > div img {
  max-width: 930px;
}

.function__contractors__inner h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.function__contractors__inner figure {
  display: block;
  text-align: center;
}

.function__contractors__inner p {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  margin: 0 54px;
}

@media screen and (max-width: 960px) {
}

@media screen and (max-width: 767px) {
  .function__contractors {
    margin-bottom: 120px;
  }

  .function__contractors::before {
    height: 201.3vw;
  }

  .function__contractors::after {
    border-width: 0 100vw 112px 0;
    top: 201.3vw;
  }

  .function__contractors .function-secttl {
    padding-top: 60px;
    margin-bottom: 40px;
  }

  .function__contractors .function-secttl em {
    letter-spacing: 0;
  }

  .function__contractors > p {
    margin-bottom: -70px;
  }

  .function__contractors .funcompass__inner {
    border-radius: 10px;
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
    padding: 0px 20px 50px;
  }

  .function__contractors__inner > div {
    border-radius: 5px;
    padding: 40px 0px;
  }

  .function__contractors__inner > div:last-child {
    width: 100%;
    margin-top: 0%;
  }

  .function__contractors__inner > div img {
    max-width: 930px;
  }

  .function__contractors__inner h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .function__contractors__inner p {
    margin: 0 20px;
    text-align: left;
  }
}