@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
/*---------------------------------------
 Common
---------------------------------------*/
.main-article * {
  font-family: "Noto Sans JP", 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'HiraKakuProN-W3', 'Hiragino Kaku Gothic ProN', Helvetica, 'Helvetica Neue', sans-serif;
  color: #000;
}
.section__inner{
  margin: 0 auto;
  width: 100%;
  max-width: 1240px;
}
.sp-only{
  display: none;
}

/* 両方斜線テキスト */
.slash-text{
  position: relative;
  display: inline-block;
  padding: 0 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.4;
}
.slash-text::before,
.slash-text::after{
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 28px;
  height: 3px;
  background: #000;
}
.slash-text::before{
  left: 2px;
  transform: rotate(57deg) translateY(-50%);
}
.slash-text::after{
  right: 2px;
  transform: rotate(-57deg) translateY(-50%);
}

/* 導入テキスト */
.intro-txt{
  margin: 94px 0 0;
  font-weight: 500;
  line-height: 1.75;
}

/* リンク用ブロック */
.link-block{
  margin: 28px 0 0;
}
.link-block--center{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* リンクボタン */
.oval-link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 56px;
  border-radius: 100vh;
  font-size: 18px;
  font-weight: 700;
}
.oval-link:hover{
  opacity: .7;
}
.oval-link--yellow{
  background: #fed33e;
  color: #000!important;
}
.oval-link--amber{
  background: #ff9c00;
  color: #fff!important;
}
.oval-link--orange{
  width: 300px;
  background: #ff7200;
  color: #fff!important;
}

@media screen and (max-width: 768px) {
  .pc-only{
    display: none;
  }
  .sp-only{
    display: block;
  }

  /* 両方斜線テキスト */
  .slash-text{
    font-size: 15px;
  }
  .slash-text::before,
  .slash-text::after{
    width: 20px;
    height: 2px;
  }
  .slash-text::before{
    left: 8px;
  }
  .slash-text::after{
    right: 8px;
  }

  /* 導入テキスト */
  .intro-txt{
    margin-top: 73px;
    font-size: 14px;
    line-height: 1.571;
  }

  /* リンク用ブロック */
  .link-block{
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  /* リンクボタン */
  .oval-link{
    width: 312px;
    height: 54px;
  }
}


/*---------------------------------------
 MV
---------------------------------------*/
.mv .section__inner{
  max-width: 1216px;
}
.mv__body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: min(600px, 39.1vw);
  z-index: 10;
}
.mv__img{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(980px, 63.8vw);
}

.mv .slash-text{
  color: #04387e;
}
.mv .slash-text::before,
.mv .slash-text::after{
  background: #04387e;
}

.mv__heading{
  margin: 5px 0 0;
  color: #04387e;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.333;
}
.mv__heading span{
  color: #cc023a;
}

.mv__sub{
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.636;
}

@media screen and (max-width: 768px) {
  .mv__body{
    display: block;
    height: auto;
    text-align: center;
  }
  .mv__img{
    position: relative;
    right: auto;
    top: auto;
    transform: unset;
    width: 100%;
    margin: 26px 0 0;
    padding: 0 0 0 20px;
  }

  .mv__heading{
    margin-top: 3px;
    font-size: 24px;
    line-height: 1.5;
  }
  .mv__heading span{
    line-height: 1.5;
  }

  .mv__sub{
    font-size: 16px;
  }
}


/*---------------------------------------
 info
---------------------------------------*/
.info .section__inner{
  max-width: 1238px;
}

.info__item{
  display: flex;
  align-items: center;
  gap: 107px;
  margin: 81px 0 0;
}
.info__item--reverse{
  flex-direction: row-reverse;
}
.info__item:nth-child(n + 2){
  margin-top: 75px;
}
.info__img{
  width: 420px;
}
.info__body{
  width: calc(100% - 527px);
}

.info__ttl{
  padding: 0 0 18px;
  border-bottom: 1px solid #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.428;
}
.info__sub{
  margin: 22px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.info__txt{
  margin: 20px 0 0;
}
.info__sub + .info__txt{
  margin-top: 14px;
}
.info__txt *{
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .info .section__inner{
    padding: 0 39px;
  }
  .info__item{
    display: block;
    margin-top: 40px;
  }
  .info__item:nth-child(n + 2){
    margin-top: 25px;
  }
  .info__img{
    width: 100%;
    margin-top: 24px;
  }
  .info__body{
    width: 100%;
    margin-top: 25px;
  }

  .info__ttl{
    padding-bottom: 16px;
    font-size: 24px;
  }
  .info__txt{
    margin-top: 18px;
  }
}


/*---------------------------------------
 trouble
---------------------------------------*/
.trouble{
  margin: 75px 0 0;
}
.trouble__heading{
  text-align: center;
}
.trouble__heading span{
  display: inline-block;
  padding: 0 0 6px;
  border-bottom: 1px solid #073079;
  color: #073079;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
}

.trouble__list{
  display: flex;
  gap: 35px;
  margin: 34px 0 0;
}
.trouble__item{
  position: relative;
  width: calc((100% - 70px) / 3);
  padding: 25px 21px 30px 121px;
  border: 4px solid #ccc;
  border-radius: 10px;
}
.trouble__img{
  position: absolute;
  top: 24px;
  left: 18px;
  width: 84px;
}
.trouble__problem-item{
  font-weight: 700;
  line-height: 1.5;
}
.trouble__problem-item:nth-child(n + 2){
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .trouble{
    margin-top: 36px;
  }
  .trouble .section__inner{
    padding: 0 20px;
  }
  .trouble__heading span{
    padding-bottom: 10px;
    line-height: 1.333;
  }

  .trouble__list{
    display: block;
    margin-top: 30px;
  }
  .trouble__item{
    width: 100%;
    padding: 18px 21px 18px 129px;
  }
  .trouble__item:nth-child(n + 2){
    margin-top: 75px;
  }
  .trouble__img{
    top: 20px;
    left: 14px;
    width: 95px;
  }
  .trouble__problem-item:nth-child(n + 2){
    margin-top: 7px;
  }
}


/*---------------------------------------
 product
---------------------------------------*/
.product{
  margin: 90px 0 0;
}

.product__head{
  position: relative;
  padding: 100px 0 68px;
  background: url(/content/dam/nttcom/hq/jp/business/services/security/security-management/wideangle/scs3/img/solution_bg-pc.png) no-repeat center / cover;
  text-align: center;
}
.product__head::before,
.product__head::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 220px;
  height: 60px;
}
.product__head::before{
  top: 0;
  background: url(/content/dam/nttcom/hq/jp/business/services/security/security-management/wideangle/scs3/img/solution_arrow-wt.png) no-repeat center / contain;
}
.product__head::after{
  bottom: -59px;
  background: url(/content/dam/nttcom/hq/jp/business/services/security/security-management/wideangle/scs3/img/solution_arrow-bl.png) no-repeat center / contain;
}

.product__heading{
  margin: 18px 0 0;
  color: #073079;
  font-size: 36px;
  font-weight: 900;
}
.product .link-block{
  margin-top: 36px;
}

.product > .section__inner{
  max-width: 880px;
}

.product__img{
  margin: 50px 0 0;
}

@media screen and (max-width: 768px) {
  .product{
    margin-top: 150px;
  }

  .product .slash-text{
    font-size: 16px;
  }

  .product__head{
    padding: 88px 10px 66px;
    background: url(/content/dam/nttcom/hq/jp/business/services/security/security-management/wideangle/scs3/img/solution_bg-sp.png) no-repeat center / cover;
  }
  .product__head::before,
  .product__head::after{
    width: 184px;
    height: 50px;
 }
  .product__head::after{
    bottom: -49px;
  }

  .product__heading{
    margin-top: 6px;
    font-size: 24px;
    line-height: 1.666;
  }
  .product .link-block{
    margin-top: 16px;
  }

  .product > .section__inner{
    padding: 0 20px;
  }

  .product__img{
    margin-top: 26px;
  }
}


/*---------------------------------------
 service
---------------------------------------*/
.service{
  margin: 67px 0 0;
}

.service__heading{
  font-size: 32px;
  font-weight: 900;
  text-align: center;
}
.service__heading + .intro-txt{
  margin-top: 25px;
}
.service__ttl{
  margin: 40px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #073079;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.service__list{
  margin: 2px 0 0;
}
.service__item{
  display: flex;
  gap: 1px;
}
.service__list .service__item:nth-child(n + 2){
  margin-top: 1px;
}
.service__summary,
.service__detail{
  padding: 25px 20px 20px;
  border: 1px solid #073079;
  border-radius: 8px;
}
.service__summary{
  width: 500px;
}
.service__detail{
  width: calc(100% - 501px);
}
.service__name{
  margin: 0;
  padding: 0 18px;
  border: 2px solid #073079;
  border-radius: 8px;
  color: #073079;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
.service__txt{
  margin: 18px 0 0;
}
.service__txt *{
  font-weight: 500;
  line-height: 1.5;
}

.service__detail{
  display: flex;
  gap: 41px;
}
.service__detail *{
  color: #073079;
}
.service__content{
  width: calc(100% - 191px);
}
.service__detail .service__name{
  border: 2px solid #fef461;
  background: #fef461;
}
.service__img{
  width: 150px;
}
.service__txt--strong{
  margin: 8px 0 0;
  font-weight: 700;
}
.service__note{
  margin: 6px 0 0;
  font-size: 13px;
}
.service__note + .service__note{
  margin-top: 0;
}

.service__supplement{
  margin: 10px 0 0;
  padding: 21px 30px;
  border-radius: 8px;
  background: #e9f7ff;
  font-weight: 500;
  line-height: 1.375;
}

/* ⑧ セキュリティYOROZU相談 */
.service__item--yorozu{
  margin: 39px 0 0;
  gap: 61px;
}
.service__item--yorozu .service__img{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  border-radius: 10px;
  background: #fed755;
}
.service__item--yorozu .service__img img{
  width: 274px;
}
.service__item--yorozu .service__content{
  width: calc(100% - 361px);
}
.service__item--yorozu .service__name{
  padding: 0;
  border: none;
  color: #000;
  font-size: 28px;
  line-height: 1;
}
.service__item--yorozu .service__txt{
  margin-top: 24px;
}
.yorozu-list{
  display: flex;
  gap: 7px;
  margin: 25px 0 0;
}
.yorozu-list__item{
  width: calc((100% - 28px) / 5);
}
.yorozu-list__img{
  width: 123px;
  margin: 0 auto;
}
.yorozu-list__txt{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  margin: 27px 0 0;
  border-radius: 8px;
  background: #ffd754;
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
}


@media screen and (max-width: 768px) {
  .service{
    margin-top: 48px;
  }
  .service .section__inner{
    padding: 0 15px;
  }

  .service__heading{
    font-size: 24px;
  }
  .service__heading + .intro-txt{
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.75;
  }

  .service__ttl{
    margin-top: 24px;
    padding: 4px;
    font-size: 18px;
  }

  .service__item{
    display: block;
    padding: 30px 14px;
    border: 1px solid #073079;
    border-radius: 8px;
  }
  .service__item + .service__item{
    margin-top: 2px;
  }
  .service__summary,
  .service__detail{
    padding: 0;
    border: none;
  }
  .service__summary{
    width: 100%;
  }
  .service__detail{
    width: 100%;
  }
  .service__name{
    padding: 3px 14px;
    border: 1px solid #073079;
    border-radius: 4px;
    font-size: 16px;
  }
  .service__txt{
    margin-top: 12px;
    padding: 0 6px;
  }
  .service__txt *{
    line-height: 1.75;
  }

  .service__detail{
    display: block;
    margin-top: 26px;
  }
  .service__content{
    width: 100%;
  }
  .service__detail .service__name{
    margin: 26px auto 0;
  }
  .service__img{
    margin: 24px auto 0;
  }

  .service__supplement{
    margin-top: 23px;
    padding: 18px 16px;
    line-height: 1.5;
  }

  /* ⑧ セキュリティYOROZU相談 */
  .service__item--yorozu{
    margin-top: 20px;
    padding: 0;
    border: none;
  }
  .service__item--yorozu .service__img{
    display: flex;
    width: 180px;
    height: 240px;
  }
  .service__item--yorozu .service__img img{
    width: 163px;
  }
  .service__item--yorozu .service__content{
    width: 100%;
    margin-top: 32px;
  }
  .service__item--yorozu .service__name{
    font-size: 24px;
  }
  .service__item--yorozu .service__txt{
    margin-top: 23px;
    padding: 0;
  }
  .yorozu-list{
    flex-wrap: wrap;
    gap: 24px 22px;
    margin-top: 26px;
  }
  .yorozu-list__item{
    width: calc(50% - 11px);
  }
  .yorozu-list__img{
    width: 122px;
  }
  .yorozu-list__txt{
    margin-top: 16px;
  }

  .service .link-block{
    margin-top: 40px;
  }
}


/*---------------------------------------
 cta
---------------------------------------*/
.cta{
  margin: 79px 0 0;
  padding: 68px 0 80px;
  background: linear-gradient(to bottom, #ecf8ff, #c6e8fb);
  text-align: center;
}

.cta .slash-text{
  font-size: 32px;
}
.cta .slash-text::before,
.cta .slash-text::after{
  width: 34px;
}
.cta .slash-text::before{
  left: -10px;
}
.cta .slash-text::after{
  right: -10px;
}

.cta__box{
  margin: 24px 0 0;
  padding: 40px 40px 38px;
  border: 8px solid #a8dcf9;
  border-radius: 8px;
  background: #fff;
}
.cta__heading{
  color: #073079;
  font-size: 32px;
  font-weight: 900;
}
.cta__box .oval-link{
  width: 300px;
}

@media screen and (max-width: 768px) {
  .cta{
    margin-top: 60px;
    padding: 53px 0 47px;
  }
  .cta .section__inner{
    padding: 0 20px;
  }

  .cta .slash-text{
    font-size: 24px;
    line-height: 1.416;
  }
  .cta .slash-text::before,
  .cta .slash-text::after{
    width: 64px;
    height: 2.5px;
    top: calc(50% + 3px);
  }
  .cta .slash-text::before{
    left: -28px;
    transform: rotate(59deg) translateY(-50%);
  }
  .cta .slash-text::after{
    right: -28px;
    transform: rotate(-59deg) translateY(-50%);
  }

  .cta__box{
    padding: 26px;
    border-width: 5px;
  }
  .cta__heading{
    font-size: 20px;
    line-height: 1.5;
  }
  .cta__box .link-block{
    margin-top: 14px;
  }
  .cta__box .oval-link{
    width: 290px;
  }
}


/*---------------------------------------
 faq
---------------------------------------*/
.faq{
  margin: 79px 0 0;
}
.faq .section__inner{
  max-width: 1080px;
}
.faq__heading{
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.faq__item{
  margin: 49px 0 0;
  border: 1px solid #073079;
  border-radius: 10px;
  overflow: hidden;
}
.faq__item + .faq__item{
  margin-top: 20px;
}
.faq__head,
.faq__body{
  position: relative;
  font-size: 18px;
}
.faq__head::before,
.faq__body::before{
  position: absolute;
  top: 16px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0 0 4px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.faq__head{
  padding: 22px 10px 22px 82px;
  background: #ecf8ff;
  color: #073079;
  font-weight: 700;
  line-height: 1.333;
}
.faq__head::before{
  content: "Q";
  background: #073079;
}
.faq__body{
  padding: 18px 10px 18px 82px;
  font-weight: 500;
  line-height: 1.666;
}
.faq__body::before{
  content: "A";
  background: #cc023a;
}

@media screen and (max-width: 768px) {
  .faq{
    margin-top: 48px;
  }
  .faq .section__inner{
    padding: 0 20px;
  }
  .faq__heading{
    font-size: 24px;
  }
  .faq__item{
    margin-top: 30px;
  }
  .faq__head::before,
  .faq__body::before{
    top: 17px;
    left: 17px;
  }

  .faq__head{
    padding: 16px 10px 16px 70px;
    line-height: 1.444;
  }
  .faq__body{
    padding: 14px 10px 14px 70px;
    line-height: 1.444;
  }
}