@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&amp;family=Alumni+Sans:ital,wght@0,100..900;1,100..900&amp;display=swap);

:root {
  --main-clr-bk: #000000;
  --main-clr-wt: #ffffff;
  --main-clr-rd: #cc0033;
  --ff-alumni: 'Alumni Sans', sans-serif;;
}

/*---------------------------------------
  共通系
---------------------------------------*/
main {
  font-family: 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
  font-size: 18px;
  font-weight: 500;
}
main * {
  font-family: 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
}
main *,
main * ::before,
main * ::after {
  box-sizing: border-box;
}
main img {
  max-width: 100%;
  vertical-align: bottom;
}
main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
main a {
  text-decoration: none;
}

.sp-only {
  display: none;
}

/* 左上追従ナビ */
.page-link {
  background: var(--main-clr-wt);
  border-radius: 10px;
  width: auto;
  top: 97px;
  left: 10px;
  box-shadow: 0px 0px 10.5px 0px rgba(0, 0, 0, 0.25);
}
.page-link-list {
  display: flex;
  padding: 14px 23px;
}
.page-link-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}
.page-link-list_item:nth-child(n + 2) {
  margin-left: 22px;
  padding-left: 22px;
  border-left: 1px solid var(--main-clr-rd);
}
@media screen and (max-width: 768px) {
  .page-link {
    top: 107px;
    left: 50%;
    transform: translateX(-50%);
    width: 356px;
  }
  .page-link-list {
    padding: 11px 12px;
  }
  .page-link-list a {
    font-size: 12px;
  }
  .page-link-list_item:nth-child(n + 2) {
    margin-left: 9px;
    padding-left: 9px;
    border-left: 1px solid var(--main-clr-bk);
  }
}


/* 下から上に移動しながらフェードイン */
.is-fadeIn {
  opacity: 0;
  transform: translateY(100px);
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
/* フェードインアニメーション */
@keyframes fadeIn {
  0% {
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}


/* KV */
.kv {
  position: relative;
  width: 100%;
  padding: 0 27px 0 120px;
}
.kv-inner {
  width: 1292px;
  height: 600px;
  margin: 0 auto;
}
.fv-area {
  position: relative;
  height: 1096px;
}
.kv-video {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(74%);
}

@media screen and (max-width: 768px) {
  .kv {
    padding: 0 17px;
  }
  .kv-inner {
    width: 100%;
    height: auto;
  }
  .fv-area {
    height: 1404px;
  }
}

/* 左側 */
.kv-detail {
  width: 578px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kv-ttl {
  margin: 146px 0 0;
  color: var(--main-clr-wt);
  font-size: 80px;
  text-align: left;
  letter-spacing: -1.6px;
  line-height: 105%;
}
.kv-ttl span {
  font-size: 60px;
}
.kv-sub {
  margin: 42px 0 0;
  color: var(--main-clr-wt);
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 1.4;
}
.kv-sub span {
  display: inline-block;
  border-bottom: 4px solid var(--main-clr-wt);
  line-height: 1.2;
}
.kv-txt {
  margin: 10px 0 0;
  line-height: 1.9;
}
.kv-txt,
.kv-txt a {
  color: var(--main-clr-wt);
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .kv-detail {
    width: 100%;
    height: auto;
  }
  .kv-ttl {
    margin-top: 113px;
    font-size: 55px;
    line-height: 98%;
  }
  .kv-ttl span {
    font-size: 44px;
  }
  .kv-sub {
    font-size: 24px;
    margin-top: 16px;
    line-height: 1.6;
  }
  .kv-sub span {
    border-width: 3px;
  }
  .kv-txt {
    line-height: 1.6;
  }
  .kv-txt,
  .kv-txt a {
    font-size: 16px;
  }
}

/* 右側 */
.fixed-contact {
  position: absolute;
  top: 92px;
  right: 0;
  width: 638px;
  height: 600px;
  padding: 180px 0 0;
  background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/mv_contact_img.png) center / cover;
  z-index: 100;
}
.fixed-contact_inner {
  display: block;
  width: 346px;
  margin: 0 80px 0 auto;
  border-radius: 9px;
  box-shadow: 0px 5px 27.4px 16px rgba(0, 0, 0, 0.35);
  background: var(--main-clr-wt);
  overflow: hidden;
}
.fixed-contact_inner:hover {
  opacity: .7;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 28px 28px 0;
}
.contact-list:nth-child(n + 2) {
  padding-top: 10px;
}
.contact-list_item {
  display: inline-block;
  margin-right: 9px;
  padding: 2px 9px;
  border-radius: 2.77px;
  background: var(--main-clr-rd);
  color: var(--main-clr-wt);
  font-size: 14.21px;
}
.contact-list_item:last-of-type {
  margin-right: 0;
}
.contact-list_txt {
  margin: 13px 28px 0;
  padding: 9px 10px 0;
  border-top: 1.69px solid #6C6C6C;
  color: #6C6C6C;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
}
.contact-list_link {
  position: relative;
  display: block;
  margin: 24px 0 0;
  padding: 40px 10px 10px;
  background: var(--main-clr-rd);
  color: var(--main-clr-wt);
  font-size: 14px;
  text-align: center;
}
.contact-list_link::after {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 37px;
  height: 25.5px;
  background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/icon_mail.png) center / cover;
}
@media screen and (max-width: 768px) {
  .fixed-contact {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin-top: 35px;
    padding: 0;
    background: none;
  }
  .fixed-contact_inner {
    width: 100%;
    margin: 0;
  }
}

/* pickup */
.pickup {
  position: relative;
  width: 1386px;
  margin: -398px auto 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .pickup {
    width: 100%;
    margin-top: -517px;
    padding: 0 20px;
  }
}
.pickip-heading {
  position: relative;
  margin: 0;
  color: var(--main-clr-wt);
}
.pickip-heading::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: calc(100% - 120px);
  height: 2px;
  background: var(--main-clr-wt);
}
.pickip-heading span {
  display: inline-block;
  font-family: var(--ff-alumni);
  font-style: italic;
  font-size: 42px;
}
.top-slider {
  margin: 8px 0 0;
}
.slider-video {
  width: 100%;
  height: 100%;
}
.slider-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.pickup .splide__slide a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 443 / 320;

}
.pickup .splide__slide a:hover {
  opacity: .7;
  color: var(--main-clr-bk);
}
.tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 24px;
  background: var(--main-clr-rd);
  color: var(--main-clr-wt);
  font-size: 15px;
}
.slider-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.slider-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 23px;
  background: rgb(255, 255, 255, .8);
}
.slider-ttl {
  display: -webkit-box;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.3;
}
.slider-txt {
  display: -webkit-box;
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.slider-control {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
}
.splide__arrows {
  display: flex;
  height: 33px;
  margin: 0;
  padding: 0 18px;
  border-radius: 100vh;
  background: rgba(0, 67, 134, .2);
}
.splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
}
.splide__arrow img {
  width: 10px;
}
.splide__toggle {
  width: 42px;
  height: 33px;
  margin-left: 3px;
  border: none;
  border-radius: 100vh;
  background: rgba(0, 67, 134, .2);
}
.splide__toggle__play,
.splide__toggle.is-active .splide__toggle__pause {
  display: flex;
  align-items: center;
  justify-content: center;
}
.splide__pagination {
  margin: 0 22px;
}
.splide__pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.splide__pagination li:nth-child(n + 2) {
  margin-left: 15px;
}
.splide__pagination li button {
  width: 12px;
  height: 12px;
  padding: 0;
  background: transparent;
  border: 2px solid var(--main-clr-wt);
  border-radius: 50%;
}
.splide__pagination li button.is-active {
  background: var(--main-clr-wt);
}

.case {
  position: relative;
  margin-top: -280px;
  padding-top: 340px;
  background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/case_bg-pc.png) no-repeat top center / 100% 577px;
  z-index: 10;
}
.case .title {
  position: relative;
  padding-top: 90px;
  z-index: 10;
}
.title h2 {
  font-size: 47px;
  font-weight: bold;
}
.title p {
  font-size: 14px;
}
.title--bd {
  margin-bottom: 70px;
  padding-left: calc((100% - 1209px) / 2);
}
.title--bd h2 {
  margin: 0;
}
.title--bd p {
  position: relative;
  margin-top: 24px;
  padding-top: 20px;
  line-height: 1.4;
}
.title--bd p::before {
  position: absolute;
  top: 0;
  left: calc((100% - 1209px)* -1);
  content: "";
  display: inline-block;
  min-width: 636px;
  width: 44vw;
  height: 5px;
  background: var(--main-clr-bk);
}

.top-ttl {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.float-txt {
  opacity: 0;
  position: absolute;
  top: 186px;
  right: 0;
  font-size: 399px;
  text-align: center;
  overflow: hidden;
}
.is-show .float-txt {
  opacity: 1;
}
.float-txt * {
  color: #004386;
  font-style: italic;
  font-family: var(--ff-alumni);
  font-weight: 100;
  line-height: 1;
}
@keyframes showTxtFromBtm{
  0%{
    transform: translateY( 100% );
  }
  100%{
    transform: translateY( 0px );
  }
}
.float-txt span {
  animation: showText 3s backwards;
  display: inline-block;
}
.float-txt p {
  overflow: hidden;
  margin-right: -10px;
}
.float-txt p + p{
  margin-top: -.41em;
}
.float-txt p > span > span {
  animation: showTxtFromBtm 0.5s backwards;
}

@media screen and (max-width: 768px) {
  .case {
    background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/case_bg-sp.png) no-repeat top center / 100%;
    margin: -160px 0 0;
    padding: 342px 20px 0;
  }

  .title--bd {
    margin-bottom: 30px;
  }
  .title--bd h2 {
    font-size: 25px;
  }
  .title--bd p {
    margin-top: 16px;
    padding-top: 18px;
    font-size: 16px;
    line-height: 1.35;
  }

  .title--bd p::before {
    left: 0;
    width: 100%;
    min-width: 100%;
  }

  .float-txt {
    top: 59.42vw;
    font-size: 148px;
    text-align: right;
  }

  .splide__pagination {
    margin: 0 15px;
  }
  .splide__pagination li:nth-child(n + 2) {
    margin-left: 8px;
  }
  .splide__pagination li button {
    width: 10px;
    height: 10px;
  }

  .pickup .splide__slide a {
    display: block;
    aspect-ratio: 59 / 65;
  }
  

}
.contents-inner {
  width: 1209px;
  margin: 0 auto;
}
.white-block {
  position: relative;
  z-index: 10;
  padding: 50px 36px;
  box-shadow: 0px 0px 27.8px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: rgb(255 255 255 / 85%);
}

.panel {
  display: none;
}
.panel.is-show {
  display: block;
}
.tab-sp {
  display: none;
}
.tab-wrap--case {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tab-wrap--case .tab {
  display: flex;
  align-items: center;
  width: 354px;
  height: 96px;
  padding-left: 38px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 5px;
}
.tab:hover {
  cursor: pointer;
  opacity: .7;
}
.tab-wrap--case .tab.is-active {
  background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/tab_item-pc.png) no-repeat center / contain;
}
.tab-wrap--case .tab img {
  width: 33px;
  margin-right: 18px;
}
.tab-wrap--case .tab:nth-child(2) {
  margin-top: 20px;
  padding-left: 30px;
}
.tab-wrap--case .tab:nth-child(2) img {
  width: 48px;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .contents-inner {
    width: 100%;
  }
  .white-block {
    margin-top: 30px;
    padding: 25px 10px;
  }
  .tab-wrap--case {
    display: block;
  }

  .tab-sp {
    position: relative;
    display: block;
    height: 42px;
    padding: 6px 35px 6px 16px;
    box-shadow: 0px 0px 10.3px 0px rgba(0, 0, 0, 0.35);
    border-radius: 6px;
    font-size: 20px;
    font-weight: bold;
  }
  .tab-sp::after {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    content: "";
    display: inline-block;
    border-top: 10px solid var(--main-clr-rd);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
  }

  .tab-area--pulldown {
    position: relative;
  }
  .tab-wrap--news .tab-group,
  .tab-area--pulldown .tab-group {
    position: absolute;
    display: none;
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #ccc;
    background: var(--main-clr-wt);
    z-index: 10;
  }


  .tab-wrap--case .tab {
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 24px 0 0;
    font-size: 22px;
  }
  .tab-wrap--case .tab.is-active {
    background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/tab_item-sp.png) no-repeat center / contain;
  }

  .tab-wrap--case .tab img {
    width: 28px;
    margin-right: 10px;
  }
  .tab-wrap--case .tab:nth-child(2) {
    margin-top: -14px;
    padding-left: 0;
  }
  .tab-wrap--case .tab:nth-child(2) img {
    width: 40px;
  }
}

.map-area {
  width: 514px;
  margin-right: 130px;
}
.map-area img {
  max-width: 100%;
}
.japan-map {
  position: relative;
}
.area-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 46px;
  border: 3px solid var(--main-clr-bk);
  border-radius: 6px;
  background: var(--main-clr-wt);
  font-weight: bold;
}
.area-btn:hover {
  cursor: pointer;
  opacity: .7;
}
.area-btn.is-active {
  border: var(--main-clr-rd);
  background: var(--main-clr-rd);
  color: var(--main-clr-wt);
}
.area-btn.hokaido,
.area-btn.tohoku {
  width: 91px;
}
.area-btn.hokaido {
  top: 9.3%;
  right: 5.3%;
}
.area-btn.tohoku {
  top: 38%;
  right: 12.2%;
}
.area-btn.hokuriku {
  top: 51.5%;
  right: 42%;
}
.area-btn.kanto {
  width: 159px;
  right: 2%;
  bottom: 26.6%;
}
.area-btn.tokai {
  right: 29%;
  bottom: 11%;
}
.area-btn.kansai {
  right: 46%;
  bottom: 20%;
}
.area-btn.chugoku {
  bottom: 26%;
  left: 24%;
}
.area-btn.shikoku {
  bottom: 6.5%;
  left: 26.5%;
}
.area-btn.kyusyu {
  bottom: 9.5%;
  left: 8.3%;
}
.area-btn.all{
  top: 29.5%;
  left: 34.5%;
}
@media screen and (max-width: 768px) {
  .map-area {
    width: 100%;
    max-width: 317px;
    margin: 0 auto;
  }
  .area-btn {
    border-width: 2px;
    width: 42px;
    height: 28px;
    border-radius: 4px;
    font-size: 12px;
  }
  .area-btn.hokaido,
  .area-btn.tohoku {
    width: 56px;
  }
  .area-btn.hokaido {
    top: 14.3%;
    right: -2%;
  }
  .area-btn.tohoku {
    top: 42%;
    right: 2.2%;
  }
  .area-btn.hokuriku {
    top: 49.5%;
    right: 40%;
  }
  .area-btn.kanto {
    width: 98px;
    bottom: 29.6%;
  }
  .area-btn.tokai {
    right: 27.5%;
    bottom: 15.5%;
  }
  .area-btn.kansai {
    right: 43.5%;
    bottom: 24%;
  }
  .area-btn.chugoku {
    bottom: 29.5%;
    left: 28%;
  }
  .area-btn.shikoku {
    bottom: 11%;
    left: 30.5%;
  }
  .area-btn.kyusyu {
    bottom: 13.5%;
    left: 13.3%;
  }
  .area-btn.all{
    top: 28.5%;
    left: 37.5%;
  }
}

.category-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-left: 16px;
}
.category_btn a {
  position: relative;
  display: inline-block;
  width: 143px;
  height: 143px;
}
.category_btn a:hover img {
  opacity: .7;
}
.category_btn a.is-active img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(93%) saturate(5547%) hue-rotate(339deg) brightness(89%) contrast(105%);
}
@media screen and (max-width: 768px) {
  .category-area {
    margin: 0;
    gap: 15px;
    justify-content: flex-start;
  }
  .category_btn {
    width: calc((100% - 30px) / 3);
  }
  .category_btn a {
    width: 100%;
    height: auto;
  }
}

.result-heading {
  position: relative;
  font-size: 30px;
  font-weight: bold;
}
.result-heading::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 100%;
  border-top: 2px dotted var(--main-clr-bk);
}
.result-heading span {
  background: #fff;
  display: inline-block;
  position: relative;
  z-index: 10;
  padding: 0 15px 0 0;
}

.result-block {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.case-item {
  width: calc((100% - 100px) / 3);
}
.case-item a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.case-item a:hover {
  color: var(--main-clr-bk);
}
.case-item a:hover img {
  opacity: .7;
}
.case-img {
  aspect-ratio: 16 / 9;
}
.case-img img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.case-detail {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.case-ttl {
  display: -webkit-box;
  flex-grow: 1;
  margin: 19px 0 0;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.case-txt {
  display: -webkit-box;
  margin: 12px 0 0;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.case-more {
  margin-top: 15px;
}
.case-more img {
  max-width: 100%;
}

.view-more {
  display: block;
  width: 100px;
  margin: 42px auto 0;
  padding: 0;
  border: none;
  background: transparent;
}
.view-more:hover {
  cursor: pointer;
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .result-heading {
    margin: 64px 0 32px;
    font-size: 21px;
  }

  .case-result {
    padding: 0 10px;
  }

  .result-block {
    display: block;
  }

  .case-item {
    width: 100%;
  }
  .case-item:nth-child(n + 2) {
    margin-top: 42px;
  }
  .case-item .tag {
    padding: 11px 24px;
  }
  .case-ttl {
    margin-top: 17px;
  }
  .case-txt {
    font-size: 14px;
    line-height: 1.4;
  }
  .case-more {
    margin-top: 4px;
  }
}



/* 最新ニュース */
.news {
  position: relative;
  margin-top: -216px;
  padding-top: 366px;
  background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/news_bg-pc.png) no-repeat top center / 100% 536px;
}
.news .title--bd {
  position: relative;
  padding-top: 90px;
  z-index: 10;
}
.news .float-txt {
  top: 372px;
}

.tab-wrap--news .tab-group {
  display: flex;
}
.tab-wrap--news .tab {
  font-size: 25px;
  font-weight: bold;
  padding: 0 23px;
  letter-spacing: 2px;
}
.tab-wrap--news .tab.is-active{
  color: var(--main-clr-rd);
}
.tab-wrap--news .tab:nth-child(n + 2) {
  border-left: 2px solid var(--main-clr-bk);
}
.tab-wrap--news .tab:first-of-type {
  padding-left: 16px;
}
.tab-wrap--news .tab:last-of-type {
  padding-right: 16px;
}

.news-list {
  width: 1117px;
  margin: 56px auto 0;
}
.news-list_item:nth-child(n + 2) {
  margin-top: 25px;
}
.news-list_item a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 22px 60px 22px 97px;
  border-radius: 6px;
  box-shadow: 0px 0px 9.3px 0px rgba(0, 0, 0, 0.25);
  background: var(--main-clr-wt);
}
.news-list_item.is-new a::before {
  position: absolute;
  bottom: 13px;
  left: 12px;
  content: "";
  display: inline-block;
  background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/icon_new.png) no-repeat center / cover;
  width: 47px;
  height: 19px;
}
.news-list_item a::after {
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 28px;
  height: 10px;
  background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/icon_arrow-news.png) no-repeat center / cover;
}
.news-list_item a:hover {
  opacity: .7;
  color: var(--main-clr-bk);
}
.news-list_item .tag {
  padding: 8px 10px;
}
.icon-cate {
  width: 113px;
}
.news-detail {
  width: calc(100% - 152px);
  margin-left: 39px;
}
.news-detail_date {
  font-size: 12px;
  font-weight: bold;
}
.news-detail_txt {
  margin-top: 4px;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .news {
    margin: -180px 0 0;
    padding: 312px 20px 0;
    background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/news_bg-sp.png) no-repeat top center / 100%;
  }

  .news .float-txt {
    top: 240px;
  }

  .news .white-block {
    padding: 45px 20px;
  }

  .tab-wrap--news .tab {
    padding: 0;
    font-size: 20px;
  }
  .tab-wrap--news .tab:first-of-type {
    padding-left: 0;
  }
  .tab-wrap--news .tab:last-of-type {
    padding-right: 0;
  }
  .tab-wrap--news .tab:nth-child(n + 2) {
    border-left: none;
  }

  .tab-wrap--news .tab-group {
    display: none;
  }

  .news-list {
    width: 100%;
    margin-top: 46px;
  }
  .news-list_item a {
    flex-direction: column;
    justify-content: center;
    padding: 18px 15px 48px;
  }
  .news-list_item.is-new a::before{
    top: 14px;
    right: 12px;
    bottom: auto;
    left: auto;
  }
  .news-list_item a::after{
    top: auto;
    right: auto;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
  }
  .news-detail {
    width: 100%;
    margin: 5px 0 0;
  }

  .news-list_item:nth-child(n + 2) {
    margin-top: 29px;
  }
}


/* 特集ページ */
.special {
  margin: 132px 0 0;
  padding: 150px 0 146px;
  background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/special_bg-pc.png) no-repeat top center / 100% 100%;
}
.special .title h2 {
  margin: 0;
  color: var(--main-clr-wt);
  font-size: 80px;
  font-style: italic;
  font-family: var(--ff-alumni);
  font-weight: normal;
}
.special .title p {
  margin-top: -4px;
  padding-top: 4px;
  border-top: 2px solid var(--main-clr-wt);
  color: var(--main-clr-wt);
  font-size: 18px;
}

.special-banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 38px 0 0;
}
.special-banners_item {
  width: 564px;
}
.special-banners_item a:hover {
  opacity: .7;
}
.special-banners_item:nth-child(2) {
  margin-left: 51px;
}
.special-banners_item:nth-child(3) {
  margin-top: 56px;
  width: 423px;
}
.special-banners_item img {
  border-radius: 20px;
}
.special-banners_txt{
  margin-top: 11px;
  color: var(--main-clr-wt);
  text-align: center;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .special {
    margin-top: 92px;
    padding: 90px 0 83px;
    background: url(https://www.ntt.com/content/dam/nttcom/hq/jp/business/lp/regional-effort/lgpf/img/special_bg-sp.png) no-repeat top center / 100% 100%;
  }
  .special .contents-inner {
    padding: 0 20px;
  }
  .special .title h2 {
    padding-bottom: 6px;
    font-size: 60px;
  }

  .special-banners {
    margin-top: 32px;
    display: block;
  }
  .special-banners_item,
  .special-banners_item:nth-child(3) {
    width: 100%;
  }
  .special-banners_item:nth-child(2) {
    margin-left: 0;
  }
  .special-banners_item:nth-child(n + 2) {
    margin-top: 25px;
  }
  .special-banners_item img {
    border-radius: 3.87vw;
  }

  .special-banners_txt {
    margin-top: 5px;
  }

}


/* 下部バナーエリア */
.btm-links {
  margin: 50px 0 0;
  text-align: center;
}
.btm-links_item {
  width: 695px;
  margin: 0 auto;
}
.btm-links_item a:hover {
  opacity: .7;
}
.contact-block {
  margin: 50px 0 0;
}
.contact-block a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1116px;
  height: 110px;
  margin: 0 auto;
  padding: 10px 41px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(189, 0, 46, 1) 0%, rgba(251, 0, 63, 1) 100%);
  color: var(--main-clr-wt);
}

.contact-block a:hover {
  opacity: .7;
}
.contact-block a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 2px;
  height: 90px;
  background: var(--main-clr-wt);
}
.contact-block_txt {
  width: 50%;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}
.contact-block_link {
  display: flex;
  justify-content: center;
  width: 50%;
  padding-left: 56px;
}
.contact-block_link img {
  width: 50px;
}
.contact-block_link p {
  margin-left: 17px;
  font-size: 23px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .btm-links_item {
    width: 80%;
  }
  .contact-block {
    margin-top: 72px;
    padding: 0 20px;
  }

  .contact-block a{
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    padding: 30px 20px 24px;
  }
  .contact-block a::before {
    display: none;
  }
  .contact-block_txt {
    width: 100%;
    margin-top: 15px;
    padding: 17px 34px 0;
    border-top: 2px solid var(--main-clr-wt);
    text-align: center;
    line-height: 1.45;
  }
  .contact-block_link {
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .contact-block_link p {
    margin: 0;
  }
}

/* フッター */
footer {
  margin-top: 107px;
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 83px;
  }
}




@media screen and (max-width: 480px) {
  .slider-detail {
    bottom: initial;
  }
}

.youtube-iframe {
  aspect-ratio: 16 / 9;
  width:100%;
}