@charset "UTF-8";

@media (max-width:768px){
  .only-pc {
    display: none;
  }
}

strong {font-weight: 700;}

.service-phase {
    margin-bottom: 80px;
}

.phase{
  --phase-color:#000;
  margin-bottom:50px;
}

.phase:last-child{
  margin-bottom:0;
}

.phase__head{
  display:flex;
  align-items:center;
  border:2px solid var(--phase-color);
}

.phase__label,
.phase__label *{
  color:#fff;
}

.phase__label{
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px 8px 5px;
  font-size:12px;
  font-weight:bold;
  background:var(--phase-color);
}

.phase__label span{
  display:block;
  margin-bottom:10px;
}

.phase__label strong{
  font-size:28px;
  font-weight:normal;
}

.phase__title{
  margin:0;
  padding-left:16px;
  padding-top:3px;
  font-size:16px;
  font-weight:bold;
  color:var(--phase-color);
}

.phase__body{
  margin-top:25px;
  line-height:1.8;
}

.phase__body p{
  margin-bottom:10px;
}

.phase__lead{
  font-weight:bold;
}

/* colors */

.phase1{ --phase-color:#ab4593; }
.phase2{ --phase-color:#cc0033; }
.phase3{ --phase-color:#c7461e; }
.phase4{ --phase-color:#007bc1; }

@media (max-width:768px){

  .phase__head{
    flex-wrap:wrap;
  }

}

/* サービス例 */

.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin: 40px 0 50px;
}

.card{
  position:relative;
  padding:30px;
  border:1px solid #1a4283;
  min-height:262px;
}

.card__labels{
  position:absolute;
  top:-1px;
  right:-1px;
  display:flex;
  gap:3px;
}

.card__label{
  background:#1a4283;
  color:#fff;
  padding:6px 12px;
}

.card__line{
  display:block;
  width:90px;
  height:3px;
  background:#cc0033;
  margin-bottom:15px;
}

.card__title{
  font-size:18px;
  font-weight:bold;
  margin-bottom:15px;
}

.card__text{
  font-size: 15px;
  line-height: 1.65;
  max-width:calc(100% - 240px);
}

.card__image{
  position:absolute;
  right:30px;
  bottom:30px;
  width:210px;
  height:144px;
  min-height:144px;
  object-fit:cover;
}

/* 768以下：カード幅515pxで折り返し */
@media (max-width:768px){

  .cards{
    grid-template-columns:515px;
    justify-content:center;
  }

}

/* 515以下：画像を下に */
@media (max-width:515px){

  .cards{
    grid-template-columns:1fr;
  }

  .card{
    min-height:auto;
  }

  .card__label{
    font-size: 14px;
  }

  .card__line{
    margin-top: 10px;
  }

  .card__text{
    max-width:100%;
  }

  .card__image{
    position:static;
    display:block;
    margin-top:30px;
    width:100%;
    height:auto;
  }

}

/* software */

.software h4 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 50px 0 20px;
}

.software img {
    display: block;
    margin:0 auto 30px auto;    
}

/* 導入実績 */

.achievements{
  margin-top:40px;
}

.achievement__year{
  background:#173261;
  color:#fff;
  text-align:center;
  font-weight:bold;
  font-size:20px;
  padding:10px 0;
}

.achievement__box{
  border:1px solid #173261;
  padding:30px;
  display:flex;
  gap:40px;
  align-items:flex-start;
}

.achievement__image{
  width:300px;
  height:auto;
  object-fit:cover;
  flex-shrink:0;
}

.achievement__content{
  flex:1;
}

.achievement__title{
  font-size:18px;
  font-weight:bold;
  margin-bottom:10px;
  margin-top: 20px;
}

.achievement__text{
  line-height:1.7;
}

.red{
  color:#cc0033;
  font-weight:bold;
}

.achievement__items{
  display:flex;
  flex-direction:column;
}

.achievement__divider{
  border-top:1px dashed #173261;
  margin:30px 0;
}

.achievement__item{
  display:flex;
  gap:40px;
}

.achievement__arrow{
  width:0;
  height:0;
  border-left:35px solid transparent;
  border-right:35px solid transparent;
  border-top:15px solid #cc0033;
  margin:20px auto;
}

@media (max-width:768px){

  .achievement__box{
    flex-direction:column;
    gap:10px;
  }

  .achievement__item{
    flex-direction:column;
    gap:10px;
  }

  .achievement__image{
    width:100%;
    height:auto;
  }

  .achievement__title{
    margin-top:15px;
  }

}

/* arena-usecase */

.layout__contents {
    margin: 40px 0 50px;
}

.layout__img.layout__leftBox {
        padding-right: 40px;
}

.layout__img > * {
    margin-bottom: 0;
}

.layout__txt p {
    padding-bottom: 10px;
}

.layout__txt h4 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 18px;
}

@media (max-width:768px){

  .layout__img.layout__leftBox{
    float:none;
    width:100%;
    padding-right:0;
  }

  .layout__img img{
    width:100%;
    height:auto;
  }

  .layout__txt{
    width:100%;
  }

}

.arena-images{
  display:flex;
  gap:30px;
  margin:40px auto 40px;
  justify-content:center;
}

.arena-images img{
  width:296px;
  height:203px;
  object-fit:cover;
}

/* 下2カラム */
.arena-usecase{
  display:flex;
  gap:40px;
  margin:40px auto 0;
  justify-content:center;
}

.arena-usecase__item{
  width:413px;
}

.arena-usecase img{
  width:413px;
  height:231px;
  object-fit:cover;
}

.arena-usecase__title{
  font-size:18px;
  font-weight:700;
  margin:15px 0 15px;
}

@media (max-width:768px){

  /* 上3画像 */
  .arena-images{
    flex-wrap:wrap;
    justify-content:center;
  }

  .arena-images img{
    width:100%;
    max-width:302px;
    height:auto;
  }

  /* 下ユースケース */
  .arena-usecase{
    flex-direction:column;
    align-items:center;
  }

  .arena-usecase__item{
    width:100%;
    max-width:413px;
  }

  .arena-usecase img{
    width:100%;
    height:auto;
  }

}

/* remote */

.remote h4 {
    font-size: 24px;
    color: #173261;
    font-weight: 700;
    text-align: center;
    margin: 50px 0 20px;
}

.remote span {
    font-size: 16px;
    color: #173261;
}

.remote img {
    display: block;
    margin:0 auto 30px auto;    
}

.remote__text {
    font-size: 18px;
    font-weight: 700;
    color: #cc0033;
    text-align: center;
}

.remote .img-box{
  position:relative;
}

.remote .img-box img{
  width:100%;
  height:auto;
  display:block;
}

.remote .before,
.remote .after{
  position:absolute;
  font-size:clamp(14px,1.2vw,14px);
  line-height:1.4;
}

.remote .before {
    top: 60px;
    left: 40px;
    width: 40%;
}

.remote .after{
  top: 60px;
  left: 590px;
  width: 40%;
}

.remote strong {
  text-decoration: underline;
}

@media (max-width:768px){

  .remote h4 {
    font-size: 20px;
  }

  .remote .before,
  .remote .after{
    position:absolute;
    font-size:clamp(4px,1.3vw,14px);
    line-height:1.4;
  }

  .remote .before{
    top: 5vw;
    left: 3%;
    width:40%;
  }

  .remote .after{
    top: 5vw;
    left: 55%;
    width:40%;
  }

}

/* question */

.bl_case {
    border: 8px solid #F0F5F6;
    border-radius: 10px;
    position: relative;
}

.case_ttl {
    position: absolute;
    top: -1.2em;
    background: #fff;
    padding-right: 1em;
    padding-left: 1em;
}

.case_ttl span {
    margin-left: 0.3em;
}

.case_ttl, .case_ttl span {
    color: #cc0033;
}

.case_txt_t {
    background: url(/content/dam/nttcom/hq/jp/business/services/stadiumarenasolution/img/illust01.png) no-repeat left center;
    padding-left: 106px;
    font-size: 20px;
    font-weight: 700;
}

.case_txt_c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.case_txt_c::before, .case_txt_c::after {
    content: '';
    width: 45%;
    height: 2px;
    background: #D3D3D3;
}

.case_txt_b {
    background: url(/content/dam/nttcom/hq/jp/business/services/stadiumarenasolution/img/illust02.png) no-repeat right center;
    padding-right: 152px;
}

@media screen and (min-width: 768.98px) {
    .bl_case {
        margin-top: 50px;
        padding: 30px 50px 15px;
    }

    .case_ttl {
        font-size: 20px;
    }

    .case_txt_t {
        min-height: 100px;
    }

    .case_txt_c {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .case_txt_b {
        min-height: 100px;
    }
}

@media screen and (max-width: 768px) {
    .bl_case {
		margin-top: 9vw;
		padding: 6vw 5vw 5vw;
		font-size: 14px;
	}

	.case_txt_c {
		font-size: 18px;
		margin-top: 15px; margin-bottom: 15px;
	}

	.case_txt_t {
		background: url(/content/dam/nttcom/hq/jp/business/services/stadiumarenasolution/img/illust01.png) no-repeat left center;
		background-size: 40px auto;
		padding-left: 56px;
		min-height: 63px;
    font-size: 17px;
	}
	
	.case_txt_b {
		background: url(/content/dam/nttcom/hq/jp/business/services/stadiumarenasolution/img/illust02.png) no-repeat right center;
		background-size: 62px auto;
		padding-right: 72px;
		min-height: 63px;
	}
}

/* p-news */

.p-news__item + .p-news__item {
  padding-top:15px;
}

.p-news-item__title {
  text-decoration: underline !important;
  line-height: 1.6;
}

.wrapper .p-news .p-news__item a:hover {
    color: #cc0033 !important;
    text-decoration: none !important;
}

.p-news-item__time {
    font-size: 16px;
    width: 150px;
}

@media screen and (max-width: 768px) {
    .p-news-item__title {
        width: 100%;
    }

    .p-news-item__time {
    font-size: 14px;
    display: block;
    padding-bottom: 10px;
    }
}