@import url(../css/riset.css);
@import url(../css/slick-theme.css);
@import url(../css/slick.css);
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&family=Noto+Sans+JP:wght@400;700;900&display=swap");
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #222;
}

a {
  text-decoration: none;
  color: #222;
}

a:hover {
  color: #0066cc;
}

p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 80px;
  font-weight: bold;
}

h4 {
  font-size: 45px;
  font-weight: bold;
}

.container {
  width: 100%;
  margin: 0 auto;
}

header {
  width: 80%;
  height: 80px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-title {
  font-size: 28px;
  color: #222;
}

.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav ul li {
  list-style: none;
  margin: 0 20px;
}

.header-nav ul li a {
  font-size: 22px;
}

main {
  margin: 120px 0 400px;
}

.main-title {
  font-size: 80px;
  font-weight: 700;
  text-align: center;
}

.text-gradient {
  display: inline-block;
  font-weight: 900;
  background: -webkit-linear-gradient(45deg, #54d0ff, #9f92ff 20%, #ff7689 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: blue;
}

.company-detail {
  background-image: url(../image/company1.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 800px;
}

.skill-text {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: relative;
  top: 30%;
  opacity: 0;
  -webkit-transition: 3s;
  transition: 3s;
}

.skill-text h3 {
  margin-bottom: 10px;
}

.skill-text p {
  font-size: 30px;
}

.skill-text.fadeIn {
  opacity: 1;
}

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 250px 0;
  opacity: 0;
  -webkit-transition: 3s;
  transition: 3s;
}

.service-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.service-item.fadeIn {
  opacity: 1;
}

.sec-margin {
  margin: 200px 0;
}

.image {
  width: 500px;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin: 0 60px;
}

.service-text {
  width: 27%;
}

.service-text a {
  margin: 10px 0;
  font-size: 18px;
}

.past-work h3 {
  margin-bottom: 20px;
  text-align: center;
}

.slider1,
.slider2 {
  margin: 80px 0;
}

.slider1 img,
.slider2 img {
  width: 270px;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
  border-radius: 20px;
}

footer {
  text-align: center;
}

footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
}

footer ul li {
  list-style: none;
  margin: 0 30px;
}

footer ul li a {
  font-size: 22px;
}

.sp-only {
  display: none;
}

@media (max-width: 1024px) {
  header {
    width: 90%;
  }
  .slider1 img,
  .slider2 img {
    width: 185px;
    height: 185px;
  }
}

/*  sp  */
@media (max-width: 599px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  h3 {
    font-size: 45px;
  }
  h4 {
    font-size: 30px;
  }
  header {
    width: 93%;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
  }
  header .header-title {
    font-size: 22px;
  }
  .humburger-btn span {
    display: block;
    background-color: #000;
    width: 40px;
    height: 4px;
    margin: 8px 0;
    border-radius: 10px;
  }
  .humburger-btn span :hover {
    cursor: pointer;
  }
  .humburger-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    text-align: center;
    display: none;
    z-index: -1;
  }
  .humburger-menu li {
    margin: 120px 0;
  }
  .humburger-menu li a {
    font-size: 40px;
    font-weight: 700;
  }
  .humburger-menu li a:hover {
    cursor: pointer;
  }
  .humburger-menu.show {
    display: block;
  }
  main {
    margin: 150px 0 400px;
  }
  main .main-title {
    font-size: 45px;
  }
  .skill-text {
    top: 37%;
  }
  .skill-text p {
    font-size: 18px;
  }
  .service-text {
    width: 100%;
  }
  .service-img {
    width: 73%;
    margin-bottom: 15px;
  }
  .image {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  .service-text {
    padding: 0 50px;
  }
  .service-text h4 {
    margin-bottom: 10px;
  }
  .slider1,
  .slider2 {
    margin: 25px 0;
  }
  .slider1 img,
  .slider2 img {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 10px;
  }
  footer ul {
    margin: 30px 0;
  }
  footer ul li {
    margin: 0 10px;
  }
  footer ul li a {
    font-size: 12px;
  }
}
/*# sourceMappingURL=top.css.map */