@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: #8fbc8f;
}

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

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

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

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

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

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

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

.header-title {
  font-size: 30px;
  margin-top: 20px;
  padding: 5px;
  color: #8fbc8f;
}
.header-title:hover {
  color: red;
}

.header-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header-nav ul li {
  list-style: none;
  margin: 0 20px;
}
.header-nav ul li a {
  font-size: 25px;
  color: green;
  text-decoration: underline;
}
.header-nav ul li a:hover {
  color: red;
}

.top-image {
  width: 100%;
  height: 50px;
}

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, #38a456, #6cd4d4 20%, #df8b2a 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;
  color: yellow;
}
.skill-text P .under {
  text-decoration: underline;
  color: #fff;
}

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

.service-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: 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;
  -webkit-flex-direction: row-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: 30px;
  color: orange;
  text-decoration: underline;
}

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

.slider1,
.slider2 {
  margin: 80px 0;
}
.slider1 img,
.slider2 img {
  width: 240px;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
  border-radius: 10px;
}

footer {
  text-align: center;
}
footer ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
}
footer ul li {
  list-style: none;
  margin: 0 30px;
  z-index: 1;
}
footer ul li a {
  font-size: 20px;
  text-decoration: underline;
}
footer p {
  font-size: 15px;
}

.sp-only {
  display: none;
}

@media (max-width: 1024px) {
  header {
    width: 90%;
  }
  .slider1 img,
.slider2 img {
    width: 185px;
    height: 250px;
  }
}
@media (max-width: 599px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  h3 {
    font-size: 45px;
  }
  h4 {
    font-size: 30px;
  }
  header {
    width: 93%;
    height: 70px;
    position: fixed;
    top: 10px;
    right: 0;
    left: 0;
    z-index: 1;
  }
  header .header-title {
    font-size: 15px;
  }
  .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;
    display: none;
    z-index: -1;
  }
  .humburger-menu li {
    margin: 120px;
  }
  .humburger-menu li a {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
  }
  .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;
  }
  .skider1,
.slider2 {
    margin: 25px 0;
  }
  .slider1 img,
.slider2 img {
    width: 100px;
    height: 120px;
    display: block;
    margin: 0 10px;
  }
  footer ul {
    margin: 30px 0;
  }
  footer ul li {
    margin: 0 10px;
  }
  footer ul li a {
    font-size: 10px;
  }
  footer ul .footer-tit {
    font-size: 15px;
  }
}/*# sourceMappingURL=index.css.map */