body {
  background-color: #12b3c7;
  font-family: "Noto Sans JP";
  font-style: normal;
}

.container {
  margin: 24px auto;
  width: calc(100% - 48px);
  /* max-width: 1318px; */
  background-color: #fff;
  border-radius: 16px;
  position: relative;
}

.container__inner {
  padding: 56px 0 48px 0;
  width: 100%;
  background-image: url("images/img-bg.png");
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
}

@keyframes main-image-animation {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  27% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.main-image-box {
  width: 45.52%;
  height: 100%;
  max-height: 1000px;
  position: absolute;
  top: 94px;
  right: 59px;
  z-index: 2;
}
.main-image-box > .image-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("images/img-main-1.png");
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0;
  animation: main-image-animation 16s ease-in infinite;
}
.main-image-box > .image-2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("images/img-main-2.png");
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0;
  animation: main-image-animation 16s ease-in infinite;
  animation-delay: 4s;
}
.main-image-box > .image-3 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("images/img-main-3.png");
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0;
  animation: main-image-animation 16s ease-in infinite;
  animation-delay: 8s;
}
.main-image-box > .image-4 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("images/img-main-4.png");
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0;
  animation: main-image-animation 16s ease-in infinite;
  animation-delay: 12s;
}

.header {
  padding: 0 59px;
  width: 100%;
  z-index: 3;
  position: relative;
}

.header__inner {
  margin: auto;
  width: 100%;
  max-width: 1200px;
  height: 50px;
  display: flex;
  align-items: center;
}

.header__inner > .logo {
  width: 404px;
  height: auto;
  display: flex;
  column-gap: 30px;
}

.header__inner > .logo > .link {
  display: block;
}

.header__inner > .nav {
  margin-left: auto;
}

.header__inner > .nav > ul {
  display: flex;
  align-items: center;
}

.header__inner > .nav > ul > li > .link {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  display: flex;
  align-items: center;
  color: #027e9b;
  transition: all 0.25s ease-in;
}
.header__inner > .nav > ul > li > .link:hover {
  color: #4c4948;
}

.header__inner > .nav > ul > li > .link > svg {
  margin-left: 8px;
}
.header__inner > .nav > ul > li > .link > svg > path {
  transition: all 0.25s ease-in;
}
.header__inner > .nav > ul > li > .link:hover > svg > path {
  stroke: #4c4948;
}

.header__inner > .nav > ul > li > .column {
  margin-left: 20px;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;

  display: flex;
  align-items: center;

  color: #027e9b;
  background: #f5f5f5;
  border-radius: 50px;
  transition: all 0.25s ease-in;
}
.header__inner > .nav > ul > li > .column:hover {
  background: #e0e0e0;
}

.header__inner > .nav > ul > li > .contact {
  margin-left: 20px;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;

  display: flex;
  align-items: center;

  color: #ffffff;
  background: #333333;
  border-radius: 50px;
  transition: all 0.25s ease-in;
}
.header__inner > .nav > ul > li > .contact:hover {
  background: #027e9b;
}

.hamburger-menu {
  margin-left: auto;
  display: none;
  width: 24px;
  height: 16px;
  background-image: url(images/icon-menu-open.svg);
  background-position: center;
  background-size: contain;
  transition: all 0.25s ease-in;
}
.hamburger-menu.--is-active {
  background-image: url(images/icon-menu-close.svg);
  width: 18px;
  height: 18px;
}
.hamburger-menu-content {
  display: none;
  width: 100%;
  height: calc(100% - 60px);
  position: absolute;
  top: 0;
  z-index: 9980;
  transform: translateY(-100%);
  opacity: 0;
  transition: opacity 0.25s ease-in;
}
.hamburger-menu-content.--is-active {
  transform: translateY(0);
  top: 59px;
  opacity: 1;
}
.hamburger-menu-content__bg {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.5);
}
.hamburger-menu-content__inner {
  background-color: #fff;
  position: relative;
  z-index: 9981;
}

.hamburger-menu-content__inner > .list {
  width: 100%;
}

.hamburger-menu-content__inner > .list > li > .link {
  padding: 45px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hamburger-menu-content__inner > .list > li > .link > svg {
  margin-left: 8px;
  width: 18px;
  height: 18px;
}
.hamburger-menu-content__inner > .list > li > .link.link-offering {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  leading-trim: both;
  text-edge: cap;
  color: #027e9b;
}

.hamburger-menu-content__inner > .list > li > .link.link-column {
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  color: #333333;
  background: #f5f5f5;
}

.lead {
  margin-top: 180px;
  padding: 0 59px;
  position: relative;
  z-index: 3;
}
.lead__inner {
  margin: auto;
  width: 100%;
  max-width: 1200px;
}

.lead__inner > .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 160%;
  color: #333333;
}

.lead__inner > .text {
  margin-top: 80px;
  font-weight: 700;
  font-size: 20px;
  line-height: 200%;
  color: #333333;
}

.news {
  margin-top: 120px;
  padding: 0 59px;
  width: 100%;
}

.news__inner {
  margin: auto;
  width: 100%;
  max-width: 1000px;
}

.news__inner > .title {
  margin: auto;
  width: fit-content;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  color: #4c4948;
}

.news__inner > .list {
  margin-top: 36px;
  width: 100%;
}
.news__inner > .list > li {
  padding: 16px 0;
  border-top: 1px solid #e0e0e0;
}
.news__inner > .list > li:last-of-type {
  border-bottom: 1px solid #e0e0e0;
}
.news__inner > .list > li > .link {
  width: fit-content;
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #027e9b;
  transition: all 0.25s ease-in;
}
.news__inner > .list > li > .link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("images/icon-link.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(4px);
}
.news__inner > .list > li > .link:hover {
  color: #4c4948;
}
.offering {
  margin-top: 200px;
  padding: 0 59px;
  width: 100%;
}

.offering__inner {
  margin: auto;
  width: 100%;
  max-width: 1200px;
}

.offering__inner > .header-box {
  width: 100%;
  padding: 0 59px;
}

.offering__inner > .header-box > .title {
  margin: auto;
  width: fit-content;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  color: #4c4948;
}

.offering-wrapper {
  margin-top: 56px;
  /* margin-left: -59px;
  margin-right: -59px;
  padding: 0 59px; */
  width: 100%;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.offering-wrapper::-webkit-scrollbar {
  display: none;
}
.offering-matrix-box {
  padding-bottom: 9px;
  width: 100%;
  position: relative;
}

.offering-matrix-box > .header-box {
  /* margin-left: 264px; */
  width: 100%;
  display: flex;
  gap: 24px;
}

.offering-matrix-box > .header-box > .dummy-box {
  width: 100%;
  min-width: 240px;
  max-width: 240px;
}

.offering-matrix-box > .header-box > .phase-box {
  /* width: 296px; */
  width: 100%;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #333333;
}
.offering-matrix-box > .header-box > .phase-box > .phase {
  margin-bottom: 8px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #333333;
  background: #e0e0e0;
  border-radius: 30px;
}
.offering-matrix-box > .row-box {
  margin-bottom: 16px;
  width: 100%;
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.offering-matrix-box > .row-box > .theme-box {
  width: 100%;
  max-width: 240px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #12b3c7;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 10px;
}

.offering-matrix-box > .row-box > .items-box {
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.offering-matrix-box > .row-box > .items-box > .item-box {
  width: 100%;
}

.offering-matrix-box > .row-box > .items-box > .item-box.--phase1 {
  width: calc((100% / 3) - 32px);
}

.offering-matrix-box > .row-box > .items-box > .item-box.--phase2 {
  margin-left: calc((100% / 3) + 16px);
  width: calc((100% / 3) - 32px);
}
.offering-matrix-box > .row-box > .items-box > .item-box.--phase1-2 {
  width: calc((100% / 3) * 2 - 16px);
}

.offering-matrix-box > .row-box > .items-box > .item-box.--phase3 {
  margin-left: calc((100% / 3) * 2 + 32px);
  width: calc((100% / 3) - 32px);
}

.offering-matrix-box > .row-box > .items-box > .item-box.--phase2-3 {
  margin-left: calc((100% / 3) + 16px);
  width: calc((100% / 3) * 2 - 16px);
}

.offering-matrix-box > .row-box > .items-box > .item-box > .link {
  display: block;
  padding: 10px 16px;
  padding-right: 38px;
  font-weight: 700;
  font-size: 14px;
  line-height: 170%;
  color: #ffffff;
  border-radius: 5px;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.25s ease-in;
}
.offering-matrix-box > .row-box > .items-box > .item-box > .link::after {
  margin: auto;
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  background-image: url("images/icon-arrow-down-white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.25s ease-in;
}

.offering-matrix-box > .row-box > .items-box > .item-box > .link.--light {
  background: #12b3c7;
}
.offering-matrix-box > .row-box > .items-box > .item-box > .link.--dark {
  background: #027e9b;
}

.offering-matrix-box > .row-box > .items-box > .item-box > .link:hover.--light {
  color: #12b3c7;
  background: #fff;
  border: 1px solid #12b3c7;
}
.offering-matrix-box
  > .row-box
  > .items-box
  > .item-box
  > .link:hover.link.--light::after {
  background-image: url("images/icon-arrow-down-light-blue.svg");
}
.offering-matrix-box > .row-box > .items-box > .item-box > .link:hover.--dark {
  color: #027e9b;
  background: #fff;
  border: 1px solid #027e9b;
}
.offering-matrix-box
  > .row-box
  > .items-box
  > .item-box
  > .link:hover.link.--dark::after {
  background-image: url("images/icon-arrow-down-dark-blue.svg");
}

.offering-matrix-box > .frames-box {
  width: 100%;
  display: flex;
  gap: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.offering-matrix-box > .frames-box > .dummy-box {
  width: 100%;
  min-width: 240px;
  max-width: 240px;
}
.offering-matrix-box > .frames-box > .frame-box {
  width: 100%;
  border: 3px solid #f5f5f5;
  border-radius: 10px;
}

.service {
  margin-top: 120px;
  padding: 0 59px;
  width: 100%;
}
.service__inner {
  margin: auto;
  width: 100%;
  max-width: 1200px;
  background-image: url("images/bg-wavelines-1.png");
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}
.service__inner > .header-box {
  width: 100%;
}
.service__inner > .header-box > .title {
  margin: auto;
  width: fit-content;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  color: #4c4948;
}

.service__inner > .service-container {
  margin-top: 56px;
  padding-bottom: 52px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.service__inner > .service-container > .filter-box {
  margin-right: 48px;
  width: 288px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 36px;
}

.service__inner > .service-container > .filter-box > .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #333333;
}
.service__inner > .service-container > .filter-box > .list {
  margin-top: 16px;
  margin-bottom: 36px;
  width: 100%;
}

.service__inner > .service-container > .filter-box > .list > li {
  margin-bottom: 5px;
  padding: 0 16px;
  width: 100%;
  height: 44px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #a9a9a9;
  display: flex;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.25s ease-in;
}
.service__inner > .service-container > .filter-box > .list > li::before {
  margin-right: 10px;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("images/icon-check.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.25s ease-in;
}
.service__inner > .service-container > .filter-box > .list > li:last-child {
  margin-bottom: 0;
}
.service__inner > .service-container > .filter-box > .list > li:hover {
  color: #666666;
  background: #f5f5f5;
}

.service__inner > .service-container > .filter-box > .list > li.--is-active {
  font-weight: 700;
  color: #333333;
  background: #e7f7f9;
}
.service__inner > .service-container > .filter-box > .list > li:hover::before {
  background-image: url("images/icon-check-hover.svg");
}

.service__inner
  > .service-container
  > .filter-box
  > .list
  > li.--is-active::before {
  background-image: url("images/icon-check-on.svg");
}

.service__inner > .service-container > .filter-box > .back-top {
  margin-top: auto;
}

.service__inner > .service-container > .filter-box > .back-top > .link {
  width: 100%;
  height: 42px;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  background: #f5f5f5;
  border-radius: 20px;
  transition: all 0.25s ease-in;
  border: 1px solid transparent;
}
.service__inner > .service-container > .filter-box > .back-top > .link:hover {
  background: #ffffff;
  border: 1px solid #a9a9a9;
}
.service__inner > .service-container > .filter-box > .back-top > .link > svg {
  margin-left: 10px;
}

.service__inner > .service-container > .service-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.service__inner > .service-container > .service-list > .service-box {
  margin-bottom: 16px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}
.service__inner
  > .service-container
  > .service-list
  > .service-box.--is-display {
  display: block;
}

.service__inner > .service-container > .service-list > .service-box:last-child {
  margin-bottom: 0;
}
.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box {
  position: relative;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box {
  position: relative;
  padding: 36px;
  z-index: 2;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  color: #ffffff;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .desc {
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #ffffff;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .tag-box {
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .tag-box
  > .tag {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #b7e8e8;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .tag-box
  > .separator {
  margin: 0 12px;
  color: #b7e8e8;
}
.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .button-box {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: fit-content;
  visibility: visible;
  transition: all 0.25s ease-in;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .button-box
  > .open-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease-in;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box.--is-active
  > .header-box
  > .content-box
  > .button-box {
  height: 0;
  visibility: hidden;
}
.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .button-box
  > .open-button:hover {
  color: #027e9b;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box.bg-dark
  > .button-box
  > .open-button:hover {
  color: #12b3c7;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .button-box
  > .open-button
  > svg {
  margin-left: 10px;
}
.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .button-box
  > .open-button
  > svg
  > circle {
  transition: all 0.25s ease-in;
}
.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box
  > .button-box
  > .open-button:hover
  > svg
  > circle {
  fill: #027e9b;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box.bg-dark
  > .button-box
  > .open-button
  > svg
  > path {
  stroke: #027e9b;
}
.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .header-box
  > .content-box.bg-dark
  > .button-box
  > .open-button:hover
  > svg
  > circle {
  fill: #12b3c7;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box
  > .main-content-box {
  background-color: #f5f5f5;
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease-in;
}

.service__inner
  > .service-container
  > .service-list
  > .service-box.--is-active
  > .main-content-box {
  height: auto;
}

.main-content-box__inner {
  padding: 36px;
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}

.main-content-box__inner > .contact-box {
  width: 100%;
}

.main-content-box__inner > .contact-box > .link {
  width: 132px;
  height: 38px;
  display: flex;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #333;
  transition: all 0.25s ease-in;
}

.main-content-box__inner > .contact-box > .link:hover {
  background: #027e9b;
}

.main-content-box__inner > .services-box > .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  color: #027e9b;
}

.main-content-box__inner > .services-box > .list {
  margin-top: 24px;
}
.main-content-box__inner > .services-box > .list > li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.main-content-box__inner > .services-box > .list > li:last-child {
  margin-bottom: 0;
}
.main-content-box__inner > .services-box > .list > li > .text {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  display: flex;
  align-items: center;
  color: #333333;
}
.main-content-box__inner > .services-box > .list > li > .text::before {
  margin-right: 16px;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #12b3c7;
  border-radius: 50%;
  flex-shrink: 0;
}
.main-content-box__inner > .services-box > .list > li > .link {
  margin-left: 16px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #027e9b;
  background: #ffffff;
  border-radius: 20px;
  transition: all 0.25s ease-in;
  flex-shrink: 0;
}

.main-content-box__inner > .services-box > .list > li > .link:hover {
  color: #4c4948;
}

.main-content-box__inner > .services-box > .list > li > .link > svg {
  margin-left: 5px;
}

.main-content-box__inner > .services-box > .list > li > .link > svg > path {
  transition: all 0.25s ease-in;
}

.main-content-box__inner
  > .services-box
  > .list
  > li
  > .link:hover
  > svg
  > path {
  stroke: #4c4948;
}

.main-content-box__inner > .talents-box > .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  color: #027e9b;
}

.main-content-box__inner > .talents-box > .talents {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 186px);
  row-gap: 16px;
  column-gap: 16px;
}

.main-content-box__inner > .talents-box > .talents > .talent-box {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.main-content-box__inner > .talents-box > .talents > .talent-box > .image-box {
  width: 100%;
  height: auto;
  aspect-ratio: 186 / 115;
  overflow: hidden;
}

.main-content-box__inner
  > .talents-box
  > .talents
  > .talent-box
  > .image-box
  > .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease-in;
}

.main-content-box__inner
  > .talents-box
  > .talents
  > .talent-box:hover
  > .image-box
  > .image {
  transform: scale(110%);
}

.main-content-box__inner > .talents-box > .talents > .talent-box > .name-box {
  margin-top: 16px;
}

.main-content-box__inner
  > .talents-box
  > .talents
  > .talent-box
  > .name-box
  > .name-jp {
  font-weight: 700;
  font-size: 14px;
  line-height: 170%;
  text-align: center;

  color: #333333;
}

.main-content-box__inner
  > .talents-box
  > .talents
  > .talent-box
  > .name-box
  > .name-en {
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  color: #a9a9a9;
}

.main-content-box__inner > .talents-box > .talents > .talent-box > .button-box {
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.main-content-box__inner
  > .talents-box
  > .talents
  > .talent-box
  > .button-box
  > .link {
  width: 109px;
  height: 28px;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  color: #027e9b;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 20px;
  transition: all 0.25s ease-in;
}
.main-content-box__inner
  > .talents-box
  > .talents
  > .talent-box:hover
  > .button-box
  > .link {
  color: #fff;
  background: #027e9b;
}
.main-content-box__inner
  > .talents-box
  > .talents
  > .talent-box
  > .button-box
  > .link
  > svg {
  margin-left: 5px;
}

.main-content-box__inner
  > .talents-box
  > .talents
  > .talent-box
  > .button-box
  > .link
  > svg
  > path {
  transition: all 0.25s ease-in;
}

.main-content-box__inner
  > .talents-box
  > .talents
  > .talent-box:hover
  > .button-box
  > .link
  > svg
  > path {
  stroke: #fff;
}

.main-content-box__inner > .related-services-box > .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  color: #027e9b;
}

.main-content-box__inner > .related-services-box > .related-services {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
  column-gap: 16px;
}

.main-content-box__inner
  > .related-services-box
  > .related-services
  > .related-service-box {
  border-radius: 10px;
  overflow: hidden;
}

.main-content-box__inner
  > .related-services-box
  > .related-services
  > .related-service-box
  > .related-service-box__inner {
  padding: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.main-content-box__inner
  > .related-services-box
  > .related-services
  > .related-service-box
  > .related-service-box__inner
  > .title {
  margin-bottom: 38px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
}

.main-content-box__inner
  > .related-services-box
  > .related-services
  > .related-service-box
  > .related-service-box__inner
  > .button-box {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.main-content-box__inner
  > .related-services-box
  > .related-services
  > .related-service-box
  > .related-service-box__inner
  > .button-box
  > .link {
  font-weight: 700;
  font-size: 14px;
  line-height: 170%;
  color: #ffffff;
  transition: all 0.25s ease-in;
}

.main-content-box__inner
  > .related-services-box
  > .related-services
  > .related-service-box:hover
  > .related-service-box__inner
  > .button-box
  > .link {
  color: #027e9b;
}

.main-content-box__inner
  > .related-services-box
  > .related-services
  > .related-service-box:hover
  > .related-service-box__inner.bg-dark
  > .button-box
  > .link {
  color: #12b3c7;
}

.main-content-box__inner > .button-box {
  display: flex;
  justify-content: center;
}
.main-content-box__inner > .button-box > .close-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #333333;
  cursor: pointer;
}

.main-content-box__inner > .button-box > .close-button > svg {
  margin-left: 10px;
}

#service-not-found {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  color: #027e9b;
  display: none;
}

#service-not-found.--is-displayed {
  display: block;
}

.bottom-column {
  margin: 110px 0 100px 0;
  width: 100%;
}

.bottom-column__inner {
  margin: auto;
  width: 100%;
  max-width: 1000px;
}

.bottom-column__inner > .link {
  padding: 50px 0 40px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 10px;
  position: relative;
  transition: all 0.25s ease-in;
}
.bottom-column__inner > .link:hover {
  background: #e0e0e0;
}

.bottom-column__inner > .link::after {
  margin: auto;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 48px;
  bottom: 0;
  background-image: url(images/icon-arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.bottom-column__inner > .link > .title {
  margin: auto;
  width: fit-content;
  display: flex;
  align-items: center;
}
.bottom-column__inner > .link > .title > .image {
  width: 342px;
}

.bottom-column__inner > .link > .title > .text {
  margin-left: 14px;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #4c4948;
}

.bottom-column__inner > .link > .text {
  margin-top: 14px;
  font-weight: 400;
  font-size: 13px;
  line-height: 160%;
  text-align: center;
  color: #333333;
}

.footer {
  padding: 0 59px;
  width: 100%;
}

.footer__inner {
  margin: auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
}

.footer__inner > .text-box > .nav > ul {
  display: flex;
}
.footer__inner > .text-box > .nav > ul > li {
  margin-right: 36px;
}
.footer__inner > .text-box > .nav > ul > li:last-child {
  margin-right: 0;
}
.footer__inner > .text-box > .nav > ul > li > .link {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #333333;
  transition: all 0.25s ease-in;
}
.footer__inner > .text-box > .nav > ul > li > .link:hover {
  color: #027e9b;
}
.footer__inner > .text-box > .logo-box-sp {
  display: none;
}
.footer__inner > .text-box > .copyright > small {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  color: #a9a9a9;
}
.footer__inner > .logo-box {
  display: block;
  margin-left: auto;
  width: 182px;
  height: 41px;
}

.--dx-strategy {
  background-image: url("images/img-dx-strategy.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}

.--social {
  background-image: url("images/img-social.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}

.--innovation {
  background-image: url("images/img-innovation.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--data-analysis {
  background-image: url("images/img-data-analysis.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--ai {
  background-image: url("images/img-ai.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--collaboration-with-service-robots {
  background-image: url("images/img-collaboration-with-service-robots.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--digitization-of-paper-processes {
  background-image: url("images/img-digitization-of-paper-processes.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--digital-response {
  background-image: url("images/img-digital-response.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--digitization-of-craftsmanship {
  background-image: url("images/img-digitization-of-craftsmanship.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--scm {
  background-image: url("images/img-scm.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}

.--ux {
  background-image: url("images/img-ux.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--core-ststem-planning-concept {
  background-image: url("images/img-core-ststem-planning-concept.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--subscription-transformation {
  background-image: url("images/img-subscription-transformation.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--project-management-platform {
  background-image: url("images/img-project-management-platform.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--it-solution-services {
  background-image: url("images/img-it-solution-services.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--dx-human-resource-development {
  background-image: url("images/img-dx-human-resource-development.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}
.--organizational-support {
  background-image: url("images/img-organizational-support.jpg");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}

.bg-light {
  background: linear-gradient(
    90deg,
    #12b3c7 0%,
    #12b3c7 53.65%,
    rgba(18, 179, 199, 0.4) 100%
  );
}
.bg-dark {
  background: linear-gradient(
    90deg,
    #027e9b 0%,
    #027e9b 53.65%,
    rgba(2, 126, 155, 0.4) 100%
  );
}

.--visible-sp {
  display: none;
}
.--visible-pc {
  display: block;
}

#bottom-box {
  display: none;
}

@media screen and (min-width: 900px) and (max-width: 1100px) {
  .header__inner > .nav {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .hamburger-menu-content {
    display: block;
  }
  .hamburger-menu-content.--is-active {
    top: 105px;
  }
  .bottom-column {
    padding: 0 25px;
  }
}

@media screen and (max-width: 899px) {
  .container {
    margin: 0;
    width: 100%;
    border-radius: 0;
    position: relative;
  }

  .container__inner {
    padding: 0;
    width: 100%;
    background-image: url("images/img-bg-sp.png");
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
  }

  .main-image-box {
    margin: 22px auto auto auto;
    width: calc(100vw - 38px - 38px);
    height: calc(100vw - 38px - 38px);
    max-height: calc(100vw - 38px - 38px);
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
  }

  .header {
    padding: 0 20px;
    transition: background 0.25s ease-in;
  }

  .header.--is-active {
    background-color: #fff;
  }

  .header__inner {
    height: 60px;
    position: relative;
    z-index: 9990;
  }

  .header__inner > .logo {
    width: 100%;
    max-width: 260px;
    height: auto;
    column-gap: 14px;
  }
  .header__inner > .nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }
  .hamburger-menu-content {
    display: block;
  }

  .lead {
    margin-top: 15px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
  }
  .lead__inner {
    margin: auto;
    width: 100%;
    max-width: 1200px;
  }

  .lead__inner > .title {
    font-size: 24px;
  }

  .lead__inner > .text {
    margin-top: 20px;
    font-size: 12px;
    line-height: 160%;
  }

  .news {
    margin-top: 80px;
    padding: 0 20px;
    width: 100%;
  }

  .news__inner {
    margin: auto;
    width: 100%;
    max-width: 1000px;
  }

  .news__inner > .title {
    font-size: 24px;
    line-height: 35px;
  }

  .news__inner > .list {
    margin-top: 36px;
  }
  .news__inner > .list > li {
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
  }

  .offering {
    margin-top: 40px;
    padding: 0;
  }

  .offering__inner {
    margin: auto;
    width: 100%;
  }

  .offering__inner > .header-box {
    width: 100%;
    padding: 0 20px;
  }

  .offering__inner > .header-box > .title {
    margin: auto;
    width: 254px;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #4c4948;
    text-align: center;
  }

  .offering-wrapper {
    margin-top: 40px;
    padding: 0 20px;
    width: 100%;
    overflow-x: scroll;
  }

  .offering-matrix-box {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 9px;
    width: fit-content;
  }

  .offering-matrix-box > .header-box {
    /* margin-left: 264px; */
    width: 100%;
    display: flex;
    gap: 12px;
  }

  .offering-matrix-box > .header-box > .dummy-box {
    width: 96px;
    max-width: 96px;
    min-width: 96px;
  }

  .offering-matrix-box > .header-box > .phase-box {
    width: 160px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    flex-shrink: 0;
  }
  .offering-matrix-box > .header-box > .phase-box > .phase {
    margin-bottom: 8px;
    padding: 6px 16px;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #333333;
    background: #e0e0e0;
    border-radius: 30px;
  }
  .offering-matrix-box > .row-box {
    margin-bottom: 14px;
    width: 100%;
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 2;
  }
  .offering-matrix-box > .row-box > .theme-box {
    width: 96px;
    font-size: 14px;
    line-height: 20px;
    flex-shrink: 0;
  }

  .offering-matrix-box > .row-box > .items-box {
    padding: 0 11px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .offering-matrix-box > .row-box > .items-box > .item-box {
    width: 160px;
    flex-shrink: 0;
  }

  .offering-matrix-box > .row-box > .items-box > .item-box.--phase1 {
    width: calc(160px - 22px);
  }

  .offering-matrix-box > .row-box > .items-box > .item-box.--phase2 {
    margin-left: calc(160px + 11px);
    width: calc(160px - 22px);
  }
  .offering-matrix-box > .row-box > .items-box > .item-box.--phase1-2 {
    width: calc(160px * 2 - 11px);
  }

  .offering-matrix-box > .row-box > .items-box > .item-box.--phase3 {
    margin-left: calc(160px * 2 + 22px);
    width: calc(160px - 22px);
  }

  .offering-matrix-box > .row-box > .items-box > .item-box.--phase2-3 {
    margin-left: calc(160px + 11px);
    width: calc(160px * 2 - 11px);
  }

  .offering-matrix-box > .row-box > .items-box > .item-box > .link {
    display: block;
    padding: 10px 8px;
    padding-right: 38px;
    font-weight: 700;
    font-size: 14px;
    line-height: 170%;
    color: #ffffff;
    border-radius: 5px;
    position: relative;
  }
  .offering-matrix-box > .row-box > .items-box > .item-box > .link::after {
    margin: auto;
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
    background-image: url("images/icon-arrow-down-white.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .offering-matrix-box > .row-box > .items-box > .item-box > .link.--light {
    background: #12b3c7;
  }
  .offering-matrix-box > .row-box > .items-box > .item-box > .link.--dark {
    background: #027e9b;
  }

  .offering-matrix-box > .frames-box {
    width: 100%;
    display: flex;
    gap: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .offering-matrix-box > .frames-box > .dummy-box {
    width: 96px;
    min-width: 96px;
    max-width: 96px;
  }
  .offering-matrix-box > .frames-box > .frame-box {
    width: 160px;
    flex-shrink: 0;
  }

  .service {
    margin-top: 40px;
    padding: 0 20px;
    width: 100%;
    background: #fff;
  }
  .service__inner {
    margin: auto;
    width: 100%;
    max-width: 1200px;
    background: #fff !important;
  }
  .service__inner > .header-box {
    width: 100%;
  }
  .service__inner > .header-box > .title {
    font-size: 20px;
    line-height: 29px;
  }

  .service__inner > .service-container {
    margin-top: 20px;
    padding-bottom: 52px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
  }

  .service__inner > .service-container > .filter-box {
    margin: 0;
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
  }

  .service__inner > .service-container > .filter-box > .title {
    margin-top: 18px;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #333333;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .service__inner > .service-container > .filter-box > .title::before {
    margin: 5px 8px 1px 0;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("images/icon-open.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .service__inner > .service-container > .filter-box > .title:first-child {
    margin-top: 0;
  }
  .service__inner > .service-container > .filter-box > .list {
    margin-top: 16px;
    margin-bottom: 36px;
    width: 100%;
    display: none;
  }

  .service__inner > .service-container > .filter-box > .list.--is-active {
    display: block;
  }

  .service__inner > .service-container > .filter-box > .list > li {
    margin-bottom: 5px;
    padding: 0 16px;
    width: 100%;
    height: 44px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #a9a9a9;
    display: flex;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.25s ease-in;
  }
  .service__inner > .service-container > .filter-box > .list > li::before {
    margin-right: 10px;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("images/icon-check.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.25s ease-in;
  }
  .service__inner > .service-container > .filter-box > .list > li:last-child {
    margin-bottom: 0;
  }
  .service__inner > .service-container > .filter-box > .list > li:hover {
    color: #666666;
    background: #f5f5f5;
  }

  .service__inner > .service-container > .filter-box > .list > li.--is-active {
    font-weight: 700;
    color: #333333;
    background: #e7f7f9;
  }
  .service__inner
    > .service-container
    > .filter-box
    > .list
    > li:hover::before {
    background-image: url("images/icon-check-hover.svg");
  }

  .service__inner
    > .service-container
    > .filter-box
    > .list
    > li.--is-active::before {
    background-image: url("images/icon-check-on.svg");
  }

  .service__inner > .service-container > .filter-box > .back-top {
    display: none;
  }

  .service__inner > .service-container > .service-list {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .service__inner > .service-container > .service-list > .service-box {
    margin-bottom: 16px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    display: none;
  }
  .service__inner
    > .service-container
    > .service-list
    > .service-box.--is-display {
    display: block;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box:last-child {
    margin-bottom: 0;
  }
  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box {
    position: relative;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box {
    position: relative;
    padding: 30px;
    z-index: 2;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
    color: #ffffff;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .desc {
    margin-top: 16px;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    color: #ffffff;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .tag-box {
    margin-top: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .tag-box
    > .tag {
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #b7e8e8;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .tag-box
    > .separator {
    margin: 0;
    display: none;
  }
  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .button-box {
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .button-box
    > .open-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease-in;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .button-box
    > .open-button:hover {
    color: #027e9b;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .button-box
    > .open-button
    > svg {
    margin-left: 10px;
  }
  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .button-box
    > .open-button
    > svg
    > circle {
    transition: all 0.25s ease-in;
  }
  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .header-box
    > .content-box
    > .button-box
    > .open-button:hover
    > svg
    > circle {
    fill: #027e9b;
  }

  .service__inner
    > .service-container
    > .service-list
    > .service-box
    > .main-content-box {
    background-color: #f5f5f5;
    transition: all 0.2s ease-in;
  }

  .main-content-box__inner {
    padding: 20px 30px;
    row-gap: 20px;
  }
  .main-content-box__inner > .services-box > .title {
    font-size: 16px;
    line-height: 23px;
  }

  .main-content-box__inner > .services-box > .list {
    margin-top: 12px;
  }
  .main-content-box__inner > .services-box > .list > li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .main-content-box__inner > .services-box > .list > li:last-child {
    margin-bottom: 0;
  }

  .main-content-box__inner > .services-box > .list > li > .text {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    display: flex;
    align-items: center;
  }
  .main-content-box__inner > .services-box > .list > li > .text::before {
    margin-right: 4px;
    content: "";
    width: 12px;
    height: 12px;
    background-color: #12b3c7;
    border-radius: 50%;
  }
  .main-content-box__inner > .services-box > .list > li > .link {
    margin-top: 8px;
    margin-left: 0;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #027e9b;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.25s ease-in;
    flex-shrink: 1;
  }

  .main-content-box__inner > .services-box > .list > li > .link:hover {
    color: #4c4948;
  }

  .main-content-box__inner > .services-box > .list > li > .link > svg {
    margin-left: 5px;
  }

  .main-content-box__inner > .services-box > .list > li > .link > svg > path {
    transition: all 0.25s ease-in;
  }

  .main-content-box__inner
    > .services-box
    > .list
    > li
    > .link:hover
    > svg
    > path {
    stroke: #4c4948;
  }

  .main-content-box__inner > .contact-box > .link {
    width: 100%;
  }

  .main-content-box__inner > .talents-box {
    margin-top: 20px;
    margin-left: -30px;
    margin-right: -30px;
  }

  .main-content-box__inner > .talents-box > .title {
    padding: 0 30px;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    color: #027e9b;
  }

  .main-content-box__inner > .talents-box > .talents {
    margin-top: 12px;
    padding: 0 30px;
    width: 100%;
    display: flex;
    row-gap: 16px;
    column-gap: 16px;
    overflow: scroll;
  }

  .main-content-box__inner > .talents-box > .talents > .talent-box {
    width: 100%;
    width: 186px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box
    > .image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 186 / 115;
    overflow: hidden;
  }

  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box
    > .image-box
    > .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.25s ease-in;
  }

  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box:hover
    > .image-box
    > .image {
    transform: scale(110%);
  }

  .main-content-box__inner > .talents-box > .talents > .talent-box > .name-box {
    margin-top: 16px;
  }

  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box
    > .name-box
    > .name-jp {
    font-weight: 700;
    font-size: 14px;
    line-height: 170%;
    text-align: center;

    color: #333333;
  }

  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box
    > .name-box
    > .name-en {
    margin-top: 5px;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    color: #a9a9a9;
  }

  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box
    > .button-box {
    margin-top: 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
  }

  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box
    > .button-box
    > .link {
    width: 109px;
    height: 28px;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    color: #027e9b;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    transition: all 0.25s ease-in;
  }
  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box:hover
    > .button-box
    > .link {
    color: #fff;
    background: #027e9b;
  }
  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box
    > .button-box
    > .link
    > svg {
    margin-left: 5px;
  }

  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box
    > .button-box
    > .link
    > svg
    > path {
    transition: all 0.25s ease-in;
  }

  .main-content-box__inner
    > .talents-box
    > .talents
    > .talent-box:hover
    > .button-box
    > .link
    > svg
    > path {
    stroke: #fff;
  }

  .main-content-box__inner > .related-services-box {
    margin-top: 20px;
  }

  .main-content-box__inner > .related-services-box > .title {
    font-size: 16px;
    line-height: 23px;
  }

  .main-content-box__inner > .related-services-box > .related-services {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    column-gap: 16px;
  }

  .main-content-box__inner
    > .related-services-box
    > .related-services
    > .related-service-box {
    border-radius: 10px;
    overflow: hidden;
  }

  .main-content-box__inner
    > .related-services-box
    > .related-services
    > .related-service-box
    > .related-service-box__inner {
    padding: 24px 21px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .main-content-box__inner
    > .related-services-box
    > .related-services
    > .related-service-box
    > .related-service-box__inner
    > .title {
    margin-bottom: 38px;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
  }

  .main-content-box__inner
    > .related-services-box
    > .related-services
    > .related-service-box
    > .related-service-box__inner
    > .button-box {
    margin-top: auto;
    display: flex;
    justify-content: center;
  }
  .main-content-box__inner
    > .related-services-box
    > .related-services
    > .related-service-box
    > .related-service-box__inner
    > .button-box
    > .link {
    font-weight: 700;
    font-size: 14px;
    line-height: 170%;
    color: #ffffff;
    transition: all 0.25s ease-in;
  }
  .main-content-box__inner
    > .related-services-box
    > .related-services
    > .related-service-box
    > .related-service-box__inner
    > .button-box
    > .link:hover {
    color: #027e9b;
  }

  .main-content-box__inner > .button-box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .main-content-box__inner > .button-box > .close-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: #333333;
    cursor: pointer;
  }

  .main-content-box__inner > .button-box > .close-button > svg {
    margin-left: 10px;
  }

  #service-not-found {
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    color: #027e9b;
    display: none;
  }

  #service-not-found.--is-displayed {
    display: block;
  }

  .bottom-column {
    margin: 80px 0;
  }

  .bottom-column__inner {
    padding: 0 20px;
  }

  .bottom-column__inner > .link {
    padding: 48px 0 44px 0;
  }

  .bottom-column__inner > .link::after {
    margin: auto;
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
    background-image: url(images/icon-arrow.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .bottom-column__inner > .link > .title {
    margin: auto;
    width: fit-content;
    display: flex;
    align-items: center;
  }
  .bottom-column__inner > .link > .title > .image {
    width: 182px;
  }

  .bottom-column__inner > .link > .title > .text {
    margin-left: 8px;
    font-size: 12px;
    line-height: 17px;
  }

  .bottom-column__inner > .link > .text {
    margin-top: 16px;
    font-size: 12px;
    line-height: 160%;
  }

  .footer {
    margin-top: 18px;
    padding: 0 20px;
    padding-bottom: 100px;
    width: 100%;
  }

  .footer__inner {
    margin: auto;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer__inner > .text-box > .nav > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer__inner > .text-box > .nav > ul > li {
    margin-right: 36px;
    margin-bottom: 12px;
    width: 100%;
  }
  .footer__inner > .text-box > .nav > ul > li:last-child {
    margin-right: 0;
  }
  .footer__inner > .text-box > .nav > ul > li > .link {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #333333;
    transition: all 0.25s ease-in;
  }
  .footer__inner > .text-box > .nav > ul > li > .link:hover {
    color: #027e9b;
  }
  .footer__inner > .text-box > .copyright {
    margin-top: 36px;
  }
  .footer__inner > .text-box > .copyright > small {
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    color: #a9a9a9;
  }

  .footer__inner > .text-box > .logo-box-sp {
    margin-top: 40px;
    display: block;
    width: 181px;
    height: 41px;
  }
  .footer__inner > .logo-box {
    display: none;
  }

  .--dx-strategy {
    background-image: url("images/img-dx-strategy-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--dx-strategy {
    background-image: url("images/img-dx-strategy.jpg");
    background-size: auto 100%;
    background-position: right;
  }

  .--social {
    background-image: url("images/img-social-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--social {
    background-image: url("images/img-social.jpg");
    background-size: auto 100%;
    background-position: right;
  }

  .--innovation {
    background-image: url("images/img-innovation-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--innovation {
    background-image: url("images/img-innovation.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--data-analysis {
    background-image: url("images/img-data-analysis-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--data-analysis {
    background-image: url("images/img-data-analysis.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--ai {
    background-image: url("images/img-ai-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--ai {
    background-image: url("images/img-ai.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--collaboration-with-service-robots {
    background-image: url("images/img-collaboration-with-service-robots-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--collaboration-with-service-robots {
    background-image: url("images/img-collaboration-with-service-robots.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--digitization-of-paper-processes {
    background-image: url("images/img-digitization-of-paper-processes-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--digitization-of-paper-processes {
    background-image: url("images/img-digitization-of-paper-processes.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--digital-response {
    background-image: url("images/img-digital-response-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--digital-response {
    background-image: url("images/img-digital-response.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--digitization-of-craftsmanship {
    background-image: url("images/img-digitization-of-craftsmanship-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--digitization-of-craftsmanship {
    background-image: url("images/img-digitization-of-craftsmanship.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--scm {
    background-image: url("images/img-scm-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--scm {
    background-image: url("images/img-scm.jpg");
    background-size: auto 100%;
    background-position: right;
  }

  .--ux {
    background-image: url("images/img-ux-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--ux {
    background-image: url("images/img-ux.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--core-ststem-planning-concept {
    background-image: url("images/img-core-ststem-planning-concept-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--core-ststem-planning-concept {
    background-image: url("images/img-core-ststem-planning-concept.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--subscription-transformation {
    background-image: url("images/img-subscription-transformation-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--subscription-transformation {
    background-image: url("images/img-subscription-transformation.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--project-management-platform {
    background-image: url("images/img-project-management-platform-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--project-management-platform {
    background-image: url("images/img-project-management-platform.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--it-solution-services {
    background-image: url("images/img-it-solution-services-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--it-solution-services {
    background-image: url("images/img-it-solution-services.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--dx-human-resource-development {
    background-image: url("images/img-dx-human-resource-development-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--dx-human-resource-development {
    background-image: url("images/img-dx-human-resource-development.jpg");
    background-size: auto 100%;
    background-position: right;
  }
  .--organizational-support {
    background-image: url("images/img-organizational-support-sp.jpg");
    background-size: 100% auto;
    background-position: top;
  }
  .related-service-box.--organizational-support {
    background-image: url("images/img-organizational-support.jpg");
    background-size: auto 100%;
    background-position: right;
  }

  .bg-light {
    background: linear-gradient(
      0deg,
      #12b3c7 0%,
      #12b3c7 53.65%,
      rgba(18, 179, 199, 0.4) 100%
    );
  }
  .related-service-box__inner.bg-light {
    background: linear-gradient(
      90deg,
      #12b3c7 0%,
      #12b3c7 53.65%,
      rgba(18, 179, 199, 0.4) 100%
    );
  }
  .bg-dark {
    background: linear-gradient(
      0deg,
      #027e9b 0%,
      #027e9b 53.65%,
      rgba(2, 126, 155, 0.4) 100%
    );
  }
  .related-service-box__inner.bg-dark {
    background: linear-gradient(
      90deg,
      #027e9b 0%,
      #027e9b 53.65%,
      rgba(2, 126, 155, 0.4) 100%
    );
  }
  .--visible-sp {
    display: block;
  }
  .--visible-pc {
    display: none;
  }

  #bottom-box {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 100;
  }
  #bottom-box > .link {
    margin: auto;
    margin-bottom: 16px;
    width: fit-content;
    padding: 18px 23px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 60px;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: #666666;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.25s ease-in;
    z-index: 101;
  }
  #bottom-box > .link.--is-active {
    opacity: 1;
    transform: translateY(0);
  }
  #bottom-box > .contact {
    margin: auto;
    padding: 16px 60px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #ffffff;
    background: #333333;
    border-radius: 50px;
    z-index: 102;
  }
}
