@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;
}

form {
  padding: 6% 15%;
}

.form-container {
  display: flex;
  justify-content: space-between;
}

.title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 8%;
}

.form-container {
  margin-bottom: 5%;
}

label {
  font-size: 2rem;
  align-self: center;
}

input {
  background-color: #f7f7f7;
  border: solid 2px #888888;
  border-radius: 10px;
  width: 85%;
  height: 40px;
}

.align {
  align-self: flex-start; 
  margin-top: 5px;
}

textarea {
  background-color: #f7f7f7;
  border: solid 2px #888888;
  border-radius: 15px;
  width: 85%;
  height: 250px;
  padding: 5px;
}

.submit-container {
  text-align: center;
}

button {
  width: 50%;
}

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

.line-icon {
  width: 10%;
  margin-bottom: 2%;
}

.line-text {
  font-size: 3rem;
  margin-bottom: 4%;
}

.font-green {
  color: #1EAA39;
}

.line-link {
  width: 50%;
}

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);
  }

  form {
    padding: 6% 10%;
  }
  
  .form-container {
    display: flex;
    justify-content: space-between;
  }
  
  .title {
    font-size: clamp(10px,5.5vw,50px);
  }
  
  .form-container {
    margin-bottom: 5%;
  }
  
  label {
    font-size: clamp(10px,4vw,30px);
  }
  
  input {
    width: 80%;
    height: 8vw;
  }
  
  
  textarea {
    width: 80%;
    height: 35vw;
  }

  .margin {
    margin-bottom: 10%;
  }

  button {
    width: 100%;
  }



  #line-contact {
    padding: 2% 4% 4% 4%;
  }
  
  .line-text-container {
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }

  .line-icon {
    width: 14%;
    margin: 0 3% 0 0;
  }
  
  .line-text {
    font-size: 4.5rem;
    font-size: clamp(10px,5vw,45px);
    text-align: left;
    line-height: 1.3;
    margin-bottom: 0%;
  }
  
  .line-link {
    width: 87%;
  }

  .information-pc {
    display: none;
  }

  footer {
    padding: 5%;
  }

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