@charset "UTF-8";
/*共通パーツ(ヘッダー、フッター、配下ページのラベル）*/
html {
  scroll-behavior: smooth;
  transition: all 0.3s ease-in-out;
}

body {
  font-family: "YUGshic","Noto Sans JP", sans-serif;
  color: #2A2A2A;
}

/*画面幅が768px以下の指定*/
@media screen and (max-width: 768px) {
  body {
    font-size: 0.87rem;
    line-height: 1.5;
    min-width: 375px;
  }

  .sp-br {
    display: block;
    word-break: break-word;
  }

  .tb-br {
    display: none;
  }

  .pc-br {
    display: none;
  }
}
/*ヘッダー*/
#header {
  position: fixed;
  z-index: 999;
  width: 100%;
}

.global-header {
  height: 60px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 15px;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  width: 80px;
  height: 30px;
}

.site-title {
  margin-left: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.hamburger {
  width: 70px;
  height: 60px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  right: 15px;
  top: 0;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 35px;
  height: 3px;
  background-color: #005BCA;
}

/* モバイルメニュー */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -335px;
  width: 335px;
  background-color: #F6FAFD;
  padding: 75px 20px 50px;
  transition: right 0.3s ease;
  z-index: 1000;
  border-radius: 25px 0 0 25px;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav li {
  font-size: 1rem;
  font-weight: 700;
}

.mobile-menu {
  width: 240px;
  height: 60px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu a::after {
  content: url("../img/arrow.svg");
  height: 14px;
  width: 8px;
  margin-left: 10px;
}

.mobile-nav .label {
  pointer-events: none;
  margin-bottom: 8px;
}

.label-menu {
  width: 240px;
  padding: 17px 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.label-menu::after {
  content: url("../img/arrow.svg");
  width: 8px;
  margin-left: 10px;
}

.btn {
  display: block;
  padding: 10px;
  text-align: center;
  border-radius: 40px;
  width: 200px;
  margin-bottom: 20px;
}
.btn.btn-b {
  background-color: #005BCA;
  color: #FFFFFF;
}
.btn.btn-w {
  background-color: #FFFFFF;
  color: #005BCA;
  border: solid 2px #005BCA;
}

.pc-nav {
  display: none;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 10px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -10px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  /* 確認したい時は透明度変更してください */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 50;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/*フッター*/
footer {
  z-index: 200;
  margin-top: -125px;
  position: relative;
  background-image: url("../img/footer-top-sp.svg");
  background-repeat: no-repeat;
  background-position: center 5%;
}
footer::before {
  content: "";
  background-color: #CEE2F0;
  z-index: -1;
  width: 100%;
  height: 1000px;
  position: absolute;
  top: 7%;
}
footer .footer-btn-area {
  padding: 0 30px 40px 30px;
  position: relative;
}
footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn {
  border-radius: 20px;
  width: 100%;
  min-width: 315px;
  max-width: 500px;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #FFFFFF;
  margin: 0 auto 20px auto;
}
footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-contact-btn-content {
  padding: 20px　20px 20px 15px;
  top: 0;
  left: 0;
}
footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-title {
  position: absolute;
  top: 7px;
  left: 20px;
  display: block;
  font-size: 1.5rem;
}
footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-title span {
  position: absolute;
  top: 30px;
  left: 0;
  font-size: 1rem;
}
footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-arrow {
  position: absolute;
  top: 25px;
  right: 20px;
}
footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-text {
  position: absolute;
  width: 90%;
  top: 65px;
  left: 20px;
  font-size: 0.8rem;
}
footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-bk-img {
  width: 100%;
  transition-duration: 0.5s;
  display: block;
}
footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn:hover .footer-btn-bk-img {
  transform: scale(1.2);
  transition-duration: 0.5s;
}
footer .footer-btn-area .footer-munual-site-area {
  background-color: #CEE2F0;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  min-height: 170px;
  min-width: 315px;
  position: relative;
  cursor: pointer;
  background-color: #FFFFFF;
  border: solid 2px #8c8c8c;
  margin-bottom: 20px;
  padding: 20px;
}
footer .footer-btn-area .footer-munual-site-area .footer-munual-btn-icon {
  position: absolute;
  top: 30px;
  left: 20px;
  width: 49px;
  height: 100%;
}
footer .footer-btn-area .footer-munual-site-area .footer-munual-btn-icon span {
  background-image: url("../img/footer-munual-icon.svg");
  background-repeat: no-repeat;
  padding: 25px;
  background-position: center;
  background-size: contain;
}
footer .footer-btn-area .footer-munual-site-area .footer-munual-btn-title {
  display: block;
  position: absolute;
  top: 20px;
  left: 80px;
  font-size: 1rem;
  font-weight: 700;
}
footer .footer-btn-area .footer-munual-site-area .munual-btn-icon-arrow {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 40px;
  height: 40px;
}
footer .footer-btn-area .footer-munual-site-area .munual-btn-icon-arrow span {
  background-image: url("../img/footer-munual-arrow-icon.svg");
  background-repeat: no-repeat;
  padding: 20px;
  background-position: center;
  background-size: contain;
}
footer .footer-btn-area .footer-munual-site-area .footer-munual-btn-text {
  position: absolute;
  width: 90%;
  top: 80px;
}
footer .footer-btn-area .footer-munual-site-area:hover {
  background-color: #8c8c8c;
  transition: All 0.2s ease-in-out;
}
footer .footer-btn-area .footer-munual-site-area:hover .footer-munual-btn-title {
  color: #FFFFFF;
  transition: All 0.2s ease-in-out;
}
footer .footer-btn-area .footer-munual-site-area:hover .footer-munual-btn-text {
  color: #FFFFFF;
  transition: All 0.2s ease-in-out;
}
footer .footer-btn-area .footer-munual-site-area:hover .footer-munual-btn-icon span {
  background-image: url("../img/footer-munual-icon-hover.svg");
  background-repeat: no-repeat;
  padding: 25px;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
footer .footer-btn-area .footer-munual-site-area:hover .munual-btn-icon-arrow span {
  background-image: url("../img/footer-munual-arrow-icon-hover.svg");
  background-repeat: no-repeat;
  padding: 20px;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
footer .company-guide-area {
  background-color: #CEE2F0;
  padding: 0 30px;
}
footer .company-guide-area .company-guide {
  border-bottom: solid 1px #2A2A2A;
}
footer .company-guide-area .company-guide .footer-logo {
  width: 119px;
  height: 100%;
  margin-left: -6px;
}
footer .company-guide-area .company-guide .company .CIJ-DSD {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
}
footer .company-guide-area .company-guide .company .address {
  margin: 10px 0;
  line-height: 1.5;
  font-size: 1rem;
}
footer .company-guide-area .company-guide .company table {
  font-size: 1rem;
  font-weight: normal;
}
footer .company-guide-area .company-guide .company table tr {
  line-height: 1.5;
}
footer .company-guide-area .company-guide .company table tr th {
  font-weight: 500;
  padding-right: 10px;
}
footer .company-guide-area .corporate-website {
  cursor: pointer;
  padding: 5px;
  margin: 15px 0 20px 0;
  background: linear-gradient(transparent 0%, #FFFFFF 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  width: 290px;
}
footer .company-guide-area .corporate-website a {
  display: flex;
  align-items: center;
}
footer .company-guide-area .corporate-website a img {
  width: 120px;
  height: 100%;
}
footer .company-guide-area .corporate-website a p {
  font-size: 1rem;
  margin-left: 5px;
}
footer .company-guide-area .footer-nav {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
footer .company-guide-area .footer-nav li:hover {
  color: #005BCA;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  transition: all 0.3s ease;
}
footer .company-guide-area .footer-nav .footer-nav-service-h:hover {
  text-decoration: none;
}
footer .company-guide-area .footer-nav .footer-nav1 {
  margin-bottom: 20px;
}
footer .company-guide-area .footer-nav .footer-nav1 .footer-menu-list {
  margin-bottom: 20px;
}
footer .company-guide-area .footer-nav .footer-nav1 .footer-nav-service-h {
  color: #8c8c8c;
  margin-bottom: 15px;
}
footer .company-guide-area .footer-nav .footer-nav1 .footer-menu-list-s {
  font-weight: 500;
  margin-bottom: 15px;
}
footer .company-guide-area .footer-nav .footer-nav2 ul li {
  margin-bottom: 20px;
}
footer .company-guide-area .footer-nav .footer-nav2 ul li:nth-last-child(1) {
  margin-bottom: 0;
}
footer .company-guide-area .footer-nav .footer-nav2 ul li .footer-menu-munual span {
  background-image: url("../img/footer-icon.svg");
  padding: 12px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 5px;
}
footer .company-guide-area .footer-nav .footer-nav2 ul li:hover .footer-menu-munual span {
  background-image: url("../img/footer-icon-b.svg");
}
footer .company-guide-area .footer-nav .footer-nav2 ul li .tb-blank span {
  background-image: url("../img/footer-icon.svg");
  padding: 12px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 5px;
}
footer .company-guide-area .footer-nav .footer-nav2 ul li:hover .tb-blank span {
  background-image: url("../img/footer-icon-b.svg");
}
footer .footer-copyright {
  background-color: #CEE2F0;
  padding: 40px 30px 20px 30px;
}

/*各配下ページ上部のラベル部分*/
#label {
  width: 100%;
  height: 285px;
  padding: 90px 30px 20px 30px;
}
#label.system-development-label {
  width: 100%;
  height: 100%;
  background-image: url("../img/service/ds/label_ds.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#label.contents-label {
  width: 100%;
  height: 100%;
  background-image: url("../img/service/cn/label_cn.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#label.documents-label {
  width: 100%;
  height: 100%;
  background-image: url("../img/service/dc/label_dc.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#label.column-label {
  width: 100%;
  height: 100%;
  background-image: url("../img/column/column-label.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 45%;
}
#label .breadcrumb {
  background-color: transparent;
}
#label .breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
#label .breadcrumb ul li {
  white-space: normal;
  display: inline-flex;
}
#label .breadcrumb ul .breadcrumb-bkdir {
  transition: all 0.3s ease;
}
#label .breadcrumb ul .breadcrumb-bkdir a {
  border-bottom: solid 1px #2A2A2A;
  white-space: nowrap;
}
#label .breadcrumb ul .breadcrumb-bkdir::after {
  content: url("../img/arrow.svg");
  width: 8px;
  height: 14px;
  margin: 0 15px;
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
  white-space: nowrap;
}
#label .breadcrumb ul .breadcrumb-bkdir:hover {
  transition: all 0.3s ease;
  color: #8c8c8c;
}
#label .breadcrumb ul .breadcrumb-bkdir:hover a {
  border-bottom: solid 1px #8c8c8c;
}
#label .page-title {
  font-size: 1.7rem;
  font-weight: 700;
}
#label .page-title-en {
  font-size: 1rem;
  font-weight: 700;
}
#label .label-text {
  margin: 20px auto 0 auto;
}

/*ページ上部に戻るボタン*/
.pagetop-btn {
  position: fixed;
  z-index: 800 !important;
  bottom: 20px;
  right: 20px;
}
.pagetop-btn .top-btn {
  text-align: center;
  display: block;
  text-decoration: none;
  background: #FFFFFF;
  border: solid 2px #005BCA;
  color: #005BCA;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
}
.pagetop-btn .top-btn .top_arrow {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  align-items: center;
}
.pagetop-btn .top-btn .top_arrow::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% - 2px);
  width: 3px;
  height: 23px;
  border-radius: 9999px;
  background-color: #005BCA;
  transform-origin: 50% 2px;
  transform: rotate(45deg);
}
.pagetop-btn .top-btn .top_arrow::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% - 2px);
  width: 3px;
  height: 23px;
  border-radius: 9999px;
  background-color: #005BCA;
  transform-origin: 50% 2px;
  transform: rotate(-45deg);
}
.pagetop-btn .top-btn:hover {
  text-decoration: none;
  background-color: #CDEEFF;
  transition: background-color 0.3s ease;
}
.pagetop-btn .top-btn {
  width: 70px;
  height: 70px;
}

@media screen and (max-width: 1200px) {
  .tb-br {
    display: none;
  }
}
/*画面幅が1200px以上は以下のCSSを適用*/
@media screen and (min-width: 1200px) {
  body {
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .sp-br {
    display: none;
    word-break: break-word;
  }

  .tb-br {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .pc-nav {
    display: block;
  }

  .global-header {
    height: 86px;
    padding: 0 60px;
  }

  .hamburger,
  .mobile-nav {
    display: none;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: 152.969px;
    height: 56px;
  }

  .site-title {
    margin-left: 30px;
    font-size: clamp(1rem, 1.5vw, 1.75rem);
  }

  .pc-nav {
    display: block;
    margin-left: auto;
    margin-right: 10px;
  }

  .nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    height: 86px;
  }

  .nav-list li {
    position: relative;
  }

  .nav-list .btn {
    padding: 5px;
    width: 200px;
    height: 44px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    border: solid 2px #005BCA;
  }
  .nav-list .btn:hover.btn-b {
    background-color: #FFFFFF;
    color: #005BCA;
    border: solid 2px #005BCA;
    transition: all 0.3s ease;
  }

  .nav-list .btn + .btn {
    margin-left: 20px;
  }

  .hov-b {
    position: relative;
    width: 100%;
    padding: 0 20px;
    align-items: center;
    transition: all 0.3s ease-in-out;
  }
  .hov-b:hover {
    color: #8c8c8c;
    transition: all 0.3s ease-in-out;
  }
  .hov-b:hover::after {
    content: "";
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #005BCA;
    transition: all 0.3s ease-in-out;
  }

  /* サブメニュー */
  .submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 386px;
    background-color: #F6FAFD;
    padding: 0;
    flex-direction: column;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 6px 10px 4px rgba(42, 100, 166, 0.25);
    z-index: 100;
    font-weight: 500;
  }
  .submenu li {
    position: relative;
    padding: 0;
  }
  .submenu li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
  }
  .submenu li img {
    width: 36px;
    height: 36px;
    margin-right: -20px;
  }
  .submenu li .submenu-li {
    position: absolute;
    left: 76px;
  }
  .submenu li .header-arrow {
    position: absolute;
    right: 30px;
  }

  .service-parent {
    height: 86px;
    display: flex;
    align-items: center;
  }
  .service-parent::after {
    content: url("../img/arrow-btm.svg");
    margin-left: 5px;
    padding-left: -20px;
    padding-right: 20px;
  }
  .service-parent .hov-b:hover {
    color: #2A2A2A;
  }

  .header-arrow {
    background-color: #005BCA;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 3px;
    float: left;
  }
  .header-arrow .h-arrow::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    transform: rotate(45deg);
  }
  .header-arrow .h-arrow.r-arrow::before {
    transform: rotate(45deg);
  }

  .service-parent:hover .submenu {
    display: flex;
  }

  .submenu li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    transition: background 0.2s;
  }
  .submenu li img {
    width: 36px;
    height: 36px;
  }

  .submenu li:hover {
    background-color: #CEE2F0;
    transition: all 0.3s ease;
  }
  .submenu li:hover .header-arrow {
    background-color: #FFFFFF;
    border: solid 1px #005BCA;
    transition: all 0.3s ease;
  }
  .submenu li:hover .header-arrow .h-arrow::before {
    border-top: 2px solid #005BCA;
    border-right: 2px solid #005BCA;
    transition: all 0.3s ease;
  }

  footer {
    z-index: 200;
    margin-top: -250px;
    position: relative;
    background-image: url("../img/footer-top-pc.svg");
    background-repeat: no-repeat;
    background-position: center 20%;
  }
  footer::before {
    content: "";
    background-color: #CEE2F0;
    z-index: -1;
    width: 100%;
    height: 800px;
    position: absolute;
    top: 25%;
  }
  footer .footer-btn-area {
    padding: 0 30px 40px 30px;
    position: relative;
    width: 100%;
  }
  footer .footer-btn-area .footer-contact-btn-area {
    display: flex;
    justify-content: center;
  }
  footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn {
    border-radius: 20px;
    width: 740px;
    max-width: 740px;
    height: 294px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: #FFFFFF;
    margin: 0 auto 40px auto;
  }
  footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-contact-btn-content {
    padding: 20px　20px 20px 15px;
    top: 0;
    left: 0;
  }
  footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-title {
    top: 60px;
    left: 80px;
    font-size: 2.25rem;
  }
  footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-title span {
    position: absolute;
    top: 55px;
    left: 0;
    font-size: 1.5rem;
  }
  footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-arrow {
    position: absolute;
    top: 125px;
    right: 80px;
    height: 50px;
    width: 75px;
  }
  footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-arrow img {
    height: 100%;
    width: 100%;
  }
  footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-text {
    position: absolute;
    width: 85%;
    top: 180px;
    left: 80px;
    font-size: 1.25rem;
  }
  footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn .footer-btn-bk-img {
    width: 100%;
    transition-duration: 0.5s;
    display: block;
  }
  footer .footer-btn-area .footer-contact-btn-area .footer-dl-contact-btn:hover .footer-btn-bk-img {
    transform: scale(1.2);
    transition-duration: 0.5s;
  }
  footer .footer-btn-area .footer-munual-site-area {
    background-color: #FFFFFF;
    border-radius: 30px;
    width: 100%;
    height: 174px;
    max-height: 174px;
    max-width: 1520px;
    margin: 0 auto 20px auto;
    padding: 20px;
  }
  footer .footer-btn-area .footer-munual-site-area .footer-munual-btn-icon {
    position: absolute;
    top: 70px;
    left: 140px;
    width: 100px;
    height: 94.057px;
  }
  footer .footer-btn-area .footer-munual-site-area .footer-munual-btn-icon span {
    background-image: url("../img/footer-munual-icon.svg");
    background-repeat: no-repeat;
    padding: 50px;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
  footer .footer-btn-area .footer-munual-site-area .footer-munual-btn-title {
    top: 30px;
    left: 260px;
    font-size: 2.25rem;
  }
  footer .footer-btn-area .footer-munual-site-area .munual-btn-icon-arrow {
    position: absolute;
    top: 70px;
    right: 140px;
    width: 80px;
    height: 80px;
  }
  footer .footer-btn-area .footer-munual-site-area .munual-btn-icon-arrow span {
    background-image: url("../img/footer-munual-arrow-icon.svg");
    background-repeat: no-repeat;
    padding: 40px;
    background-position: center;
    background-size: contain;
  }
  footer .footer-btn-area .footer-munual-site-area .footer-munual-btn-text {
    font-size: 1.25rem;
    position: absolute;
    width: 53%;
    max-width: 1050px;
    top: 90px;
    left: 260px;
    margin-right: 400px;
  }
  footer .footer-btn-area .footer-munual-site-area:hover {
    background-color: #8c8c8c;
    transition: All 0.2s ease-in-out;
  }
  footer .footer-btn-area .footer-munual-site-area:hover .footer-munual-btn-title {
    color: #FFFFFF;
    transition: All 0.2s ease-in-out;
  }
  footer .footer-btn-area .footer-munual-site-area:hover .footer-munual-btn-text {
    color: #FFFFFF;
    transition: All 0.2s ease-in-out;
  }
  footer .footer-btn-area .footer-munual-site-area:hover .footer-munual-btn-icon span {
    background-image: url("../img/footer-munual-icon-hover.svg");
    background-repeat: no-repeat;
    padding: 50px;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease-in-out;
  }
  footer .footer-btn-area .footer-munual-site-area:hover .munual-btn-icon-arrow span {
    background-image: url("../img/footer-munual-arrow-icon-hover.svg");
    background-repeat: no-repeat;
    padding: 40px;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease-in-out;
  }
  footer .company-guide-area {
    background-color: #CEE2F0;
    padding: 0;
    display: flex;
    width: 95%;
    max-width: 1520px;
    margin: 0 auto;
    justify-content: space-between;
  }
  footer .company-guide-area .company-guide {
    border-bottom: none;
    display: flex;
    flex-direction: column;
    width: 50%;
  }
  footer .company-guide-area .company-guide .footer-logo {
    width: 247px;
    height: 100%;
    margin-left: -6px;
  }
  footer .company-guide-area .company-guide .company .CIJ-DSD {
    font-size: 1.25rem;
    margin-top: 7px;
  }
  footer .company-guide-area .company-guide .company .address {
    margin: 10px 0;
    line-height: 1.5;
    font-size: 1.25rem;
  }
  footer .company-guide-area .company-guide .company table {
    font-size: 1.25rem;
    font-weight: normal;
  }
  footer .company-guide-area .company-guide .company table tr {
    line-height: 1.5;
  }
  footer .company-guide-area .company-guide .company table tr th {
    font-weight: 500;
    padding-right: 10px;
  }
  footer .company-guide-area .corporate-website {
    width: 310px;
  }
  footer .company-guide-area .corporate-website img {
    width: 146px;
    height: 100%;
  }
  footer .company-guide-area .corporate-website p {
    font-size: 1rem;
    margin-left: 5px;
  }
  footer .company-guide-area .footer-nav {
    margin-top: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }
  footer .company-guide-area .footer-nav .footer-nav1 {
    margin-bottom: 20px;
  }
  footer .company-guide-area .footer-nav .footer-nav1 .footer-menu-list {
    margin-bottom: 20px;
  }
  footer .company-guide-area .footer-nav .footer-nav1 .footer-nav-service-h {
    color: #8c8c8c;
    margin-bottom: 15px;
  }
  footer .company-guide-area .footer-nav .footer-nav1 .footer-menu-list-s {
    font-weight: 500;
    margin-bottom: 15px;
  }
  footer .company-guide-area .footer-nav .footer-nav2 {
    margin-left: 40px;
  }
  footer .company-guide-area .footer-nav .footer-nav2 ul li {
    margin-bottom: 20px;
  }
  footer .company-guide-area .footer-nav .footer-nav2 ul li .footer-menu-munual span {
    background-image: url("../img/footer-icon.svg");
    padding: 12px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px;
  }
  footer .footer-copyright {
    background-color: #CEE2F0;
    padding: 40px 30px 20px 30px;
    text-align: center;
  }
  footer .footer-copyright small {
    font-size: 1.125rem;
  }

  /*各ページ配下のトップ部分*/
  #label {
    width: 100%;
    height: 285px;
    padding: 136px 30px 100px 30px;
  }
  #label div {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  #label .breadcrumb ul .breadcrumb-bkdir::after {
    margin: 0 12px;
  }
  #label .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 50px;
  }
  #label .page-title-en {
    font-size: 1.5rem;
    font-weight: 700;
  }
  #label .label-text {
    margin: 30px auto 0 auto;
    font-size: 1.125rem;
  }

  /*ページ上部に戻るボタン*/
  .pagetop-btn {
    position: fixed;
    z-index: 999 !important;
    bottom: 20px;
    right: 20px;
  }
  .pagetop-btn .top-btn {
    text-align: center;
    display: block;
    text-decoration: none;
    background: #FFFFFF;
    border: solid 2px #005BCA;
    color: #005BCA;
    font-size: 1rem;
    font-weight: 700;
    line-height: 2rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
  }
  .pagetop-btn .top-btn .top_arrow {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    align-items: center;
  }
  .pagetop-btn .top-btn .top_arrow::before {
    content: "";
    position: absolute;
    top: 30px;
    left: calc(50% - 2px);
    width: 4px;
    height: 35px;
    border-radius: 9999px;
    background-color: #005BCA;
    transform-origin: 50% 2px;
    transform: rotate(45deg);
  }
  .pagetop-btn .top-btn .top_arrow::after {
    content: "";
    position: absolute;
    top: 30px;
    left: calc(50% - 2px);
    width: 4px;
    height: 35px;
    border-radius: 9999px;
    background-color: #005BCA;
    transform-origin: 50% 2px;
    transform: rotate(-45deg);
  }
  .pagetop-btn .top-btn:hover {
    text-decoration: none;
    background-color: #CDEEFF;
    transition: background-color 0.3s ease;
  }
  .pagetop-btn .top-btn {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 1500px) {
  .sp-br {
    display: none;
    word-break: break-word;
  }

  .tb-br {
    display: none;
  }

  .pc-br {
    display: block;
  }
}
