@charset "utf-8";

/*CSSライブラリのインポート*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p, h2 {
  /* font-family: "Sawarabi Mincho", serif; */
  font-family: sans-serif;
}

/* PC */
@media screen and (min-width: 960px) {
  header {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 2%;
  }

  .logo a {
    display: grid;
  }

  .logo-img {
    border-radius: 40px;
    width: 130px;
    height: 70px;
  }

  .right-menu {
    margin: 0 0 0 auto;
  }

  .header-menu {
    display: flex;
    list-style: none;
    gap: 40px;
  }

  .header-menu-list {
    transition: .4s ease-out;
  }

  .header-menu-list a {
    text-decoration: none;
    color: black;
    font-weight: 700;
    transition: .4s ease-out;
  }

  .header-menu-list a:hover {
    text-decoration: underline;
  }

  #section1 {
    width: 100%;
    height: 500px;
    margin-bottom: 40px;
  }

  .section1-title {
    width: 97%;
    height: 100%;
    background-image: url(../img/call-center2.png);
    background-size: cover;
    border-radius: 50px;
    margin: 0 auto;
    padding-left: 100px;
    padding-top: 140px;
  }

  .section1-title-text {
    color: white;
    font-size: 48px;
    border-bottom: 5px solid white;
    letter-spacing: 8px;
    width: fit-content;
  }

  .section1-title-detail {
    color: white;
    margin-top: 30px;
  }

  #section2 {
    width: 100%;
    height: auto;
    margin-top: 150px;
    margin-bottom: 120px;
  }

  input, textarea {
    font-size: 18px;
  }

  input {
    padding: 5px;
  }

  textarea {
    line-height: 1.5;
  }

  #message-name ,#message-mail ,#message-mail-check ,#message-contact-details {
    color: red;
    padding-top: 25px;
  }

  .section2-content {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }

  .contact-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }

  .contact-item {
    width: 100%;
    height: 150px;
    list-style: none;
    display: flex;
  }

  .contact-item:last-of-type {
    height: 350px;
  }

  .list-title {
    width: 20%;
    font-size: 16px;
    font-weight: 700;
  }

  .required {
    width: 10%;
    color: red;
  }

  hr {
    width: 100%;
  }

  .input-content {
    width: 70%;
    height: auto;
  }

  .input-text {
    width: 100%;
    height: 50px;
    margin-top: 25px;
  }

  .contact-details {
    width: 100%;
    height: 250px;
  }

  .contact-button {
    width: 350px;
    height: 60px;
    color: white;
    background-color: #808080;
    border-radius: 50px;
    margin: 0 auto;
    border: none;
  }

  /*footer*/
  footer {
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
  }

  .footer-content {
    width: 97%;
    height: 100%;
    background-image: url(../img/footer.png);
    background-size: cover;
    margin: 0 auto;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 25%;
  }

  .footer-logo {
    margin-left: 170px;
  }

  .footer-menu-list {
    list-style: none;
    margin-bottom: 20px;
    transition: .4s ease-out;
  }

  .footer-menu-list a {
    text-decoration: none;
    color: black;
    font-size: 24px;
    font-weight: 700;
    transition: .4s ease-out;
  }

  .footer-menu-list a:hover {
    text-decoration: underline;
  }
}