@charset "UTF-8";
/*TOPページ*/
#top {
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#top .top-copy {
  width: 100%;
  text-align: center;
  position: relative;
  display: block;
  align-content: center;
}
#top .top-copy::before {
  content: "";
  position: absolute;
  background-color: rgba(232, 241, 247, 0.5);
  background-blend-mode: multiply;
  height: 93px;
  width: 150px;
  left: 0px;
  top: -75px;
  border-bottom-right-radius: 16px;
  z-index: 100;
}
#top .top-copy::after {
  content: "";
  position: absolute;
  background-color: rgba(232, 241, 247, 0.5);
  background-blend-mode: multiply;
  height: 93px;
  width: 30%;
  left: 0px;
  bottom: -10px;
  border-bottom-right-radius: 16px;
  border-top-right-radius: 16px;
  z-index: -1;
}
#top .top-copy .top-copy-img {
  padding: 17px;
  background-color: #E8F1F7;
  background-blend-mode: multiply;
  border-radius: 16px;
  z-index: 1;
}
#top .top-copy .FV-text {
  width: 315px;
  font-size: 0.625rem;
  line-height: 180%;
  margin: 16px auto;
  position: relative;
}
#top .top-copy .FV-text p {
  text-align: left;
}

.slideshow {
  display: block;
  position: relative;
  width: 100%;
  height: 290px;
  margin-top: 30px;
}

.slide {
  position: absolute;
  border-top-left-radius: 40px;
  width: 300px;
  height: 290px;
  right: 0;
  top: 0;
  opacity: 0;
  animation: change-img-anim 15s infinite;
}
.slide:nth-of-type(1) {
  animation-delay: 0s;
}
.slide:nth-of-type(2) {
  animation-delay: 5s;
}
.slide:nth-of-type(3) {
  animation-delay: 10s;
}

@keyframes change-img-anim {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#services {
  background-color: #E8F1F7;
  padding-bottom: 100px;
  border-radius: 0 0 25px 25px;
}
#services h2 {
  padding-top: 70px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
#services h2::after {
  content: 'Services';
  display: block;
  font-size: 1rem;
  margin-top: 4px;
}

.service {
  padding: 0 30px;
}
.service .section-text {
  margin: 16px 0 35px 0;
  line-height: normal;
}
.service .service-box {
  background-color: #FFFFFF;
  width: 100%;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
.service .service-box .service-title {
  display: flex;
  align-items: center;
}
.service .service-box .service-title .service-icon {
  margin-right: 10px;
}
.service .service-box .service-title .service-icon.ds-icon {
  background-image: url("../img/top/icon1-s.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
}
.service .service-box .service-title .service-icon.dc-icon {
  background-image: url("../img/top/icon2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
}
.service .service-box .service-title .service-icon.cn-icon {
  background-image: url("../img/top/icon3.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
}
.service .service-box .service-title h3 {
  font-weight: 700;
  font-size: 1.25rem;
}
.service .service-box p {
  margin: 20px 0;
}
.service .service-box .service-list {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #8c8c8c;
  border-bottom: solid 1px #8c8c8c;
  padding: 20px 0;
}
.service .service-box .service-list li {
  padding: 0 10px;
  margin: 5px 10px 5px 0;
  background-color: #CDEEFF;
  border-radius: 5px;
}
.service .service-box .service-list .service-not-list {
  background-color: #FFFFFF;
}
.service .service-box:hover {
  box-shadow: 0px 4px 10px 6px rgba(69, 124, 161, 0.25);
  transition: all 0.3s ease-in-out;
}
.service .service-box:hover .view-more-btn {
  background-color: #CDEEFF;
  border: solid 2px #005BCA;
  transition: all 0.3s ease-in-out;
}
.service .service-box:hover .view-more-btn .arrow::before {
  border-top: 3px solid #005BCA;
  border-right: 3px solid #005BCA;
  transition: all 0.3s ease-in-out;
}

.view-more-area {
  display: flex;
  align-items: center;
  margin-top: 10px;
  cursor: pointer;
  justify-content: center;
}
.view-more-area .view-more-text {
  color: #005BCA;
  font-weight: 700;
  margin-right: 10px;
}
.view-more-area .view-more-btn {
  background-color: #005BCA;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 5px;
  float: left;
  transition: all 0.3s ease-in-out;
}
.view-more-area .view-more-btn .arrow::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.view-more-area .view-more-btn .arrow.-right::before {
  transform: rotate(45deg);
}

#selling-point {
  padding-bottom: 100px;
  background-image: url("../img/top/sellingpoint-bk-sp.svg");
  width: 100%;
  background-repeat: no-repeat;
  background-position: center calc(50% - 40px);
  background-size: 125%;
}
#selling-point h2 {
  padding-top: 70px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
#selling-point h2::after {
  content: 'Selling Point';
  display: block;
  font-size: 1rem;
}
#selling-point .section-text {
  margin: 16px 0 35px 0;
  line-height: normal;
}

.point-area {
  padding: 0 30px;
  width: 100%;
}
.point-area .point-box {
  width: 100%;
  margin: 0 auto 45px auto;
}
.point-area .point-box .point-img {
  border-radius: 16px;
  width: 100%;
}
.point-area .point-box .point-text-area {
  margin: 10px 0;
}
.point-area .point-box .point-text-area .point-title {
  line-height: 2.7;
}
.point-area .point-box .point-text-area .point-title .point-title-text {
  display: inline;
  padding: 6px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(transparent 0%, #005BCA 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.point-area .point-box .point-text-area .point-title .example {
  display: inline;
  font-size: 0.6rem;
  vertical-align: super;
  font-weight: 500;
  margin-left: 2px;
}
.point-area .point-box .point-text-area .point-text {
  word-wrap: break-word;
  margin: 10px 0 0 0;
}

#top-column {
  padding: 60px 30px 164px 30px;
  background-color: #E8F1F7;
  border-radius: 25px 0 0 25px;
  margin-bottom: 264px;
}
#top-column h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
#top-column h2::after {
  content: 'Column';
  font-size: 1rem;
  margin-left: 6px;
}
#top-column .top-column-area {
  width: 100%;
  margin-bottom: 50px;
}
#top-column .top-column-area .top-column-box {
  margin: 50px auto;
  cursor: pointer;
}
#top-column .top-column-area .top-column-box .top-columu-img-area {
  overflow: hidden;
  border-radius: 10px;
}
#top-column .top-column-area .top-column-box .top-columu-img-area .top-column-img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
#top-column .top-column-area .top-column-box .top-column-datas {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 10px 0;
  align-content: center;
}
#top-column .top-column-area .top-column-box .top-column-datas .top-column-data {
  font-size: 1rem;
}
#top-column .top-column-area .top-column-box .top-column-datas .top-column-tag {
  background-color: #005BCA;
  color: #FFFFFF;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
}
#top-column .top-column-area .top-column-box .top-column-title {
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1.5;
}
#top-column .top-column-area .top-column-box:hover .top-column-img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}
#top-column .top-column-area .top-column-box:hover .top-column-title p {
  color: #005BCA;
  text-decoration: underline;
  text-decoration-color: #005BCA;
}
#top-column .view-more-btn2 {
  width: 100%;
  height: 56px;
  text-align: center;
}
#top-column .view-more-btn2 a {
  background-color: #FFFFFF;
  color: #005BCA;
  border: solid 2px #005BCA;
  border-radius: 40px;
  padding: 18px 60px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}
#top-column .view-more-btn2 a span {
  margin-left: 10px;
  padding: 14px 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 20px;
  background-image: url("../img/arrow-blue.svg");
}
#top-column .view-more-btn2:hover a {
  background-color: #005BCA;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
#top-column .view-more-btn2:hover a span {
  margin-left: 10px;
  padding: 14px 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow-white.svg");
}

/*各サービスのサービス欄ページ*/
#services-service {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  margin: 0 auto;
}

.services-header-area {
  margin-bottom: 40px;
}
.services-header-area .services-h {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
}
.services-header-area .services-h::before {
  content: "";
  position: absolute;
  left: -30px;
  height: 1px;
  background-color: #8c8c8c;
  width: 25px;
}
.services-header-area .services-h-en {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
}
.services-header-area .services-text {
  margin-top: 20px;
}

.services-area {
  width: 100%;
}
.services-area .service-box {
  margin-bottom: 50px;
}
.services-area .service-box .service-img img {
  border-radius: 10px;
  width: 100%;
  margin-bottom: 10px;
  max-width: 572px;
}
.services-area .service-box .service-text-area .service-title {
  font-size: 1.25rem;
  font-weight: 700;
}
.services-area .service-box .service-text-area .service-sub-title {
  font-weight: 700;
  position: relative;
  padding-left: 40px;
  margin: 12px 0 10px 0;
}
.services-area .service-box .service-text-area .service-sub-title::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  height: 1px;
  background-color: #8c8c8c;
  width: 30px;
}

.services-ds-area img {
  width: 100%;
}
.services-ds-area .services-ds-flow-area .ds-flow-box {
  margin-top: 20px;
}
.services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-title {
  font-weight: 700;
  display: flex;
  align-items: flex-start;
}
.services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-title span {
  font-size: 1.5rem;
  margin-right: 10px;
}
.services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-title span:first-child {
  flex-shrink: 0;
  line-height: 1;
}
.services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-title .flow-title {
  flex: 1;
  font-size: 1.25rem;
}
.services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-text {
  margin-top: 14px;
  margin-bottom: 20px;
}
.services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-text :nth-last-child(3) {
  margin-bottom: 60px;
}
.services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-service-list ul li {
  background-color: #CDEEFF;
  border-radius: 4px;
  margin: 10px auto;
  padding: 0 10px;
  text-align: center;
}
.services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-service-list p {
  text-align: right;
}

#features {
  width: 100%;
  height: 100%;
  padding: 20px 30px 30px 30px;
  margin: 0 auto;
}

.features-header-area {
  margin-bottom: 40px;
}
.features-header-area .features-h {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
}
.features-header-area .features-h::before {
  content: "";
  position: absolute;
  left: -30px;
  height: 1px;
  background-color: #8c8c8c;
  width: 25px;
}
.features-header-area .features-h-en {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
}

.features-area .features-box {
  margin-bottom: 40px;
  align-content: center;
}
.features-area .features-box .features-img {
  border-radius: 10px;
  width: 100%;
  margin-bottom: 10px;
  max-width: 550px;
}
.features-area .features-box .features-text-area .features-title {
  line-height: 2.7;
  display: inline;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px;
  background: linear-gradient(transparent 0%, #005BCA 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  margin: 10px 0;
}
.features-area .features-box .features-text-area .features-text {
  margin-top: 10px;
}

#solutions {
  background-color: #E8F1F7;
  z-index: -1;
  border-radius: 25px 25px 0 0;
  padding: 70px 30px 250px 30px;
}
#solutions .solutions-header-area {
  margin: 0 auto 40px auto;
  text-align: center;
}
#solutions .solutions-header-area .solutions-h {
  font-size: 1.5rem;
  font-weight: 700;
}
#solutions .solutions-header-area .solutions-h-en {
  font-size: 1rem;
  font-weight: 700;
}

.solutions-icons-area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.solutions-icons-area .solutions-icons-box {
  text-align: center;
  align-items: center;
  margin: 20px 7px;
}
.solutions-icons-area .solutions-icons-box .solution-icon {
  height: 80px;
}
.solutions-icons-area .solutions-icons-box .solution {
  font-weight: 700;
  width: 130px;
  margin-top: 10px;
}

/*各サービスの実績*/
.works-area {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  margin: 60px 0 0 0;
}
.works-area .works-h {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.works-area .works-h-en {
  font-weight: 700;
  text-align: center;
}
.works-area .works-list {
  margin: 20px auto 10px auto;
}
.works-area .works-list ul {
  text-align: left;
}
.works-area .works-list ul li {
  text-indent: inherit;
  padding-left: 10px;
  margin: 10px 0;
  position: relative;
}
.works-area .works-list ul li::before {
  content: "・";
  position: absolute;
  left: -5px;
}
.works-area p {
  text-align: right;
}

/*コラムのTOPページ*/
#column-top {
  padding: 70px 30px 200px 30px;
}
#column-top .column-list {
  display: block;
  border-top: solid 1px #8c8c8c;
}
#column-top .column-list li a .column-box {
  cursor: pointer;
  padding: 20px 0 0 0;
  background-color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
#column-top .column-list li a .column-box::after {
  content: "";
  display: block;
  border-bottom: solid 1px #8c8c8c;
  padding-top: 20px;
}
#column-top .column-list li a .column-box .columu-img-area .column-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#column-top .column-list li a .column-box .column-datas {
  display: flex;
  margin: 10px 0;
  justify-content: space-between;
  align-content: center;
}
#column-top .column-list li a .column-box .column-datas .column-data {
  font-size: 1rem;
}
#column-top .column-list li a .column-box .column-datas .column-tag {
  color: #FFFFFF;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
}
#column-top .column-list li a .column-box .column-datas .column-tag.t-bl {
  background-color: #005BCA;
}
#column-top .column-list li a .column-box .column-datas .column-tag.t-rd {
  background-color: #C0282A;
}
#column-top .column-list li a .column-box .column-title {
  font-weight: 700;
  display: flex;
}
#column-top .column-list li a .column-box .column-title .column-new {
  font-weight: 700;
  color: #E80004;
  margin-left: 20px;
}
#column-top .column-list li:hover .column-box {
  background-color: #CDEEFF;
}

/*ページネーション未完成*/
nav.pagination-container ul {
  margin-top: 20px;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transition: 0.3s;
  overflow: hidden;
}

.pagination li {
  margin: 0;
}

nav.pagination-container ul li a {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  background: #FFFFFF;
  text-align: center;
  align-content: center;
  margin: 0 13px;
}

li.first {
  border-radius: 50%;
  position: relative;
}

li.last {
  border-radius: 50%;
}

li.page.navi-active a {
  background: #005BCA;
  color: #FFFFFF;
}

/*コラム各記事*/
#article {
  background-color: #E8F1F7;
  padding: 70px 15px 250px 15px;
}
#article .article {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px 15px 50px 15px;
  margin: 0 auto;
}
#article .article .article-title-area .article-title {
  position: relative;
  padding-left: 12px;
}
#article .article .article-title-area .article-title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 4px;
}
#article .article .article-title-area .article-title h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
#article .article .article-title-area .article-title::before {
  content: "";
  background-color: #005BCA;
  width: 6px;
  height: 100%;
  position: absolute;
  left: 0;
}
#article .article .article-title-area .article-datas {
  display: flex;
  margin-top: 10px;
}
#article .article .article-title-area .article-datas .article-data {
  padding-left: 12px;
  padding-right: 10px;
}
#article .article .article-title-area .article-datas .article-tag {
  color: #FFFFFF;
  padding: 0 10px;
  border-radius: 4px;
  font-weight: 700;
}
#article .article .article-title-area .article-datas .article-tag.t-bl {
  background-color: #005BCA;
}
#article .article .article-title-area .article-datas .article-tag.t-rd {
  background-color: #C0282A;
}
#article .article .article-title-area .article-summary {
  margin-top: 20px;
}
#article .article .article-index {
  background-color: #F6FAFD;
  border-radius: 10px;
  margin: 30px 15px 0 15px;
  padding: 20px;
}
#article .article .article-index .article-index-title {
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: solid 1px #8c8c8c;
}
#article .article .article-index .article-index-list li {
  margin-bottom: 25px;
  display: flex;
  align-content: center;
}
#article .article .article-index .article-index-list li::before {
  content: url("../img/arrow.svg");
  display: block;
  height: 14px;
  padding-right: 8px;
}
#article .article .article-index .article-index-list li:nth-of-type(1) {
  padding-top: 20px;
}
#article .article .article-index .article-index-list li:nth-last-of-type(1) {
  margin-bottom: 0;
}
#article .article .article-index .article-index-list li:hover {
  transition: all 0.3s ease;
  color: #8c8c8c;
}
#article .article .article-index .article-index-list li:hover::before {
  content: url("../img/arrow-g.svg");
}
#article .article .article-section-title {
  font-size: 1rem;
  font-weight: 700;
  padding-left: 33px;
  position: relative;
  margin-top: 50px;
  margin-bottom: 20px;
}
#article .article .article-section-title::before {
  content: "";
  background-color: #005BCA;
  width: 25px;
  height: 3px;
  position: absolute;
  left: 0;
  top: 10px;
}
#article .article .article-img {
  width: 100%;
  border-radius: 5px;
}
#article .article .article-img-tall {
  width: 100%;
  border: solid 1px #8c8c8c;
  margin: 10px auto;
  max-width: 600px;
}
#article .article .article-text {
  margin-top: 15px;
}
#article .article .article-text-hed {
  font-weight: 700;
  margin-top: 10px;
}
#article .article strong {
  font-size: 1rem;
  font-weight: 700;
}
#article .article .red {
  color: #E80004;
}
#article .article .article-list {
  margin-top: 4px;
  padding-left: 20px;
}
#article .article .article-list li {
  display: flex;
}
#article .article .article-list li .list-items {
  margin-right: 3px;
}
#article .article .article-dl dt {
  font-weight: 700;
  margin-top: 10px;
}
#article .article .article-dl dd {
  padding-left: 20px;
}
#article .article .article-link {
  margin-top: 20px;
  font-weight: 700;
  color: #005BCA;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
#article .article .article-link::after {
  content: url("../img/arrow-b.svg");
  padding-left: 10px;
  height: 14px;
}
#article .article .article-link:hover {
  transition: all 0.3s ease;
  color: #8c8c8c;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}
#article .article .article-link:hover::after {
  content: url("../img/arrow-g.svg");
}
#article .article-table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}
#article .article-table th, #article .article-table td {
  border: solid 1px #8c8c8c;
  padding: 5px;
  text-align: left;
}
#article .article-table thead {
  background-color: #E8F1F7;
}

/*画面幅が768px以上は以下CSSを適用*/
@media screen and (min-width: 768px) {
  #top {
    display: flex;
    padding-top: 86px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
    height: auto;
  }
  #top .top-copy {
    width: 50%;
    max-width: 820px;
    text-align: left;
    position: relative;
    display: block;
    align-content: center;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: clamp(50px, 7vw, 150px);
  }
  #top .top-copy::before {
    content: "";
    position: absolute;
    background-color: rgba(232, 241, 247, 0.5);
    background-blend-mode: multiply;
    max-height: 500px;
    height: 30%;
    width: 579px;
    left: -200px;
    top: -100px;
    border-bottom-right-radius: 16px;
    z-index: -1;
  }
  #top .top-copy::after {
    content: "";
    position: absolute;
    background-color: rgba(232, 241, 247, 0.5);
    background-blend-mode: multiply;
    height: 266px;
    width: 30%;
    left: -127px;
    bottom: -200px;
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
    z-index: -1;
  }
  #top .top-copy .top-copy-img {
    padding: 44px;
    background-color: rgba(232, 241, 247, 0.9);
    background-blend-mode: multiply;
    border-radius: 16px;
    width: 100%;
    max-width: 820px;
    z-index: 2;
  }
  #top .top-copy .FV-text {
    width: 100%;
    font-size: clamp(12px, 1vw, 18px);
    line-height: 180%;
    margin-left: 0;
    position: relative;
  }
  #top .top-copy .FV-text p {
    text-align: left;
  }

  .slideshow {
    width: 50%;
    margin-top: 70px;
    max-height: 910px;
    height: 50vw;
    max-width: 800px;
    overflow: hidden;
    align-items: flex-end;
  }

  .slide {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    width: 100%;
    height: auto;
  }

  #services {
    background-color: #E8F1F7;
    padding-bottom: 130px;
    border-radius: 0 0 100px 100px;
  }
  #services h2 {
    padding-top: 70px;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
  }
  #services h2::after {
    content: 'Services';
    display: block;
    font-size: 1.5rem;
    margin-top: 4px;
  }

  .service {
    padding: 0 30px;
  }
  .service .section-text {
    margin: 16px 0 35px 0;
    line-height: normal;
    text-align: center;
  }
  .service .service-box {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 1100px;
    border-radius: 30px;
    padding: 50px 60px;
    margin-bottom: 70px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .service .service-box .service-title {
    display: flex;
    position: relative;
  }
  .service .service-box .service-title .service-icon {
    position: absolute;
    top: 50%;
    margin-right: 10px;
  }
  .service .service-box .service-title .service-icon.ds-icon {
    background-image: url("../img/top/icon1-pc.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 180px;
    height: 212px;
  }
  .service .service-box .service-title .service-icon.dc-icon {
    background-image: url("../img/top/icon2-pc.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 180px;
    height: 212px;
  }
  .service .service-box .service-title .service-icon.cn-icon {
    background-image: url("../img/top/icon3-pc.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 180px;
    height: 212px;
  }
  .service .service-box .service-title h3 {
    font-weight: 700;
    font-size: 1.75rem;
    position: absolute;
    margin-left: 242px;
  }
  .service .service-box p {
    margin: 20px 0;
    margin-left: 242px;
    margin-right: 160px;
  }
  .service .service-box .service-list {
    display: flex;
    border-bottom: none;
    padding: 20px 0 0 0;
    margin-left: 242px;
    margin-right: 160px;
  }
  .service .service-box .service-list li {
    padding: 0 10px;
    margin: 5px 10px 5px 0;
    background-color: #CDEEFF;
    border-radius: 5px;
  }
  .service .service-box:hover {
    box-shadow: 0px 4px 10px 6px rgba(69, 124, 161, 0.25);
    transition: all 0.3s ease-in-out;
  }
  .service .service-box:hover .arrow::before {
    border-top: 3px solid #005BCA;
    border-right: 3px solid #005BCA;
    transition: all 0.3s ease-in-out;
  }

  .view-more-area {
    position: absolute;
    top: 40%;
    right: 60px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    cursor: pointer;
    justify-content: center;
  }
  .view-more-area .view-more-text {
    display: none;
  }
  .view-more-area .view-more-btn {
    background-color: #005BCA;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 7px;
    float: left;
  }
  .view-more-area .view-more-btn .arrow::before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    border-top: 4px solid #FFFFFF;
    border-right: 4px solid #FFFFFF;
  }
  .view-more-area .view-more-btn .arrow.-right::before {
    transform: rotate(45deg);
  }

  #selling-point {
    padding: 0 30px 100px 30px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-image: url("../img/top/sellingpoint-bk-pc.svg");
    background-repeat: repeat-y;
    background-position: center calc(50% - 30%);
    background-size: 100%;
  }
  #selling-point h2 {
    padding-top: 70px;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
  }
  #selling-point h2::after {
    content: 'Selling Point';
    display: block;
    font-size: 1.5rem;
    margin-top: 4px;
  }
  #selling-point .section-text {
    margin: 16px 0 100px 0;
    line-height: normal;
    text-align: center;
  }

  .point-area {
    padding: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .point-area .point-box {
    width: 100%;
    margin: 0 auto 100px auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .point-area .point-box:nth-child(even) {
    flex-direction: row;
  }
  .point-area .point-box:nth-child(even) .point-img {
    margin-right: 40px;
  }
  .point-area .point-box:nth-child(odd) .point-img {
    margin-left: 40px;
  }
  .point-area .point-box .point-img {
    border-radius: 16px;
    width: 90%;
    height: 90%;
    max-width: 584px;
    min-width: 314px;
  }
  .point-area .point-box .point-text-area {
    margin: 10px 0;
    max-width: 580px;
  }
  .point-area .point-box .point-text-area .point-title {
    line-height: 2.5;
  }
  .point-area .point-box .point-text-area .point-title .point-title-text {
    display: inline;
    padding: 6px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.75rem;
    background: linear-gradient(transparent 0%, #005BCA 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .point-area .point-box .point-text-area .point-title .example {
    font-size: 0.9rem;
    vertical-align: text-top;
    font-weight: 500;
  }
  .point-area .point-box .point-text-area .point-text {
    word-wrap: break-word;
    margin: 10px 0 0 0;
  }

  #top-column {
    padding: 60px 30px 250px 30px;
    background-color: initial;
    margin-bottom: 264px;
    position: relative;
  }
  #top-column::before {
    content: "";
    background-color: #E8F1F7;
    border-radius: 50px 0 0 50px;
    height: 750px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
  }
  #top-column h2 {
    font-size: 2.25rem;
    font-weight: 700;
    width: 100%;
    max-width: 1200px;
    text-align: left;
    margin: 0 auto;
  }
  #top-column h2::after {
    content: 'Column';
    font-size: 1.5rem;
    margin-left: 6px;
  }
  #top-column .top-column-area {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 50px;
    margin: 0 auto;
    display: grid;
    grid-auto-flow: column;
    align-items: stretch;
  }
  #top-column .top-column-area .top-column-box {
    margin: 70px 5%;
    cursor: pointer;
    max-width: 350px;
  }
  #top-column .top-column-area .top-column-box .top-columu-img-area {
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: auto;
  }
  #top-column .top-column-area .top-column-box .top-columu-img-area .top-column-img {
    width: 100%;
    height: 100%;
  }
  #top-column .top-column-area .top-column-box .top-column-datas {
    display: flex;
    justify-content: space-between;
    margin: 8px 0 10px 0;
    align-content: center;
  }
  #top-column .top-column-area .top-column-box .top-column-datas .top-column-data {
    font-size: 1rem;
  }
  #top-column .top-column-area .top-column-box .top-column-datas .top-column-tag {
    background-color: #005BCA;
    color: #FFFFFF;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 700;
  }
  #top-column .top-column-area .top-column-box .top-column-title {
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    line-height: 1.5;
  }
  #top-column .top-column-area .top-column-box:hover .top-column-img {
    transform: scale(1.1);
    transition-duration: 0.5s;
  }
  #top-column .top-column-area .top-column-box:hover .top-column-title p {
    color: #005BCA;
    text-decoration: underline;
    text-decoration-color: #005BCA;
  }
  #top-column .view-more-btn2 {
    width: 270px;
    height: 56px;
    margin: 0 auto;
  }
  #top-column .view-more-btn2 a {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    color: #005BCA;
    border: solid 2px #005BCA;
    border-radius: 40px;
    padding: 18px 60px;
    font-weight: 700px;
    font-size: 1rem;
  }
  #top-column .view-more-btn2 a span {
    margin-left: 10px;
    padding: 14px 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 44px 28px;
    background-image: url("../img/arrow-blue.svg");
  }
  #top-column .view-more-btn2:hover a {
    background-color: #005BCA;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
  }
  #top-column .view-more-btn2:hover a span {
    margin-left: 10px;
    padding: 14px 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/arrow-white.svg");
  }

  /*各サービスのサービス欄ページ*/
  #services-service {
    padding: 150px 30px 100px 30px;
  }
  #services-service .service-body-area {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  #services-service .services-header-area {
    margin-bottom: 70px;
  }
  #services-service .services-header-area .services-h {
    font-size: 2.25rem;
  }
  #services-service .services-header-area .services-h::before {
    margin-left: -80%;
    width: 80%;
  }
  #services-service .services-header-area .services-h-en {
    font-size: 1.5rem;
    margin-top: 4px;
  }
  #services-service .services-header-area .services-text {
    margin-top: 20px;
  }
  #services-service .services-area {
    width: 100%;
  }
  #services-service .services-area .service-box {
    margin-bottom: 100px;
    display: flex;
  }
  #services-service .services-area .service-box .service-img img {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 10px;
    max-width: 570px;
  }
  #services-service .services-area .service-box .service-text-area {
    width: 100%;
    max-width: 600px;
    margin-left: 30px;
  }
  #services-service .services-area .service-box .service-text-area .service-title {
    font-size: 1.25rem;
    font-weight: 700;
  }
  #services-service .services-area .service-box .service-text-area .service-sub-title {
    font-weight: 700;
    position: relative;
    padding-left: 40px;
    margin: 12px 0 10px 0;
  }
  #services-service .services-area .service-box .service-text-area .service-sub-title::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
    height: 1px;
    background-color: #8c8c8c;
    width: 30px;
  }

  .services-ds-area {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .services-ds-area img {
    width: 100%;
  }
  .services-ds-area .services-ds-flow-area {
    margin-top: 45px;
    display: flex;
    flex-direction: row;
    gap: 50px;
  }
  .services-ds-area .services-ds-flow-area .ds-flow-box {
    margin-top: 0;
    max-width: 360px;
    width: 100%;
  }
  .services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-title {
    font-size: 1.75rem;
    height: 100px;
  }
  .services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-title span {
    font-size: 2.25rem;
    margin-right: 10px;
  }
  .services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-title span:first-child {
    flex-shrink: 0;
    line-height: 1.1;
  }
  .services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-title .flow-title {
    flex: 1;
    font-size: 1.75rem;
  }
  .services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-text {
    margin-top: 14px;
    margin-bottom: 20px;
    height: 100px;
  }
  .services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-title-area .ds-flow-text :nth-last-child(3) {
    margin-bottom: 60px;
  }
  .services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-service-list ul li {
    background-color: #CDEEFF;
    border-radius: 4px;
    margin: 10px auto;
    padding: 0 10px;
    text-align: center;
  }
  .services-ds-area .services-ds-flow-area .ds-flow-box .ds-flow-service-list p {
    text-align: right;
  }

  #features {
    width: 100%;
    height: 100%;
    padding: 0 30px 200px 30px;
    margin: 0 auto;
  }
  #features .features-body-area {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .features-header-area {
    margin-bottom: 40px;
  }
  .features-header-area .features-h {
    font-size: 2.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    position: relative;
  }
  .features-header-area .features-h::before {
    margin-left: -80%;
    width: 80%;
  }
  .features-header-area .features-h-en {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 4px;
  }

  .features-area {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    align-items: flex-start;
  }
  .features-area .features-box {
    margin-bottom: 0;
    align-content: center;
    width: 100%;
    max-width: 550px;
  }
  .features-area .features-box .features-img {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 10px;
    max-width: 550px;
  }
  .features-area .features-box .features-text-area .features-title {
    line-height: 2.7;
    display: inline;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 6px;
    background: linear-gradient(transparent 0%, #005BCA 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    margin: 10px 0;
  }
  .features-area .features-box .features-text-area .features-text {
    margin-top: 10px;
  }

  #solutions {
    background-color: #E8F1F7;
    z-index: -1;
    border-radius: 100px 100px 0 0;
    padding: 140px 30px 450px 30px;
  }
  #solutions .solutions-header-area {
    margin: 0 auto 70px auto;
  }
  #solutions .solutions-header-area .solutions-h {
    font-size: 2.25rem;
  }
  #solutions .solutions-header-area .solutions-h-en {
    font-size: 1.5rem;
  }

  .solutions-icons-area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px 70px;
  }
  .solutions-icons-area .solutions-icons-box {
    text-align: center;
    align-items: center;
    margin: 0;
  }
  .solutions-icons-area .solutions-icons-box .solution-icon {
    height: 80px;
  }
  .solutions-icons-area .solutions-icons-box .solution {
    font-weight: 700;
    width: 180px;
    margin-top: 10px;
  }

  /*各サービスの実績*/
  .works-area {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px 70px 50px 70px;
    margin: 150px auto 0 auto;
    width: 100%;
    max-width: 1200px;
  }
  .works-area .works-h {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
  }
  .works-area .works-h-en {
    font-weight: 700;
    text-align: center;
  }
  .works-area .works-list {
    margin: 20px auto 10px auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
  }
  .works-area .works-list ul {
    text-align: left;
  }
  .works-area .works-list ul li {
    text-indent: inherit;
    padding-left: 10px;
    margin: 10px 0;
    position: relative;
  }
  .works-area .works-list ul li::before {
    content: "・";
    position: absolute;
    left: -5px;
  }
  .works-area p {
    text-align: right;
  }

  /*コラムのTOPページ*/
  #column-top {
    padding: 150px 30px 500px 30px;
  }
  #column-top .column-list {
    display: block;
    border-top: solid 1px #8c8c8c;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  #column-top .column-list li a .column-box {
    cursor: pointer;
    padding: 20px 25px 20px 30px;
    background-color: #FFFFFF;
    transition: all 0.3s ease-in-out;
    display: flex;
    position: relative;
    justify-content: space-between;
    height: 130px;
    border-bottom: solid 1px #8c8c8c;
  }
  #column-top .column-list li a .column-box::after {
    content: "";
    display: block;
    border-bottom: solid 1px #8c8c8c;
  }
  #column-top .column-list li a .column-box .columu-img-area {
    width: 210px;
    height: 90px;
    position: absolute;
    right: 25px;
    margin-left: 10px;
  }
  #column-top .column-list li a .column-box .columu-img-area .column-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  #column-top .column-list li a .column-box .column-datas {
    display: flex;
    flex-direction: column;
    margin: 0;
    justify-content: flex-start;
    text-align: start;
  }
  #column-top .column-list li a .column-box .column-datas .column-data {
    font-size: 1rem;
    margin: 4px 0 10px 0;
  }
  #column-top .column-list li a .column-box .column-datas .column-tag {
    color: #FFFFFF;
    padding: 2px 5px;
    text-align: center;
    width: 120px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
  }
  #column-top .column-list li a .column-box .column-title {
    margin-left: 60px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    position: absolute;
    left: 120px;
    max-width: 800px;
    margin-right: 250px;
    font-size: 1.5rem;
  }
  #column-top .column-list li a .column-box .column-title .column-new {
    font-weight: 700;
    color: #E80004;
    margin-left: 20px;
  }
  #column-top .column-list li:hover .column-box {
    background-color: #CDEEFF;
  }

  /*ページネーション*/
  nav.pagination-container ul {
    margin-top: 20px;
    border: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.3s;
    overflow: hidden;
  }

  .pagination li {
    margin: 0;
  }

  nav.pagination-container ul li a {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    background: #FFFFFF;
    text-align: center;
    align-content: center;
    margin: 0 13px;
  }

  li.first {
    border-radius: 50%;
    position: relative;
  }

  li.last {
    border-radius: 50%;
  }

  li.page.navi-active a {
    background: #005BCA;
    color: #FFFFFF;
  }

  /*コラム各記事*/
  #article {
    padding: 150px 15px 500px 15px;
  }
  #article .article {
    border-radius: 30px;
    padding: 60px 100px 100px 100px;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
  }
  #article .article .article-title-area .article-title {
    position: relative;
    padding-left: 0;
  }
  #article .article .article-title-area .article-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 4px 0;
  }
  #article .article .article-title-area .article-title::before {
    content: "";
    background-color: #005BCA;
    width: 6px;
    height: 100%;
    position: absolute;
    left: -15px;
  }
  #article .article .article-title-area .article-datas {
    display: flex;
    margin-top: 20px;
  }
  #article .article .article-title-area .article-datas .article-data {
    padding-left: 0;
    padding-right: 20px;
  }
  #article .article .article-title-area .article-datas .article-tag {
    color: #FFFFFF;
    padding: 0 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.15rem;
  }
  #article .article .article-title-area .article-summary {
    margin-top: 30px;
  }
  #article .article .article-index {
    background-color: #F6FAFD;
    border-radius: 10px;
    margin: 30px auto 0 auto;
    padding: 30px 50px;
  }
  #article .article .article-index .article-index-title {
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: solid 1px #8c8c8c;
  }
  #article .article .article-index .article-index-list li {
    margin-bottom: 25px;
    display: flex;
    align-content: center;
  }
  #article .article .article-index .article-index-list li::before {
    content: url("../img/arrow.svg");
    display: block;
    height: 14px;
    padding-right: 8px;
  }
  #article .article .article-index .article-index-list li:nth-of-type(1) {
    padding-top: 20px;
  }
  #article .article .article-index .article-index-list li:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  #article .article .article-section-title {
    font-size: 1.5rem;
    padding-left: 60px;
    margin-top: 100px;
    margin-bottom: 30px;
  }
  #article .article .article-section-title::before {
    width: 50px;
    height: 4px;
    top: 16px;
  }
  #article .article .article-img {
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
  }
  #article .article .article-text {
    margin-top: 30px;
  }
  #article .article .article-text-hed {
    margin-top: 20px;
    font-size: 1.25rem;
  }
  #article .article strong {
    font-size: 1.25rem;
  }
  #article .article .article-list {
    margin-top: 4px;
    padding-left: 20px;
  }
  #article .article .article-list li {
    display: flex;
  }
  #article .article .article-dl dt {
    font-weight: 700;
    margin-top: 20px;
  }
  #article .article .article-dl dd {
    padding-left: 20px;
  }
  #article .article .article-link {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
  }
  #article .article .article-link::after {
    content: url("../img/arrow-b.svg");
    padding-left: 10px;
    height: 14px;
  }
}
@media screen and (min-width: 1700px) {
  #top-column::before {
    border-radius: 50px 0 0 50px;
    margin-left: 200px;
  }
}
