@charset "utf-8";

html {
  font-size: 62.5%;
  max-width: 1280px;
  margin: 0 auto;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
}

.sp {
  display: none;
}

header {
  background-color: #5371FB;
  padding: 2% 4%;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-logo {
  width: 20%;
}

#nav-button {
  width: 5%;
}

#nav-cancel {
  width: 4%;
  display: none;
}

#nav-menu {
  display: none;
  list-style: none;
  text-align: right;
  font-size: 2.5rem;
  color: #ffffff;
  margin-top: 1%;
  line-height: 1.8;
}

#main-view {
  text-align: center;
}

.main-view-area {
  background-image: url(../img/main-view-service.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8% 4%;
  text-align: left;
}

.main-view-title {
  font-size: 4rem;
  color: #ffffff;
}

.font-yellow {
  color: #FEF146;
}

.main-view-text {
  font-size: 2rem;
  line-height: 1.5;
  color: #ffffff ;
  margin-top: 5%;
}

.main-view-picture {
  width: 40%;
  margin: 5% auto;
}

#service {
  background-color: #F5FBFE;
  position: relative;
  z-index: -2;
  padding: 8% 4% 1% 4%;
}

.service-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 15%;
}

.service-area {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15%;
}

.service-container {
  background-color: #327FFB;
  border-radius: 20px;
  text-align: center;
  width: 46%;
  padding: 3%;
  position: relative;
}

.number {
  width: 40%;
  position: absolute;
  top: -6vw;
  left: 29%;
  z-index: -1;
}

.service-sub-title {
  font-size: 2.5rem;
  color:#ffffff ;
  margin-top: 5%;
}

.service-picture {
  width: 70%;
  margin: 10% 0;
}

.service-text {
  font-size: 2rem;
  color: #ffffff;
  text-align: left;
  line-height: 1.5;
}

#contact {
  padding: 8% 4%;
  text-align: center;
}

.contact-text {
  font-size: 4rem;
  margin-bottom: 1%;
  display: inline-block;
  background-image: url(../img/background-yellow.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-link {
  width: 50%;
  margin-top: 5%;
}




footer {
  background-color: #327FFB;
  text-align: center;
  font-size: 1.6rem;
  color: #ffffff;
  padding: 2% 0;
  font-family: "BIZ UDPGothic", sans-serif;
}

.company {
  border-bottom: solid 1px #ffffff;
  display: inline-block;
  line-height: 2;
  letter-spacing: 0.8px;
}

.footer-wrapper {
  display: inline-block;
}

.address-area, .tel-area, .mail-area {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.map-icon, .tel-icon, .mail-icon {
  width: 1.6rem;
  margin-right: 5px;
}

.copy-right {
  margin-top: 20px;
}


@media screen and (max-width:960px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  header {
    position: relative;
  }
  
  .header-wrapper {
    justify-content: center;
  }
  
  .top-logo {
    width: 40%;
  }
  
  #nav-button {
    width: 8%;
    position: absolute;
    right: 5%;
  }
  
  #nav-cancel {
    width: 7%;
    position: absolute;
    right: 5%;
  }

  #nav-menu {
    font-size: clamp(15px,4vw,30px);
  }

  .main-view-area {
    background-image: url(../img/main-view-service-sp.png);
    padding: 10% 8%;
  }
  
  .main-view-title {
    font-size: clamp(10px,6vw,60px);
  }

  
  .main-view-text {
    font-size: clamp(10px,3.5vw,30px);
    line-height: 1.8;
    margin-top: 10%;
    margin-bottom: 55%;
  }
  
  .main-view-picture {
    width: 60%;
    margin: 10% auto;
  }

  #service {
    padding: 8% 4% 1% 4%;
  }
  
  .service-title {
    font-size: clamp(10px,5vw,35px);
    margin-bottom: 20%;
  }
  
  .service-area {
    flex-direction: column;
    margin-bottom: 0%;
  }
  
  .service-container {
    width: 75%;
    padding: 5%;
    margin: 0 auto 20% auto;
  }
  
  .number {
    top: -10vw;
    left: 29%;
  }
  
  .service-sub-title {
    font-size: 2.5rem;
    font-size: clamp(10px,4vw,25px);
    margin-top: 3%;
  }
  
  .service-picture {
    width: 70%;
    margin: 10% 0;
  }
  
  .service-text {
    font-size: 2rem;
    font-size: clamp(10px,3.5vw,20px);
  }

  .contact-text {
    font-size: 3rem;
    font-size: clamp(10px,5vw,40px);
    margin-bottom: 1%;
    display: inline-block;
    background-image: url(../img/background-yellow.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .contact-link {
    width: 90%;
  }

  .information-pc {
    display: none;
  }

  footer {
    padding: 5%;
  }

  .copy-right {
    font-size: clamp(8px,2vw,20px);
    margin-top: 0;
  }
}