@charset "UTF-8";
.top-mv {
  border-bottom: 1px solid #e0e0ef;
  position: relative;
  overflow: hidden;
  min-height: auto;
}
@media screen and (max-width: 768px) {
  .top-mv {
    min-height: 0;
  }
}
.top-mv::before {
  content: "";
  display: block;
  width: 2000px;
  height: 940px;
  background: url(../img/top/mv_bg_wave.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  margin: auto;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .top-mv::before {
    width: 100%;
    aspect-ratio: 214/310;
    max-height: 620px;
    background: url(../img/top/mv_bg_wave_sp.png) no-repeat;
    background-size: cover;
  }
}

.top-mv-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-mv-parallax {
    max-height: 620px;
  }
}
.top-mv-parallax .layer {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.top-mv-parallax .layer::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}
.top-mv-parallax .layer.is-animate {
  animation: 3s animFloat infinite;
}
.top-mv-parallax .layer-01::after {
  width: 1607px;
  height: 739px;
  background: url(../img/top/mv_bg_poly_01.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top-mv-parallax .layer-01::after {
    width: 495px;
    height: 489px;
    background: url(../img/top/mv_bg_poly_01_sp.png) no-repeat;
    background-size: cover;
  }
}
.top-mv-parallax .layer-02::after {
  width: 1194px;
  height: 809px;
  background: url(../img/top/mv_bg_poly_02.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top-mv-parallax .layer-02::after {
    width: 440px;
    height: 384px;
    background: url(../img/top/mv_bg_poly_02_sp.png) no-repeat;
    background-size: cover;
  }
}
.top-mv-parallax .layer-02.is-animate {
  animation-delay: 1s;
}

@keyframes animFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.top-mv-mission-wrap {
  display: flex;
  justify-content: center;
  min-height: 850px;
  padding-top: 165px;
  position: relative;
  flex-wrap: wrap;
  align-content: center;
}
@media screen and (min-width: 769px) {
  .top-mv-mission-wrap {
    align-items: center;
    min-height: 590px;
    width: calc(60% - 40px);
    padding: 0 20px 60px;
  }
}
@media screen and (max-width: 768px) {
  .top-mv-mission-wrap {
    height: auto;
    min-height: auto;
    padding: 80px 0 50px;
  }
}
.top-mv-mission-wrap h2 {
  width: 100%;
  text-align: center;
  margin: 100px auto 50px;
  font-weight: 100;
  font-family: "Albert Sans", sans-serif;
  font-size: 7rem;
  line-height: 9rem;
  color: #2d29b6;
}
@media screen and (max-width: 1200px) {
  .top-mv-mission-wrap h2 {
    font-size: 5rem;
    line-height: 6rem;
  }
}
@media screen and (max-width: 900px) {
  .top-mv-mission-wrap h2 {
    font-size: 4rem;
    line-height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .top-mv-mission-wrap h2 {
    margin: 20px auto;
    font-size: 3rem;
    line-height: 4rem;
  }
}
.top-mv-mission-wrap p {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  color: #555;
  font-weight: 300;
  line-height: 2rem;
}

.top-mv-mission, .splash-mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 100;
  font-family: "Albert Sans", sans-serif;
  font-size: 18rem;
  line-height: 0.8;
  color: #2d29b6;
  transform: translateZ(0);
}
@media screen and (min-width: 769px) {
  .top-mv-mission, .splash-mission {
    font-size: 6rem;
    padding-left: 100px;
  }
}
@media screen and (max-width: 768px) {
  .top-mv-mission, .splash-mission {
    font-size: 4rem;
    padding-left: 100px;
  }
}

.top-mv-mission-item {
  display: block;
  margin-top: 25px;
  color: transparent;
  transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  .top-mv-mission-item {
    margin-top: 20px;
  }
}
.top-mv-mission-item.is-animate {
  animation: animTextBlur 8s ease forwards;
}
@media screen and (max-width: 768px) {
  .top-mv-mission-item.is-animate {
    animation: animTextBlurSP 8s ease forwards;
  }
}
.top-mv-mission-item:nth-child(1) {
  animation-delay: 0.12s;
}
.top-mv-mission-item:nth-child(2) {
  animation-delay: 0.2s;
}
.top-mv-mission-item:nth-child(3) {
  animation-delay: 0.3s;
}
.top-mv-mission-item:first-of-type {
  margin-top: 0;
}

@keyframes animTextBlur {
  0% {
    text-shadow: 0 0 100px #2d29b6;
    opacity: 0;
  }
  5% {
    text-shadow: 0 0 90px #2d29b6;
  }
  15% {
    opacity: 1;
  }
  20% {
    text-shadow: 0 0 0px #2d29b6;
  }
  100% {
    text-shadow: 0 0 0px #2d29b6;
    opacity: 1;
  }
}
@keyframes animTextBlurSP {
  0% {
    filter: drop-shadow(0 0 20px #2d29b6);
    color: rgba(45, 41, 182, 0);
  }
  5% {
    filter: drop-shadow(0 0 10px rgba(45, 41, 182, 0.8));
  }
  15% {
    color: #2d29b6;
  }
  20% {
    filter: drop-shadow(0 0 0px rgba(45, 41, 182, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 0px rgba(45, 41, 182, 0.2));
    color: #2d29b6;
  }
}
.top-mv-catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 300;
  position: absolute;
  left: 0;
  bottom: 50px;
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .top-mv-catch {
    font-size: 1.6rem;
    bottom: 75px;
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .top-mv-catch {
    font-size: 1.2rem;
    bottom: 75px;
    gap: 15px;
  }
}
@media screen and (min-width: 769px) {
  .top-mv-catch .inner {
    padding-left: 100px;
  }
}

.top-mv-catch-item {
  display: block;
  padding: 13px 24px;
  padding-left: 4.28%;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .top-mv-catch-item {
    padding: 10px 18px;
    padding-left: 42px;
  }
}
.top-mv-catch-item.is-fadeIn {
  color: #fff;
  position: relative;
  overflow: hidden;
}
.top-mv-catch-item.is-fadeIn .inner {
  display: block;
  overflow: hidden;
  transform: translateX(-100%);
  animation: text_slideIn 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1s forwards;
}
.top-mv-catch-item.is-fadeIn .text {
  display: block;
  transform: translateX(100%);
  animation: text_slideIn 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1s forwards;
}
.top-mv-catch-item.is-fadeIn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: scaleX(0);
  transform-origin: 0 0;
  animation: mask_fadeIn 1s cubic-bezier(0.77, 0, 0.175, 1) 0s forwards;
}

@keyframes mask_fadeIn {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(100%);
  }
}
@keyframes text_slideIn {
  100% {
    transform: translateX(0);
  }
}
.top-mv-pickup {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-mv-pickup {
    display: block;
  }
}

.top-mv-pickup-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 45px;
}
@media screen and (max-width: 768px) {
  .top-mv-pickup-heading {
    display: block;
    margin-bottom: 20px;
    margin-right: 0;
    padding: 0 24px;
  }
}
.top-mv-pickup-heading .heading {
  font-weight: 500;
  font-family: "Albert Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .top-mv-pickup-heading .link {
    display: flex;
    align-items: center;
  }
}
.top-mv-pickup-heading .link:hover {
  opacity: 0.7;
}
.top-mv-pickup-heading .link::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: 25px;
  border-radius: 50%;
  background: #e0e0ef;
  color: #8b8ba7;
}
@media screen and (max-width: 768px) {
  .top-mv-pickup-heading .link::after {
    margin-top: 0;
    margin-left: 14px;
  }
}

.top-mv-pickup-list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-mv-pickup-list {
    display: block;
  }
}

.top-mv-pickup-list-item {
  width: 300px;
  min-height: 200px;
  padding: 35px 40px 50px;
  border-left: 1px solid #e0e0ef;
}
@media screen and (max-width: 768px) {
  .top-mv-pickup-list-item {
    width: auto;
    min-height: 0;
    border-left: none;
    border-top: 1px solid #e0e0ef;
    padding: 18px 24px 20px;
  }
}
.top-mv-pickup-list-item .time {
  display: block;
  font-weight: 400;
  font-family: "Albert Sans", sans-serif;
  font-size: 1.2rem;
  color: #8b8ba7;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .top-mv-pickup-list-item .time {
    margin-bottom: 9px;
  }
}
.top-mv-pickup-list-item .title {
  font-size: 1.5rem;
  line-height: 1.73;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .top-mv-pickup-list-item .title {
    line-height: 1.56;
  }
}
.top-mv-pickup-list-item .link:hover {
  color: #8b8ba7;
  text-decoration: underline;
}

.top-mv-note {
  text-align: center;
  margin: 50px auto;
}
.top-mv-note .top-news-btn {
  gap: 0;
}

@media screen and (min-width: 769px) {
  .top-mv-case-studies {
    width: 40%;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .top-mv-case-studies {
    margin-bottom: 50px;
  }
}

.splash-mission .top-mv-mission-item {
  color: #fff;
}

.top-sec-wrap-01 {
  padding: 160px 0 170px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-sec-wrap-01 {
    padding-top: 72px;
    padding-bottom: 75px;
  }
}
.top-sec-wrap-01::after {
  content: "";
  display: block;
  width: 2500px;
  height: 1600px;
  background: url(../img/top/sec_bg_01.png) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: -550px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-sec-wrap-01::after {
    width: 100%;
    height: auto;
    aspect-ratio: 428/900;
    background: url(../img/top/sec_bg_01_sp.png) no-repeat;
    background-size: cover;
    left: 0;
    right: 0;
  }
}

.top-sec-wrap-02 {
  background: #cdd4de;
  padding: 190px 0 100px;
  position: relative;
  overflow: hidden;
  background: #dee6f1;
}
@media screen and (max-width: 768px) {
  .top-sec-wrap-02 {
    padding-top: 57px;
    padding-bottom: 60px;
  }
}
.top-sec-wrap-02::after {
  content: "";
  display: block;
  width: 1461px;
  height: 1294px;
  background: url(../img/top/sec_bg_02.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 68px;
  right: -336px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .top-sec-wrap-02::after {
    width: 731px;
    height: auto;
    aspect-ratio: 731/647;
    background: url(../img/top/sec_bg_02.png) no-repeat;
    background-size: cover;
    top: 77px;
    left: 24px;
    right: auto;
  }
}

@media screen and (max-width: 768px) {
  .sec-top-mission {
    padding: 0 24px;
  }
}

.top-mission-heading {
  text-align: right;
  margin-right: -90px;
  color: #bebede;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .top-mission-heading {
    text-align: left;
    margin-right: 0;
  }
}

.top-mission-content {
  display: flex;
  justify-content: space-between;
  margin-top: 134px;
}
@media screen and (max-width: 768px) {
  .top-mission-content {
    display: block;
    margin-top: 50px;
  }
}
.top-mission-content .img-wrap {
  width: 560px;
  margin-left: -150px;
  margin-top: 80px;
  order: 1;
}
@media screen and (max-width: 768px) {
  .top-mission-content .img-wrap {
    width: 81.77%;
    margin: 50px auto 0;
  }
}
.top-mission-content .text-wrap {
  width: 550px;
  order: 2;
}
@media screen and (max-width: 768px) {
  .top-mission-content .text-wrap {
    width: 100%;
  }
}
.top-mission-content .text {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.56;
}
@media screen and (max-width: 768px) {
  .top-mission-content .text {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}

.top-mission-title {
  font-size: 4rem;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top-mission-title {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 32px;
  }
}

.top-mission-btn-wrap {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .top-mission-btn-wrap {
    margin-top: 36px;
  }
}

.sec-top-about {
  margin-top: 170px;
}
@media screen and (max-width: 768px) {
  .sec-top-about {
    padding: 0 24px;
    margin-top: 60px;
  }
}

.top-about-heading {
  margin-bottom: 100px;
  color: #bebede;
}
@media screen and (max-width: 768px) {
  .top-about-heading {
    margin-bottom: 28px;
  }
}

.top-about-text {
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .top-about-text {
    line-height: 1.875;
    margin-top: 28px;
    text-align: justify;
    letter-spacing: 0.05em;
  }
}

.sec-top-product {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec-top-product {
    padding: 0 24px;
  }
}

.top-product-lead .text {
  font-size: 1.6rem;
  line-height: 2.5;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .top-product-lead .text {
    line-height: 1.875;
  }
}

.top-product-heading {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .top-product-heading {
    margin-bottom: 30px;
  }
}

.top-product-list-wrap {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .top-product-list-wrap {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 50px;
  }
}

.top-product-dots {
  text-align: right;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .top-product-dots {
    margin-top: 42px;
    margin-bottom: 0;
  }
}
.top-product-dots .slick-dots {
  display: flex;
  justify-content: flex-end;
  gap: 53px;
}
@media screen and (max-width: 768px) {
  .top-product-dots .slick-dots {
    justify-content: center;
    gap: 35px;
  }
}
.top-product-dots .slick-dots li {
  width: 5px;
  height: 5px;
  position: relative;
}
.top-product-dots .slick-dots li::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e1e5eb;
  position: absolute;
  top: -26px;
  left: -26px;
  opacity: 0;
  transition: 0.3s all ease-in;
}
@media screen and (max-width: 768px) {
  .top-product-dots .slick-dots li::after {
    width: 40px;
    height: 40px;
    top: -17.5px;
    left: -17.5px;
  }
}
.top-product-dots .slick-dots li.slick-active::after {
  opacity: 1;
}
.top-product-dots .slick-dots button {
  text-indent: -9999px;
  display: block;
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  .top-product-dots .slick-dots button {
    width: 5px;
    height: 5px;
  }
}

.top-product-list {
  width: calc(1100px + (100% - 1100px) / 2);
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-product-list {
    width: 100%;
  }
}
.top-product-list .slick-track {
  display: flex;
}
.top-product-list .slick-slide {
  height: auto !important;
}
.top-product-list .slick-list {
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 768px) {
  .top-product-list .slick-list {
    border-radius: 0;
  }
}

.top-product-list-item {
  background: url(../img/top/product_bg.jpg) no-repeat;
  background-size: cover;
  display: flex;
  border: 1px solid black;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  align-items: center;
  border-radius: 16px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top-product-list-item {
    background: url(../img/top/product_bg_sp.jpg) no-repeat;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
  }
}
.top-product-list-item.item02 {
  background: url(../img/top/product_bg_02.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top-product-list-item.item02 {
    background: url(../img/top/product_bg_02_sp.jpg) no-repeat;
    background-size: cover;
  }
}
.top-product-list-item.item03 {
  background: url(../img/top/product_bg_03.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top-product-list-item.item03 {
    background: url(../img/top/product_bg_03_sp.jpg) no-repeat;
    background-size: cover;
  }
}
.top-product-list-item.item04 {
  background: url(../img/top/product_bg_04.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top-product-list-item.item04 {
    background: url(../img/top/product_bg_04_sp.jpg) no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .top-product-list-item.other {
    flex-direction: row;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .top-product-list-item.other .top-product-list-content {
    flex-direction: row;
    align-items: center;
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  .top-product-list-item.other .top-product-list-content .details {
    margin-left: 20px;
    margin-top: 0;
  }
}

.top-product-list-item,
.top-product-list-item.item02,
.top-product-list-item.item03,
.top-product-list-item.item04 {
  background-color: #fff;
  background-image: none;
}

.top-product-list-content {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 24px;
  justify-content: start;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top-product-list-content {
    display: block;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
}
.top-product-list-content .inner {
  padding-left: 40px;
  padding-right: 60px;
  padding: 0;
}
.top-product-list-content .text-wrap {
  flex: none;
  width: 560px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .top-product-list-content .text-wrap {
    width: auto;
    margin-top: 0;
  }
}
.top-product-list-content .text {
  font-size: 1.6rem;
  line-height: 1.875;
  margin: 0 60px 0 40px;
}
@media screen and (max-width: 768px) {
  .top-product-list-content .text {
    margin: 0 10px;
    font-size: 1.5rem;
    line-height: 1.667;
  }
}
@media screen and (max-width: 768px) {
  .top-product-list-content .img-wrap {
    margin-top: 20px;
    text-align: center;
  }
  .top-product-list-content .img-wrap img {
    margin: 0 auto;
  }
}
.top-product-list-content .icon img {
  width: 180px;
  height: auto;
}
.top-product-list-content .details {
  margin-left: 20px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top-product-list-content .details {
    margin-left: 0;
    margin-top: 10px;
  }
}
.top-product-list-content .details p,
.top-product-list-content .details h3 {
  margin: 0;
}
.top-product-list-content .details p.subtitle {
  font-size: 16px;
}
.top-product-list-content .details h3 {
  font-size: 24px;
}

.top-product-list-subtitle {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .top-product-list-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

.top-product-list-title {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .top-product-list-title {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 14px;
  }
}

.top-product-list-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .top-product-list-btn-wrap {
    display: none;
  }
}

.top-product-list-btn-wrap-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-product-list-btn-wrap-sp {
    display: flex;
    justify-content: center;
    margin-top: 27px;
  }
}

.sec-top-case {
  margin-top: 210px;
  padding-bottom: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec-top-case {
    padding: 0 24px 20px;
    margin-top: 80px;
  }
}

.top-case-lead .text {
  font-size: 1.6rem;
  line-height: 2.5;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .top-case-lead .text {
    line-height: 1.875;
    width: calc(100% - 150px);
  }
}

.top-case-heading {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .top-case-heading {
    margin-bottom: 27px;
  }
}

.top-case-list-wrap {
  margin-top: 115px;
}
@media screen and (max-width: 768px) {
  .top-case-list-wrap {
    margin-top: 36px;
  }
}

.top-case-arrows-wrap {
  position: relative;
}

.top-case-arrows {
  display: flex;
  gap: 20px;
  position: absolute;
  top: -210px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .top-case-arrows {
    top: -97px;
  }
}
.top-case-arrows .slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 0;
  text-indent: -9999px;
  font-size: 0;
  border: 1px solid #ebeef2;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  transition: 0.3s all linear;
}
@media screen and (max-width: 768px) {
  .top-case-arrows .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
.top-case-arrows .slick-arrow:hover {
  background: #e1e5eb;
}
.top-case-arrows .slick-prev::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f104";
  color: #ebeef2;
  font-size: 1.4rem;
  text-indent: 0;
}
.top-case-arrows .slick-next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  color: #ebeef2;
  font-size: 1.4rem;
  text-indent: 0;
}

.top-case-list {
  width: 100vw;
}
.top-case-list .slick-list {
  padding-bottom: 30px;
}
.top-case-list .slick-track {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .top-case-list .slick-track {
    gap: 20px;
  }
}
.top-case-list .slick-slide {
  height: auto !important;
}

.top-case-list-item {
  width: 400px;
  background: #fff;
  border-radius: 6px 6px 10px 10px;
  box-shadow: 10px 10px 10px rgba(45, 41, 182, 0.1);
}
@media screen and (max-width: 768px) {
  .top-case-list-item {
    width: 330px;
  }
}
.top-case-list-item .case-thumb {
  border-radius: 6px;
  overflow: hidden;
}
.top-case-list-item .case-inner {
  padding: 20px 30px 30px;
}
.top-case-list-item .case-inner .text {
  font-size: 1.5rem;
  line-height: 1.73;
  color: #666;
}

.top-case-list-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 768px) {
  .top-case-list-logo {
    height: 65px;
    padding: 0 15px;
  }
}
.top-case-list-logo .logo_w200 {
  width: 200px;
  height: auto;
}
.top-case-list-logo .logo_w250 {
  width: 250px;
  height: auto;
}
.top-case-list-logo .logo_w300 {
  width: 300px;
  height: auto;
}
.top-case-list-logo .logo_w40 {
  width: 40px;
  height: auto;
}

.top-case-list-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.top-case-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .top-case-btn-wrap {
    margin-top: 30px;
  }
}

.sec-top-search {
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .sec-top-search {
    margin-top: 50px;
  }
}

.top-search-content {
  width: calc(1100px + (100% - 1100px) / 2);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .top-search-content {
    width: 100%;
    padding-left: 24px;
  }
}

.top-search-btn {
  display: block;
  width: 100%;
  border-radius: 22px 0 0 22px;
  background: rgb(255, 255, 255);
  color: #fff;
  background: url(../img/top/search_btn_hover.jpg) no-repeat;
  background-size: cover;
  box-shadow: -30px 30px 50px rgba(45, 41, 182, 0.06);
  overflow: hidden;
  position: relative;
}
.top-search-btn:hover {
  opacity: 0.7;
}
.top-search-btn .search-inner {
  width: 1100px;
  padding: 80px 120px 80px 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-search-btn .search-inner {
    width: 100%;
    padding: 50px 30px 45px;
  }
}
.top-search-btn .search-inner::after {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  width: 80px;
  height: 80px;
  color: #8b8ba7 !important;
  background: #fff;
  border: 1px solid #d8d8eb;
  border-radius: 50%;
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .top-search-btn .search-inner::after {
    width: 50px;
    height: 50px;
    top: 40px;
    right: 30px;
    margin: 0;
  }
}
.top-search-btn .search-inner .text {
  font-size: 1.6rem;
  line-height: 2.125;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .top-search-btn .search-inner .text {
    font-size: 1.5rem;
    line-height: 1.93;
    text-align: justify;
  }
}

.top-search-heading {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top-search-heading {
    font-size: 2rem;
    margin-bottom: 35px;
  }
}

.sec-top-why {
  margin-top: 230px;
}
@media screen and (max-width: 768px) {
  .sec-top-why {
    padding: 0 24px;
    margin-top: 95px;
  }
}

.top-why-lead {
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .top-why-lead {
    display: block;
  }
}
.top-why-lead .text {
  font-size: 2rem;
  line-height: 1.9;
  font-weight: 400;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .top-why-lead .text {
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 300;
  }
}

.top-why-content {
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .top-why-content {
    margin-top: 45px;
  }
}

.top-why-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
  margin: 0 -80px;
}
@media screen and (max-width: 768px) {
  .top-why-list {
    margin: 0;
    gap: 30px;
  }
}

.top-why-list-item {
  display: flex;
  background: #e7eaef;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-why-list-item {
    display: block;
    border-radius: 15px;
  }
}
.top-why-list-item .text-wrap {
  display: flex;
  align-items: center;
  padding: 0 110px;
}
@media screen and (max-width: 768px) {
  .top-why-list-item .text-wrap {
    padding: 40px 30px 50px;
  }
}
.top-why-list-item .text-wrap .text {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 300;
  margin-top: 78px;
}
@media screen and (max-width: 768px) {
  .top-why-list-item .text-wrap .text {
    margin-top: 30px;
    line-height: 1.75;
  }
}
.top-why-list-item .img-wrap {
  flex: none;
}

.top-why-list-title {
  font-size: 2.5rem;
  line-height: 1.52;
}

.sec-top-topics {
  margin-top: 190px;
  padding-bottom: 110px;
  border-bottom: 1px solid #e7eaef;
}
@media screen and (max-width: 768px) {
  .sec-top-topics {
    padding: 0 24px;
    margin-top: 75px;
  }
}

.top-topics-content {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-topics-content {
    padding-bottom: 60px;
  }
}

.top-topics-lead .text {
  font-size: 1.6rem;
  line-height: 2.5;
  font-weight: 300;
  margin-top: 74px;
}
@media screen and (max-width: 768px) {
  .top-topics-lead .text {
    line-height: 1.75;
    margin-top: 35px;
  }
}

.top-topics-list-wrap {
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .top-topics-list-wrap {
    margin-top: 36px;
  }
}

.top-topics-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}
@media screen and (max-width: 768px) {
  .top-topics-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.top-topics-list-item .thumb {
  border-radius: 10px;
  overflow: hidden;
  background: #ebebeb;
}
.top-topics-list-item .thumb img {
  width: 340px;
  height: 190px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .top-topics-list-item .thumb img {
    width: auto;
    height: 130px;
    object-fit: cover;
  }
}
.top-topics-list-item .topics-wrap {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .top-topics-list-item .topics-wrap {
    margin-top: 14px;
  }
}
.top-topics-list-item .topics-wrap .info-wrap {
  display: flex;
  color: #8b8ba7;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .top-topics-list-item .topics-wrap .info-wrap {
    font-size: 1.2rem;
    margin-top: 12px;
  }
}
.top-topics-list-item .topics-wrap .info-wrap .info-time {
  display: flex;
  font-weight: 400;
  font-family: "Albert Sans", sans-serif;
}
.top-topics-list-item .topics-wrap .info-wrap .info-time::after {
  content: "";
  display: block;
  height: 1em;
  margin: 5px 20px;
  border-right: 1px solid #bebede;
}
@media screen and (max-width: 768px) {
  .top-topics-list-item .topics-wrap .info-wrap .info-time::after {
    margin: 5px 15px;
  }
}
.top-topics-list-item .topics-wrap .info-wrap .info-cat-list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .top-topics-list-item .topics-wrap .info-wrap .info-cat-list {
    gap: 5px 10px;
    flex-wrap: wrap;
  }
}
.top-topics-list-title {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-topics-list-title {
    font-size: 1.5rem;
    line-height: 1.53;
  }
}
.top-topics-list-title .link:hover {
  color: #8b8ba7;
}

/*
.top-topics-btn-wrap {
  position: absolute;
  top: 15px;
  right: 0;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .top-topics-btn-wrap {
    margin-top: 35px;
    position: static;
  }
}
*/
.top-topics-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .top-topics-btn-wrap {
    margin-top: 35px;
  }
}


.sec-top-news {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .sec-top-news {
    padding: 0 24px;
    margin-top: 50px;
  }
}

.top-news-content {
  margin: 0 -80px;
  padding: 110px 80px 70px;
  border-radius: 40px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .top-news-content {
    margin: 0;
    padding: 45px 17px 35px;
    border-radius: 15px;
  }
}
.top-news-content .inner {
  display: flex;
  gap: 130px;
}
@media screen and (max-width: 768px) {
  .top-news-content .inner {
    display: block;
  }
}
.top-news-content .nav-wrap {
  width: 120px;
  flex: none;
}
@media screen and (max-width: 768px) {
  .top-news-content .nav-wrap {
    width: auto;
    margin-bottom: 40px;
  }
}
.top-news-nav-select-wrap {
  margin: 0 20px;
  color: #8b8ba7;
  position: relative;
  margin-top: 35px;
}
.top-news-nav-select-wrap::after {
  content: "▼";
  position: absolute;
  top: 5px;
  right: 25px;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .top-news-nav-select-wrap {
    display: none;
  }
}

.top-news-nav-select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
  padding: 0 25px;
  border: 1px solid #d8d8eb;
  border-radius: 30px;
  color: #8b8ba7;
}

.top-news-nav-list {
  margin-top: 60px;
  padding-top: 55px;
  border-top: 1px solid #e6e6e6;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-news-nav-list {
    display: none;
  }
}

.top-news-nav-list-item {
  margin-bottom: 23px;
}
.top-news-nav-list-item:last-of-type {
  margin-bottom: 0;
}

.top-news-nav-list-link {
  color: #808080;
}
.top-news-nav-list-link:hover, .top-news-nav-list-link.is-active {
  color: #000;
  text-decoration: underline;
}

.top-news-list {
  display: none;
}
.top-news-list.is-active {
  display: block;
}

.top-news-list-item {
  border-bottom: 1px dashed #e6e6e6;
}
.top-news-list-item .news-inner {
  display: flex;
  align-items: center;
  padding: 32px 20px 32px 0;
}
@media screen and (max-width: 768px) {
  .top-news-list-item .news-inner {
    flex-wrap: wrap;
    padding: 20px 0;
  }
}
.top-news-list-item:first-of-type {
  margin-top: -10px;
}
.top-news-list-item:first-of-type .news-inner {
  padding-top: 0;
}
.top-news-list-item .time-wrap {
  margin-right: 38px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-news-list-item .time-wrap {
    display: flex;
    margin-right: 18px;
  }
}
.top-news-list-item .time-month {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .top-news-list-item .time-month {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .top-news-list-item .time-month::after {
    content: ".";
    margin-left: -0.2em;
  }
}
.top-news-list-item .time-day {
  display: block;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .top-news-list-item .time-day {
    font-size: 1.2rem;
  }
}
.top-news-list-item .cat-wrap {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.top-news-list-item .cat-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 40px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  background: #e8e8ed;
}
@media screen and (max-width: 768px) {
  .top-news-list-item .cat-item {
    height: 30px;
  }
}
.top-news-list-item .title-wrap {
  width: 100%;
}

.top-news-list-link:hover {
  background: #f6f6f8;
}
.top-news-list-link:hover .top-news-title {
  color: #8b8ba7;
}

.top-news-title {
  text-align: justify;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .top-news-title {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 8px;
  }
}

.top-news-btn-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .top-news-btn-wrap {
    margin-top: 20px;
  }
}

/* top topics btn */
.top-news-btn {
  color: #2d29b6;
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  gap: 10px;
}
.top-news-btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(/common/img/share/ico_link_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.top-news-btn:hover {
  transform: opacity 0.5s ease;
  opacity: 0.7;
}

.sec-top-sns {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .sec-top-sns {
    padding: 0 24px;
  }
}

.top-sns-content {
  margin: 0 -80px;
  padding: 110px 80px 70px;
  border-radius: 40px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .top-sns-content {
    margin: 0;
    padding: 20px 0;
    border-radius: 15px;
  }
}

.heading-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 768px) {
  .heading-wrap {
    display: block;
    padding: 0 15px 25px;
  }
}

.top-sns-btn-list {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .top-sns-btn-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 36px;
  }
}

.top-sns-btn-list-btn {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .top-sns-btn-list-btn {
    width: auto;
  }
}

.top-sns-tips-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .top-sns-tips-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
    padding: 0 20px;
    margin-top: 45px;
  }
}

.top-sns-tips-list-item .thumb {
  border-radius: 10px;
  overflow: hidden;
  background: #ebebeb;
}
.top-sns-tips-list-item .thumb img {
  width: 340px;
  height: 260px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .top-sns-tips-list-item .thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }
}

.top-sns-tips-list-link:hover {
  opacity: 0.7;
}

.top-sns-tips-list-title {
  font-size: 1.8rem;
  line-height: 1.67;
  font-weight: 500;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .top-sns-tips-list-title {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 10px;
  }
}

/* 共通スタイル */
.top-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-list {
    display: flex;
    flex-direction: column;
  }
}

.other-content {
  display: flex;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .other-content {
    display: flex;
    align-items: center;
  }
}
.other-content .title {
  font-size: 16px;
}

.other-icon img {
  width: 24px;
}

.icon-jira {
  width: 80px;
  height: auto;
}

.details-text {
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  .details-text {
    padding-left: 0px;
  }
}

.other-products {
  display: flex;
  justify-content: start;
}
@media screen and (max-width: 768px) {
  .other-products {
    flex-direction: column;
    align-items: start;
  }
}
.other-products a {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .details {
    text-align: left;
  }
}

.service-description {
  text-align: center;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .service-description {
    margin: 16px 0;
  }
}
.service-description img {
  max-width: 50%;
  height: auto;
  width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service-description img {
    width: 100%;
    max-width: 720px;
  }
}

/*絞り込み*/
.issue-solutions-section,
.industry-specific-section {
  margin-top: 210px;
  padding: 20px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .issue-solutions-section,
  .industry-specific-section {
    padding: 0 24px 20px;
    margin-top: 80px;
  }
}

.issue-based-solutions-heading,
.industry-specific-heading {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .issue-based-solutions-heading,
  .industry-specific-heading {
    margin-bottom: 27px;
  }
}

.issue-based-solutions-wrap,
.issue-based-industry-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  z-index: 2;
  position: relative;
}

.issue-based-solutions_search,
.issue-based-industry_search {
  width: calc(100% - 100px);
  background: #F7F7F7;
  padding: 40px 50px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .issue-based-solutions_search,
  .issue-based-industry_search {
    width: auto;
    padding: 20px 20px;
  }
}
.issue-based-solutions_search h2,
.issue-based-industry_search h2 {
  font-size: 1.8em;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 1em;
  margin-bottom: 1em;
  padding-left: 10px;
  border-bottom: 1px solid #AFAFAF;
  border-image: linear-gradient(to right, #2CA6B5 0%, #2CA6B5 6%, #AFAFAF 6%, #AFAFAF 100%);
  border-image-slice: 1;
}
.issue-based-solutions_search h3,
.issue-based-industry_search h3 {
  width: 120px;
  font-size: 20px;
  font-weight: bold;
}
.issue-based-solutions_search div,
.issue-based-industry_search div {
  width: calc(100% - 0px);
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
}

.issue-based-solutions-text,
.industry-specific-text {
  font-size: 1.6rem;
  line-height: 2.5;
  font-weight: 300;
}

/* 絞り込みエリア */
.search_area {
  width: calc(100% - 100px);
  background: #F7F7F7;
  padding: 40px 50px;
  text-align: left;
}
@media (max-width: 600px) {
  .search_area {
    width: calc(100% - 40px);
    padding: 20px 20px;
  }
}
.search_area h2 {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 1em;
  margin-bottom: 1em;
  padding-left: 10px;
  border-bottom: 1px solid #AFAFAF;
  border-image: linear-gradient(to right, #2CA6B5 0%, #2CA6B5 6%, #AFAFAF 6%, #AFAFAF 100%);
  border-image-slice: 1;
}
@media (max-width: 600px) {
  .search_area h2 {
    border-image: linear-gradient(to right, #4da6b6 0%, #4da6b6 20%, #d1d1d1 20%, #d1d1d1 100%);
    border-image-slice: 1;
  }
}
.search_area #selectForm {
  display: flex;
  flex-wrap: wrap;
}
.search_area #selectForm h3 {
  width: 120px;
  font-size: 20px;
  font-weight: bold;
}
@media (min-width: 600px) {
  .search_area #selectForm h3 {
    position: relative;
    top: 8px;
    width: 100%;
    margin-bottom: 0.5em;
  }
}
@media (min-width: 600px) {
  .search_area #selectForm .category_search_box + h3 {
    position: relative;
    top: 2px;
  }
}
.search_area #selectForm div {
  width: calc(100% - 120px);
  margin-bottom: 2em;
}
@media (max-width: 600px) {
  .search_area #selectForm div {
    width: calc(100% - 0px);
    margin-bottom: 2em;
    display: flex;
    flex-wrap: wrap;
  }
}
.search_area #selectForm > div + h3 + div {
  margin-bottom: 0;
}

/* ラジオボタンの装飾 */
#categoryBox {
  display: flex;
  flex-wrap: wrap;
}

.radio_input {
  display: none;
}
.radio_input:checked + .radio_parts {
  background: #2CA6B5;
  color: #FFF;
}
.radio_input:checked + .radio_parts {
  font-weight: bold;
}

.radio_parts {
  display: block;
  position: relative;
  padding: 6px 6px;
  background: #FFF;
  border: 1px solid #aaa;
  font-weight: bold;
  margin: 0 4px 4px;
}
.radio_parts:hover {
  cursor: pointer;
}

#allItem + .radio_parts {
  border: none;
  background: #4da6b6;
  color: #FFF;
  font-weight: normal;
  display: inline-block;
  font-size: 11px;
  line-height: 1.2em;
  width: auto;
  height: auto;
  padding: 5px 8px 4px;
  position: relative;
  top: 6px;
}
@media (max-width: 600px) {
  #allItem + .radio_parts {
    position: relative;
    top: 4px;
  }
}

/* チェックボックスの装飾 */
#sizeBox label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
}

.checkbox_input {
  display: none;
}
.checkbox_input:checked + .checkbox_parts:before {
  background-color: #4da6b6;
  border: 2px solid #4da6b6;
}
.checkbox_input:checked + .checkbox_parts:after {
  display: block;
}

.checkbox_parts {
  position: relative;
  margin-right: 10px;
}
.checkbox_parts:before {
  content: "";
  position: absolute;
  top: 2px;
  left: -26px;
  height: 20px;
  width: 20px;
  border: 2px solid #aaa;
  box-sizing: border-box;
  border-radius: 4px;
  background: #FFF;
}
.checkbox_parts:after {
  content: "";
  position: absolute;
  top: 3px;
  left: -20px;
  width: 5px;
  height: 10px;
  border: 2px solid #FFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
}
.checkbox_parts:hover {
  cursor: pointer;
}

#alltag + .checkbox_parts {
  border: none;
  background: #4da6b6;
  color: #FFF;
  font-weight: normal;
  display: inline-block;
  font-size: 11px;
  line-height: 1.2em;
  width: auto;
  height: auto;
  padding: 5px 8px 4px;
  position: relative;
  top: -2px;
  left: -38px;
}
@media (max-width: 600px) {
  #alltag + .checkbox_parts {
    position: relative;
    top: -2px;
    left: -25px;
  }
}
#alltag + .checkbox_parts:before {
  display: none;
}
#alltag + .checkbox_parts:after {
  display: none;
}

/* 表示中の絞り込み条件 */
.chk_status {
  margin-top: 1em;
}
.chk_status p b {
  font-size: 1.6em;
}
.chk_status ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.chk_status ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.chk_status label {
  position: relative;
}
.chk_status label:hover {
  cursor: pointer;
}
.chk_status .chkbox_input {
  display: none;
}
.chk_status .chkbox_parts {
  padding: 2px 5px 2px 30px;
  background: #FFF;
  border: 2px solid #4da6b6;
  color: #4da6b6;
  font-weight: bold;
  font-size: 0.9em;
  margin-right: 2px;
}
.chk_status .chkbox_parts:before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ebebeb;
}
.chk_status .chkbox_parts:after {
  content: "×";
  display: block;
  position: absolute;
  top: 0px;
  left: 11px;
  font-size: 1.2em;
  color: #aaa;
  font-weight: normal;
}
.chk_status .chkbox_parts:hover {
  border: 2px solid #555;
  color: #555;
}
.chk_status .chkbox_parts:hover:before {
  background: #555;
}
.chk_status + hr {
  border: none;
  border-bottom: 2px solid #ccc;
  margin-top: 20px;
}

/*ロゴ部分*/
/* コンテナ全体のスタイル */
.business-partner-logos-container {
  overflow: hidden;
  background-color: white;
  padding: 24px 24px; /* 上下の余白 */
}
@media screen and (max-width: 768px) {
  .business-partner-logos-container {
    padding: 24px 24px; /* 余白はPCと同じ */
  }
}
@media (max-width: 480px) {
  .business-partner-logos-container {
    padding: 16px 16px; /* 余白はPCと同じ */
  }
}

/* ロゴを2セット包むラッパー */
.business-partner-logos-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ロゴの上下を均等に配置 */
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .business-partner-logos-wrapper {
    gap: 30px; /* 縦の余白もPCと同じにする */
  }
}
@media (max-width: 480px) {
  .business-partner-logos-wrapper {
    gap: 30px; /* 縦の余白もPCと同じにする */
  }
}

/* ロゴを横に並べて無限ループする設定 */
.business-partner-logos {
  display: flex;
  align-items: center;
  animation: scroll 20s linear infinite; /* アニメーションを20秒でループ */
  width: max-content; /* コンテンツの幅に基づいた設定 */
  /* ロゴのスタイル (すべてのロゴに適用) */
}
.business-partner-logos img {
  width: 150px; /* ロゴの幅を150pxに固定 */
  height: 75px; /* ロゴの高さを75pxに固定 */
  margin: 0 40px;
  object-fit: contain; /* 縦横比を維持 */
}
@media screen and (max-width: 768px) {
  .business-partner-logos img {
    width: 150px; /* PCと同じロゴサイズ */
    height: 75px; /* PCと同じロゴサイズ */
    margin: 0 40px; /* ロゴ間の余白もPCと同じ */
  }
}
@media (max-width: 480px) {
  .business-partner-logos img {
    width: 150px; /* PCと同じロゴサイズ */
    height: 75px; /* PCと同じロゴサイズ */
    margin: 0 40px; /* ロゴ間の余白もPCと同じ */
  }
}
.business-partner-logos img {
  /* 特定のロゴに対するサイズ調整と左右の余白調整 */
}
.business-partner-logos img[src*=logo_InternetInitiativeJapan], .business-partner-logos img[src*=logo_Nissan_Motor], .business-partner-logos img[src*=logo_NISSANMOTOR] {
  width: 130px; /* 横幅を縮小 */
  height: 55px; /* 高さを縮小 */
  margin-left: 50px; /* 左側の余白を調整 */
  margin-right: 50px; /* 右側の余白を調整 */
}
@media screen and (max-width: 768px) {
  .business-partner-logos img[src*=logo_InternetInitiativeJapan], .business-partner-logos img[src*=logo_Nissan_Motor], .business-partner-logos img[src*=logo_NISSANMOTOR] {
    width: 130px;
    height: 65px;
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 480px) {
  .business-partner-logos img[src*=logo_InternetInitiativeJapan], .business-partner-logos img[src*=logo_Nissan_Motor], .business-partner-logos img[src*=logo_NISSANMOTOR] {
    width: 130px;
    height: 65px;
    margin-left: 50px;
    margin-right: 50px;
  }
}
.business-partner-logos img[src*=logo_KonicaMinolta], .business-partner-logos img[src*=logo_TokaiRikaAdvanced], .business-partner-logos img[src*=logo_SBPaymentService], .business-partner-logos img[src*=logo_JALDigital] {
  width: 210px;
  margin-left: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .business-partner-logos img[src*=logo_KonicaMinolta], .business-partner-logos img[src*=logo_TokaiRikaAdvanced], .business-partner-logos img[src*=logo_SBPaymentService], .business-partner-logos img[src*=logo_JALDigital] {
    width: 210px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 480px) {
  .business-partner-logos img[src*=logo_KonicaMinolta], .business-partner-logos img[src*=logo_TokaiRikaAdvanced], .business-partner-logos img[src*=logo_SBPaymentService], .business-partner-logos img[src*=logo_JALDigital] {
    width: 210px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.business-partner-logos img[src*=logo_DeluxeGames], .business-partner-logos img[src*=logo_MEDLEY], .business-partner-logos img[src*=logo_MinnaBank] {
  width: 190px;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .business-partner-logos img[src*=logo_DeluxeGames], .business-partner-logos img[src*=logo_MEDLEY], .business-partner-logos img[src*=logo_MinnaBank] {
    width: 190px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 480px) {
  .business-partner-logos img[src*=logo_DeluxeGames], .business-partner-logos img[src*=logo_MEDLEY], .business-partner-logos img[src*=logo_MinnaBank] {
    width: 190px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* アニメーションの設定（上下段でスピードを合わせる） */
@keyframes scroll {
  0% {
    transform: translateX(0); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%); /* 全体が左に移動し、次のロゴが右から再び現れる */
  }
}
/* 1段目と2段目のアニメーションスピード統一 */
.business-partner-logos-row {
  display: flex;
  justify-content: space-around;
  /*animation: scroll 20s linear infinite;*/
  animation: scroll 70s linear infinite;
}

/* PickUp部分をボタンへ変更 20250825 */
.top-mv-pickup-btn {
  padding: 20px 0 50px;
}
@media screen and (max-width: 768px) {
  .top-mv-pickup-btn {
    width: 100%;
    padding: 0 20px 60px;
  }
}
.top-mv-pickup-btn .unit-btn-01 {
  width: initial;
  padding-right: 20px;
  padding-left: 20px;
}

/* お知らせ箇所変更 20250825 */
.top-news-content .inner:not(:first-child) {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .top-news-content .inner:not(:first-child) {
    padding-top: 50px;
  }
}
.top-news-content .news-wrap {
  width: 100%;
}
.top-news-content .news-wrap ul > li > a {
  display: block;
}
.top-news-content .news-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .top-news-content .time-wrap {
    min-width: 48px;
  }
}

/* 右側のカルーセル部分(事例) */
.carousel-container {
  width: 400px;
  position: relative;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  margin: 120px auto auto 0;
  padding-bottom: 10px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .carousel-container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .carousel-container {
    width: 70%;
    margin: auto;
  }
}

.carousel-items {
  display: flex;
  transition: transform 0.5s ease-in-out;
  list-style: none;
  padding: 0;
  margin: 0;
}

.carousel-item {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0;
}

.carousel-image img {
  width: 100%;
  height: auto;
}

.carousel-content {
  display: flex;
  align-items: center;
  background-color: white;
  box-sizing: border-box;
  padding: 12px 16px;
  flex-wrap: wrap;
}

.carousel-logo {
  width: 100%;
  text-align: center;
}
.carousel-logo img {
  height: 50px;
  width: auto;
  margin: auto;
}
.carousel-logo img.h_40 {
  height: 40px;
  width: auto;
  margin: 5px auto;
}
.carousel-logo img.h_30 {
  height: 30px;
  width: auto;
  margin: 10px auto;
}

.carousel-text h3 {
  font-size: 1.3em;
  margin: 0;
}
.carousel-text p {
  font-size: 14px;
  margin: 0;
}
.carousel-text a {
  color: #007bff;
  text-decoration: none;
}

/* カルーセル矢印の配置 */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px;
  cursor: pointer;
  z-index: 2;
  font-size: 1.8rem;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-arrow.prev {
  left: 0;
}
.carousel-arrow.next {
  right: 0;
}

/* 点（ドット）のスタイル */
.carousel-indicators {
  width: 400px;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 12px auto 30px 0;
}
@media screen and (max-width: 1200px) {
  .carousel-indicators {
    width: 100%;
  }
}
.carousel-indicators .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}
.carousel-indicators .dot.active {
  background-color: #007bff;
}

.top-mv-inner {
  width: calc(100% - 40px);
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 0px solid red;
}
@media screen and (min-width: 769px) {
  .top-mv-inner {
    max-width: 1300px;
    width: calc(100% - 40px);
    padding: 0 20px;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .top-mv-inner {
    max-width: 100%;
    margin: auto;
  }
}

.sec-top-services {
  padding: 200px 0 100px;
}
@media screen and (max-width: 770px) {
  .sec-top-services {
    padding: 100px 0 50px;
  }
}
.sec-top-services p {
  font-weight: 300;
}
.sec-top-services h2 + p b {
  font-weight: bold;
}
.sec-top-services h2 + p a {
  text-decoration: underline;
}
.sec-top-services .top-servic_pc_area {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 150px 0 100px 0;
  margin: 30px auto;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 50px 0 0 0;
    margin: 30px auto;
  }
}
.sec-top-services .top-servic_pc_area img.main_img {
  width: 90%;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area img.main_img {
    width: 90%;
    height: auto;
    margin: auto;
    position: relative;
    left: -100px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area img.main_img {
    display: none;
  }
}
.sec-top-services .top-servic_pc_area img.support_plus {
  width: 250px;
  height: auto;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.sec-top-services .top-servic_pc_area img.step-up_agile {
  width: 250px;
  height: auto;
  margin: auto;
  position: absolute;
  left: 500px;
  top: 0;
}
@media screen and (max-width: 1020px) {
  .sec-top-services .top-servic_pc_area img.step-up_agile {
    width: 250px;
    height: auto;
    margin: auto;
    position: absolute;
    left: 400px;
    top: 0;
  }
}
.sec-top-services .top-servic_pc_area img.guidebook {
  width: 140px;
  height: auto;
  margin: auto;
  position: absolute;
  left: calc(100% - 140px);
  top: 100px;
}
@media screen and (max-width: 1100px) {
  .sec-top-services .top-servic_pc_area img.guidebook {
    width: 140px;
    height: auto;
    margin: auto;
    position: absolute;
    left: calc(100% - 200px);
  }
}
@media screen and (max-width: 1020px) {
  .sec-top-services .top-servic_pc_area img.guidebook {
    width: 120px;
    height: auto;
    margin: auto;
    position: absolute;
    left: calc(100% - 250px);
  }
}
.sec-top-services .top-servic_pc_area img.daccel {
  width: 220px;
  height: auto;
  margin: auto;
  position: absolute;
  left: 810px;
  top: 570px;
}
@media screen and (max-width: 1020px) {
  .sec-top-services .top-servic_pc_area img.daccel {
    width: 220px;
    height: auto;
    margin: auto;
    position: absolute;
    left: 740px;
    top: 582px;
  }
}
.sec-top-services .top-servic_pc_area img.rickcloud {
  width: 160px;
  height: auto;
  margin: auto;
  position: absolute;
  left: 50px;
  top: 630px;
}
.sec-top-services .top-servic_pc_area a {
  font-weight: 500;
  text-decoration: underline;
  display: block;
}
.sec-top-services .top-servic_pc_area a:hover {
  color: #33a8a7;
}
.sec-top-services .top-servic_pc_area a.no_link {
  pointer-events: none;
  font-weight: 500;
  text-decoration: none;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div {
    width: 90%;
    margin: auto auto 30px;
    border: 2px solid #ccc;
    background: #FFF;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-services .top-servic_pc_area div {
    width: 100%;
  }
}
.sec-top-services .top-servic_pc_area div.support {
  position: absolute;
  left: 121px;
  top: 108px;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.support {
    position: absolute;
    left: 20px;
    top: 107px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.support {
    position: relative;
    top: auto;
    left: auto;
  }
}
.sec-top-services .top-servic_pc_area div.support h3 {
  color: #faa212;
  position: relative;
  margin-bottom: 15px;
  justify-content: flex-end;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.support h3 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    color: #FFF;
    background: #faa212;
  }
}
.sec-top-services .top-servic_pc_area div.support h3 img {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.support h3 img {
    position: relative;
    top: 0 !important;
    left: 0;
  }
}
.sec-top-services .top-servic_pc_area div.customer {
  position: absolute;
  left: 55px;
  top: 283px;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.customer {
    position: absolute;
    left: 20px;
    top: 283px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.customer {
    position: relative;
    top: auto;
    left: auto;
  }
}
.sec-top-services .top-servic_pc_area div.customer h3 {
  color: #75c02a;
  position: relative;
  margin-bottom: 15px;
  justify-content: flex-end;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.customer h3 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    color: #FFF;
    background: #75c02a;
  }
}
.sec-top-services .top-servic_pc_area div.customer h3 img {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.customer h3 img {
    position: relative;
    top: 0 !important;
    left: 0;
  }
}
.sec-top-services .top-servic_pc_area div.consulting {
  position: absolute;
  left: 691px;
  top: 105px;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.consulting {
    position: absolute;
    left: 590px;
    top: 105px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.consulting {
    position: relative;
    top: auto;
    left: auto;
  }
}
.sec-top-services .top-servic_pc_area div.consulting h3 {
  color: #fd6849;
  position: relative;
  padding-right: 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.consulting h3 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    color: #FFF;
    background: #dd4e31;
  }
}
.sec-top-services .top-servic_pc_area div.consulting h3 img {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.consulting h3 img {
    left: 205px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.consulting h3 img {
    position: relative;
    top: 0 !important;
    left: 0;
  }
}
.sec-top-services .top-servic_pc_area div.acos {
  position: absolute;
  left: 759px;
  top: 286px;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.acos {
    position: absolute;
    left: 660px;
    top: 286px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.acos {
    position: relative;
    top: auto;
    left: auto;
  }
}
.sec-top-services .top-servic_pc_area div.acos h3 {
  color: #54cade;
  position: relative;
  padding-right: 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1020px) {
  .sec-top-services .top-servic_pc_area div.acos h3 {
    width: 150px;
    line-height: 1em;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.acos h3 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    color: #FFF;
    background: #54cade;
  }
}
.sec-top-services .top-servic_pc_area div.acos h3 img {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 1020px) {
  .sec-top-services .top-servic_pc_area div.acos h3 img {
    top: -60px;
    left: 150px;
  }
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.acos h3 img {
    top: -22px;
    left: 135px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.acos h3 img {
    position: relative;
    top: 0 !important;
    left: 0;
  }
}
.sec-top-services .top-servic_pc_area div.acos h3 small {
  font-size: 1.5rem;
  line-height: 1.7rem;
}
@media screen and (max-width: 1020px) {
  .sec-top-services .top-servic_pc_area div.acos h3 small {
    font-size: 1.2rem;
    position: absolute;
    top: 25px;
    left: 80px;
    line-height: 110%;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.acos h3 small {
    font-size: 1.2rem;
    position: relative;
    top: auto;
    left: auto;
  }
}
.sec-top-services .top-servic_pc_area div.si_service {
  position: absolute;
  left: 758px;
  top: 453px;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.si_service {
    position: absolute;
    left: 660px;
    top: 453px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.si_service {
    position: relative;
    top: auto;
    left: auto;
  }
}
.sec-top-services .top-servic_pc_area div.si_service h3 {
  color: #8987d9;
  position: relative;
  padding-right: 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.si_service h3 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    color: #FFF;
    background: #8987d9;
  }
}
.sec-top-services .top-servic_pc_area div.si_service h3 img {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 1020px) {
  .sec-top-services .top-servic_pc_area div.si_service h3 img {
    left: 150px;
  }
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.si_service h3 img {
    top: -22px;
    left: 135px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.si_service h3 img {
    position: relative;
    top: 0 !important;
    left: 0;
  }
}
.sec-top-services .top-servic_pc_area div.training {
  position: absolute;
  left: 55px;
  top: 450px;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.training {
    position: absolute;
    left: 20px;
    top: 450px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.training {
    position: relative;
    top: auto;
    left: auto;
  }
}
.sec-top-services .top-servic_pc_area div.training h3 {
  color: #7f7fa9;
  position: relative;
  margin-bottom: 15px;
  justify-content: flex-end;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.training h3 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    color: #FFF;
    background: #7f7fa9;
  }
}
.sec-top-services .top-servic_pc_area div.training h3 img {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.training h3 img {
    position: relative;
    top: 0 !important;
    left: 0;
  }
}
.sec-top-services .top-servic_pc_area div.managed_service {
  position: absolute;
  left: 687px;
  top: 627px;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.managed_service {
    position: absolute;
    left: 590px;
    top: 627px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.managed_service {
    position: relative;
    top: auto;
    left: auto;
  }
}
.sec-top-services .top-servic_pc_area div.managed_service h3 {
  color: #5caaea;
  position: relative;
  padding-right: 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.managed_service h3 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    color: #FFF;
    background: #5caaea;
  }
}
.sec-top-services .top-servic_pc_area div.managed_service h3 img {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.managed_service h3 img {
    left: 205px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.managed_service h3 img {
    position: relative;
    top: 0 !important;
    left: 0;
  }
}
.sec-top-services .top-servic_pc_area div.product_management {
  position: absolute;
  left: 118px;
  top: 627px;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div.product_management {
    position: absolute;
    left: 18px;
    top: 627px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.product_management {
    position: relative;
    top: auto;
    left: auto;
  }
}
.sec-top-services .top-servic_pc_area div.product_management h3 {
  color: #e892ae;
  position: relative;
  margin-bottom: 15px;
  justify-content: flex-end;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.product_management h3 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    color: #FFF;
    background: #e892ae;
  }
}
.sec-top-services .top-servic_pc_area div.product_management h3 img {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div.product_management h3 img {
    position: relative;
    top: 0 !important;
    left: 0;
  }
}
.sec-top-services .top-servic_pc_area div h3 {
  text-align: left;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  width: 290px;
}
@media screen and (max-width: 970px) {
  .sec-top-services .top-servic_pc_area div h3 {
    width: 250px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div h3 {
    text-align: center;
  }
}
.sec-top-services .top-servic_pc_area div h3 img {
  width: 65px;
  height: auto;
  margin-right: 4px;
  top: -22px;
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div h3 img {
    margin-right: 10px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div ul {
    text-align: center;
    margin: auto auto 20px;
    width: fit-content;
  }
}
.sec-top-services .top-servic_pc_area div ul li {
  text-align: left;
  list-style: disc;
  margin-left: 20px;
  font-size: 1.4rem;
  line-height: 2rem;
  filter: drop-shadow(0px 0px 1px rgb(255, 255, 255));
  z-index: 2;
}
@media screen and (max-width: 1020px) {
  .sec-top-services .top-servic_pc_area div ul li {
    font-size: 1.2rem;
    line-height: 1.6rem;
    width: 200px;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .top-servic_pc_area div ul li {
    text-align: center;
    width: fit-content;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 860px) {
  .sec-top-services .wrapper {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}

.business-partner-container {
  padding: 200px 0 0;
  max-width: 1300px;
  margin: auto;
}
@media screen and (max-width: 1020px) {
  .business-partner-container {
    padding: 50px 20px;
  }
}
.business-partner-container h2 {
  font-size: 5rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .business-partner-container h2 {
    font-size: 4rem;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 600px) {
  .business-partner-container h2 {
    font-size: 3rem;
  }
}
.business-partner-container h2 + p {
  text-align: center;
  margin: 50px auto;
  font-size: 1.6rem;
  line-height: 2.5;
  font-weight: 300;
}

.business-partner-point {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.business-partner-point + p {
  text-align: center;
  margin: 50px auto;
  font-size: 1.6rem;
  line-height: 2.5;
  font-weight: 400;
}
.business-partner-point + p a {
  text-decoration: underline;
}
.business-partner-point li {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 1020px) {
  .business-partner-point li {
    width: 50%;
    margin: auto 25% 50px;
  }
}
@media screen and (max-width: 600px) {
  .business-partner-point li {
    width: 80%;
    margin: auto auto 50px;
  }
}
.business-partner-point li div {
  border: 2px solid #e7eaef;
  border-radius: 20px;
  width: calc(100% - 24px);
  padding: 10px;
  background: #FFF;
  text-align: center;
}
.business-partner-point li div + small {
  font-size: 1.2rem;
  line-height: 1 !important;
  font-weight: 400;
}
.business-partner-point li div h3 {
  font-size: 2em;
  font-weight: normal;
  position: relative;
  padding-top: 20px;
  background-image: url("/common/img/top/ico_crown.svg");
  background-size: 40px auto;
  background-repeat: no-repeat;
  background-position: center top;
}
.business-partner-point li div p {
  font-size: 1em;
}
.business-partner-point li div p.point {
  font-size: 8em;
  font-weight: bold;
  color: #006CC8;
  line-height: 1;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.business-partner-point li div p.point small {
  font-size: 0.3em;
  font-weight: bold;
  margin-top: 20%;
}
.business-partner-point li div p.point img {
  width: auto;
  height: calc(90% - 20px);
  margin: 10px auto;
}
.business-partner-point li div p i {
  font-style: normal;
  font-size: 1.2em;
  font-weight: bold;
  margin-left: 4px;
}

.top-product-lst {
  background-image: url("/common/img/top/top-product-lst_bk.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  border-radius: 20px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .top-product-lst {
    max-width: 1300px;
    width: calc(100% - 40px);
    padding: 50px 20px 30px;
    margin: auto;
    height: 950px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst {
    max-width: calc(100% - 40px);
    width: calc(100% - 40px);
    margin: auto;
    padding: 30px 20px 30px;
  }
}
.top-product-lst h3 {
  font-size: 3rem;
  text-align: center;
  color: #333;
}
@media screen and (max-width: 800px) {
  .top-product-lst h3 {
    margin-bottom: 30px;
  }
}
.top-product-lst h3 + p {
  font-size: 1rem;
  font-weight: bold;
}
.top-product-lst h4 {
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  color: #555;
}
.top-product-lst a {
  width: fit-content;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  padding: 10px;
  /*text-align: center;*/
  /*background: #FFF; border-radius: 10px;*/
}
.top-product-lst a img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 1100px) {
  .top-product-lst a img {
    height: 40px;
    width: auto;
  }
}
@media screen and (max-width: 1000px) {
  .top-product-lst a img {
    height: 40px;
    width: auto;
  }
}
.top-product-lst a p {
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 400;
}
.top-product-lst div {
  position: relative;
}
@media screen and (max-width: 800px) {
  .top-product-lst div {
    width: 100%;
  }
}
.top-product-lst div.top-product-lst-ai {
  position: absolute;
  left: calc(0% + 130px);
  top: 350px;
}
@media screen and (max-width: 1270px) {
  .top-product-lst div.top-product-lst-ai {
    left: calc(0% + 45px);
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-ai {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }
}
.top-product-lst div.top-product-lst-ai b {
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: 600;
}
.top-product-lst div.top-product-lst-ai a.rovo {
  display: block;
  margin: auto;
}
.top-product-lst div.top-product-lst-ai a.rovo img {
  height: 35px;
  width: auto;
  position: relative;
  left: -4px;
}
@media screen and (max-width: 1100px) {
  .top-product-lst div.top-product-lst-ai a.rovo img {
    height: 26px;
    width: auto;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-ai a.rovo img {
    height: 27px;
  }
}
.top-product-lst div.top-product-lst-knowledge {
  position: absolute;
  left: calc(0% + 100px);
  top: 150px;
}
@media screen and (max-width: 1270px) {
  .top-product-lst div.top-product-lst-knowledge {
    left: calc(0% + 20px);
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-knowledge {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }
}
.top-product-lst div.top-product-lst-knowledge b {
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: 600;
  /* Step-Up Agile with Jira */
}
@media screen and (max-width: 1000px) {
  .top-product-lst div.top-product-lst-knowledge b {
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: 600;
  }
}
.top-product-lst div.top-product-lst-knowledge a:hover + p {
  bottom: -100px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-knowledge a:hover + p {
    bottom: -100px;
  }
}
.top-product-lst div.top-product-lst-knowledge a.confluence {
  display: block;
  margin: auto;
}
.top-product-lst div.top-product-lst-knowledge a.confluence + p + h4 {
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-knowledge a.confluence + p + h4 {
    margin-top: 40px;
  }
}
.top-product-lst div.top-product-lst-task {
  position: absolute;
  left: calc(0% + 100px);
  top: 540px;
}
@media screen and (max-width: 1270px) {
  .top-product-lst div.top-product-lst-task {
    left: calc(0% + 45px);
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-task {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }
}
.top-product-lst div.top-product-lst-task img {
  height: 60px;
}
@media screen and (max-width: 1270px) {
  .top-product-lst div.top-product-lst-task img {
    height: 50px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-task a:hover + p {
    bottom: -100px;
  }
}
.top-product-lst div.top-product-lst-knowledge_slack {
  position: absolute;
  left: calc(0% + 110px);
  top: 540px;
}
@media screen and (max-width: 1270px) {
  .top-product-lst div.top-product-lst-knowledge_slack {
    left: calc(0% + 40px);
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-knowledge_slack {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }
}
.top-product-lst div.top-product-lst-knowledge_slack a:hover + p {
  bottom: -90px;
}
.top-product-lst div.top-product-lst-agile {
  width: 500px;
  position: absolute;
  left: calc(50% - 250px);
  top: 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1150px) {
  .top-product-lst div.top-product-lst-agile {
    width: 400px;
    left: calc(50% - 200px);
    top: 120px;
  }
}
@media screen and (max-width: 1000px) {
  .top-product-lst div.top-product-lst-agile {
    width: 240px;
    left: calc(50% - 120px);
    top: 120px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-agile {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }
}
.top-product-lst div.top-product-lst-lagile {
  position: absolute;
  left: calc(100% - 350px);
  top: 150px;
}
@media screen and (max-width: 1000px) {
  .top-product-lst div.top-product-lst-lagile {
    position: absolute;
    left: calc(100% - 300px);
    top: 150px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-lagile {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }
}
.top-product-lst div.top-product-lst-lagile {
  /* Step-Up Agile with Jira */
}
.top-product-lst div.top-product-lst-lagile b {
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: 600;
  /* Step-Up Agile with Jira */
}
@media screen and (max-width: 1000px) {
  .top-product-lst div.top-product-lst-lagile b {
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: 600;
  }
}
.top-product-lst div.top-product-lst-lagile a:hover + p {
  bottom: -90px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-lagile a:hover + p {
    bottom: -100px;
  }
}
.top-product-lst div.top-product-lst-improvement {
  position: absolute;
  left: calc(100% - 400px);
  top: 430px;
}
@media screen and (max-width: 1000px) {
  .top-product-lst div.top-product-lst-improvement {
    position: absolute;
    left: calc(100% - 340px);
    top: 430px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-improvement {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-improvement a:hover + p {
    bottom: -80px;
  }
}
.top-product-lst div.top-product-lst-analysis {
  position: absolute;
  left: calc(0% + 70px);
  top: 730px;
}
@media screen and (max-width: 1270px) {
  .top-product-lst div.top-product-lst-analysis {
    left: calc(0% + 20px);
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-analysis {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }
}
.top-product-lst div.top-product-lst-analysis a:hover + p {
  bottom: -90px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-analysis a:hover + p {
    bottom: -100px;
  }
}
.top-product-lst div.top-product-lst-miro {
  position: absolute;
  left: calc(50% - 260px);
  top: 730px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 520px;
}
@media screen and (max-width: 1150px) {
  .top-product-lst div.top-product-lst-miro {
    width: 400px;
    left: calc(50% - 200px);
    top: 680px;
  }
}
@media screen and (max-width: 1000px) {
  .top-product-lst div.top-product-lst-miro {
    width: 240px;
    left: calc(50% - 120px);
    top: 680px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-miro {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }
}
.top-product-lst div.top-product-lst-miro h4 img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 1000px) {
  .top-product-lst div.top-product-lst-miro h4 img {
    height: 30px;
    width: auto;
  }
}
.top-product-lst div.top-product-lst-miro a {
  width: 260px;
}
.top-product-lst div.top-product-lst-miro a:hover + p {
  bottom: -70px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-miro a:hover + p {
    bottom: -80px;
  }
}
.top-product-lst div.top-product-lst-automation {
  position: absolute;
  left: calc(100% - 350px);
  top: 730px;
}
@media screen and (max-width: 1270px) {
  .top-product-lst div.top-product-lst-automation {
    left: calc(100% - 300px);
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-automation {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }
}
.top-product-lst div.top-product-lst-automation a:hover + p {
  bottom: -90px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div.top-product-lst-automation a:hover + p {
    bottom: -100px;
  }
}
.top-product-lst div h4 {
  z-index: 1;
}
.top-product-lst div a {
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 800px) {
  .top-product-lst div a {
    width: 100%;
    text-align: center;
  }
}
.top-product-lst div a:hover + p {
  display: block;
  position: absolute;
  padding: 20px;
  background: rgba(28, 55, 135, 0.9);
  color: #FFF;
  width: 300px;
  height: auto;
  bottom: -70px;
  left: calc(50% - 150px);
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover + p {
    display: block;
    position: absolute;
    padding: 20px;
    background: rgba(28, 55, 135, 0.9);
    color: #FFF;
    width: 70%;
    height: auto;
    bottom: -70px;
    left: 15%;
    margin: auto auto;
  }
}
.top-product-lst div a:hover span {
  width: 100%;
}
.top-product-lst div a:hover span.jira {
  width: calc(100% - 10px);
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.jira {
    width: 72px;
  }
}
.top-product-lst div a:hover span.jirasoftware {
  width: calc(100% - 30px);
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.jirasoftware {
    width: 166px;
  }
}
.top-product-lst div a:hover span.bitbucket {
  width: calc(100% - 20px);
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.bitbucket {
    width: 128px;
  }
}
.top-product-lst div a:hover span.jira-align {
  width: calc(100% - 16px);
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.jira-align {
    width: 120px;
  }
}
.top-product-lst div a:hover span.stepupagilewithJira {
  width: calc(100% - 20px);
  bottom: 10px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.stepupagilewithJira {
    width: 220px;
  }
}
.top-product-lst div a:hover span.trello {
  width: calc(100% - 60px);
  left: 30px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.trello {
    width: 90px;
  }
}
.top-product-lst div a:hover span.confluence {
  width: calc(100% - 20px);
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.confluence {
    width: 146px;
  }
}
.top-product-lst div a:hover span.rovo {
  width: calc(100% - 20px);
  bottom: 10px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.rovo {
    width: 100px;
  }
}
.top-product-lst div a:hover span.slack {
  width: calc(100% - 20px);
  bottom: 10px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.slack {
    width: 160px;
  }
}
.top-product-lst div a:hover span.jira-service-desk {
  width: calc(100% - 20px);
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.jira-service-desk {
    width: 280px;
  }
}
.top-product-lst div a:hover span.daccel {
  width: calc(100% - 20px);
  bottom: 10px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.daccel {
    width: 160px;
  }
}
.top-product-lst div a:hover span.tableau {
  width: calc(100% - 30px);
  bottom: 8px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.tableau {
    width: 180px;
  }
}
.top-product-lst div a:hover span.miro {
  width: calc(100% - 50px);
  bottom: 8px;
  left: 20px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.miro {
    width: 150px;
  }
}
.top-product-lst div a:hover span.workato {
  width: calc(100% - 10px);
  bottom: 10px;
}
@media screen and (max-width: 800px) {
  .top-product-lst div a:hover span.workato {
    width: 140px;
  }
}
.top-product-lst div a img {
  z-index: 1;
}
.top-product-lst div a span {
  position: absolute;
  bottom: 20px;
  left: 10px;
  width: 0%;
  height: 1px;
  background: #293c89;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.jira {
    left: calc(50% - 36px) !important;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.jirasoftware {
    left: calc(50% - 83px) !important;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.bitbucket {
    left: calc(50% - 64px) !important;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.jira-align {
    left: calc(50% - 60px) !important;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.stepupagilewithJira {
    left: calc(50% - 110px) !important;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.trello {
    left: calc(50% - 45px) !important;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.confluence {
    left: calc(50% - 73px) !important;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.rovo {
    left: calc(50% - 50px) !important;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.slack {
    left: calc(50% - 80px) !important;
    bottom: 5px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.jira-service-desk {
    left: calc(50% - 140px) !important;
    bottom: 16px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.daccel {
    left: calc(50% - 80px) !important;
    bottom: 10px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.tableau {
    left: calc(50% - 90px) !important;
    bottom: 8px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.miro {
    left: calc(50% - 70px) !important;
    bottom: 14px;
  }
}
@media screen and (max-width: 800px) {
  .top-product-lst div a span.workato {
    left: calc(50% - 70px) !important;
    bottom: 14px;
  }
}
.top-product-lst div p {
  display: none;
  font-size: 1.2rem;
  line-height: 1.6rem;
  z-index: 9;
  border-radius: 6px;
}
.top-product-lst {
  /* 余白の有り無しでサイズ変わる */
}
.top-product-lst img.logo_no_margin_30 {
  height: 30px;
  width: auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .top-product-lst img.logo_no_margin_30 {
    height: 22px;
    width: auto;
    margin-bottom: 10px;
  }
}
.top-product-lst img.logo_no_margin_40 {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .top-product-lst img.logo_no_margin_40 {
    height: 30px;
    width: auto;
    margin-bottom: 10px;
  }
}
.top-product-lst {
  /* 繋ぐ　繋がる　創造する */
}
.top-product-lst .vision {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  background-image: linear-gradient(180deg, rgb(28, 55, 135), rgb(0, 157, 216));
  color: #FFF;
  font-weight: bold;
  font-size: 3.4rem;
  line-height: 3.8rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  position: absolute;
  left: calc(50% - 100px);
  top: 400px;
}
@media screen and (max-width: 800px) {
  .top-product-lst .vision {
    top: 550px;
    width: 150px;
    height: 150px;
    font-size: 2.4rem;
    line-height: 2.8rem;
    left: calc(50% - 75px);
    position: relative;
    top: 0px;
    margin-bottom: 20px;
  }
}
.top-product-lst h4,
.top-product-lst p,
.top-product-lst b,
.top-product-lst img {
  filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 0.5));
}

.sec-top-case_eyecatch .top-case-list_eyecatch {
  width: 420px;
  height: 520px;
  padding-left: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .sec-top-case_eyecatch .top-case-list_eyecatch {
    width: 320px;
  }
}
@media screen and (max-width: 768px) {
  .sec-top-case_eyecatch .top-case-list_eyecatch {
    width: 420px;
  }
}
.sec-top-case_eyecatch .top-case-list_eyecatch .top-case-list-item {
  border-radius: 0;
  margin: auto 20px;
}
@media screen and (max-width: 1100px) {
  .sec-top-case_eyecatch .top-case-list_eyecatch .top-case-list-item {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .sec-top-case_eyecatch .top-case-list_eyecatch .top-case-list-item {
    width: 400px;
  }
}
.sec-top-case_eyecatch .top-case-list_eyecatch .top-case-list-item .case-thumb {
  border-radius: 0;
}
.sec-top-case_eyecatch .top-case-list_eyecatch .top-case-list-item .top-case-list-logo {
  border-bottom: 0;
}
.sec-top-case_eyecatch .top-case-list_eyecatch .top-case-list-item .case-inner {
  padding: 0px 20px 20px;
  height: 130px;
}
.sec-top-case_eyecatch .top-case-list_eyecatch .top-case-list-item .case-inner h3 {
  line-height: 2rem;
}
.sec-top-case_eyecatch .top-case-list_eyecatch .top-case-list-item .case-inner .text {
  font-size: 1.3rem;
  line-height: 1.73rem;
}
.sec-top-case_eyecatch .top-case-list_eyecatch .slick-dots {
  display: flex;
  justify-content: center;
}
.sec-top-case_eyecatch .top-case-list_eyecatch .slick-dots li.slick-active button {
  background-color: #007bff;
}
.sec-top-case_eyecatch .top-case-list_eyecatch .slick-dots li button {
  display: inline-block;
  background-color: #bbb;
  font-size: 0;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  margin: 0 4px;
  padding: 4px;
}

#caseArrows_eyecatch {
  position: absolute;
  z-index: 9;
  top: 200px;
  left: 20px;
}
#caseArrows_eyecatch button {
  font-size: 0;
  padding: 20px 20px;
  background: rgba(0, 0, 0, 0.8);
  border: 0;
  position: relative;
}
@media screen and (max-width: 1100px) {
  #caseArrows_eyecatch button {
    top: -60px;
  }
}
@media screen and (max-width: 768px) {
  #caseArrows_eyecatch button {
    top: 0px;
  }
}
#caseArrows_eyecatch button:before {
  content: "<";
  color: #FFF;
  font-weight: 300;
  font-size: 2rem;
  position: absolute;
  left: 14px;
  top: 5px;
}
#caseArrows_eyecatch button.slick-next {
  position: relative;
  left: 320px !important;
}
@media screen and (max-width: 1100px) {
  #caseArrows_eyecatch button.slick-next {
    left: 220px !important;
  }
}
@media screen and (max-width: 768px) {
  #caseArrows_eyecatch button.slick-next {
    left: 320px !important;
  }
}
#caseArrows_eyecatch button.slick-next:before {
  content: ">";
}

/* ポップでリンクエリア表示用css */
#pop_area_02 {
  position: fixed;
  top: 100px;
  font-size: 12px;
  border: 1px solid #fff;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: auto;
  right: 0px;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  background: rgba(0, 0, 0, 0.7);
  padding: 0px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
}
@media (max-width: 600px) {
  #pop_area_02 {
    position: fixed;
    right: auto;
    top: calc(100% - 110px);
    width: 100%;
    height: 110px;
    border: 0px solid #fff;
    border-radius: 0px 0 0 0px;
  }
}
@media (min-width: 800px) {
  #pop_area_02:hover > .article > #pop_area_02_btn {
    color: #aaa;
  }
}
#pop_area_02 .article {
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 600px) {
  #pop_area_02 .article a {
    display: flex;
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  #pop_area_02 .article a img {
    order: 1;
    width: calc(40% - 10px);
    height: auto;
  }
}
@media (max-width: 600px) {
  #pop_area_02 .article a p {
    order: 2;
    text-align: left;
    width: 60%;
    padding: 0 10px;
    font-size: 1.1rem;
  }
}
#pop_area_02 img {
  border-radius: 0px;
  width: calc(100% - 20px);
  height: auto;
  object-fit: cover;
  /*border-left:1px solid #ccc; border-bottom:1px solid #ccc; */
  margin: 2px 10px 16px;
}
#pop_area_02 p {
  text-align: center;
  font-weight: normal;
  font-size: 1.3rem;
  padding: 5px 10px 5px 10px;
  line-height: 1.1em;
  color: #FFF;
  padding: 10px 20px;
}
#pop_area_02 p b {
  font-size: 1.16em;
  font-weight: bold;
  margin: 4px auto 0;
  line-height: 1em;
  display: block;
}

#pop_area_02_btn {
  position: absolute;
  top: -6px;
  left: 4px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  font-weight: bold;
  font-size: 19px;
  color: #FFF;
  background: rgba(0, 0, 0, 0);
  border-radius: 50%;
  padding-top: 1px;
}
@media (max-width: 600px) {
  #pop_area_02_btn {
    color: #aaa;
    top: -10px;
  }
}
#pop_area_02_btn:hover {
  cursor: pointer;
}

.cc-window {
  font-size: 12px;
}

.cc-window.cc-floating {
  padding: 1em;
}

/* Industry-Specific Solutions 250912 */
.top-industry-list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .top-industry-list {
    gap: 10px;
  }
}
.top-industry-list > li {
  width: calc((100% - 60px) / 4);
  border: 1px solid #ccc;
  border-radius: 6px;
  line-height: 120%;
  background: #FFF;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .top-industry-list > li {
    width: calc((100% - 20px) / 2);
  }
}
.top-industry-list > li:hover {
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
  border: 1px solid #aaa;
  transition: 0.5s;
}
.top-industry-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  padding: 25px 10px;
  position: relative;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-industry-list > li > a {
    padding: 20px;
  }
}
.top-industry-list > li.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.top-industry-list > li.is-disabled > a {
  pointer-events: none;
}
.top-industry-list > li.is-disabled > a > img {
  width: auto;
  height: 35px;
}

/*# sourceMappingURL=top.css.map */


/* 20251111 add */
.acos ul{margin-top: 32px;}
.acos ul li{position: relative;}
.acos ul li span{position: absolute; top:-20px; left: -20px;}

@media (max-width: 860px) {
    .acos ul{margin-top: 32px!important; }
    .acos ul li span{width: 240px!important; left: calc(50% - 120px)!important; }
}


.logo_LayerX{width: 200px; height: auto;}
.logo_ipet{width: 250px; height: auto;}
@media screen and (max-width: 768px) {
     .logo_LayerX{width: 180px; height: auto;}
    .logo_ipet{width: 230px; height: auto;}
}
 @media screen and (max-width: 600px) {
     .logo_LayerX{width: 170px; height: auto;}
     .logo_ipet{width: 220px; height: auto;}
}

@media screen and (max-width: 600px) {
  .sec-top-case_eyecatch .top-case-list_eyecatch .top-case-list-item {
    width: 380px;
  }
  #caseArrows_eyecatch button.slick-next {
    left: 300px !important;
  }
}
