@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/access.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;
    padding-top: 50px;
    margin-bottom: 120px;
  }

  .section2-content {
    width: 50%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .sub-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sub-title {
    display: flex;
    gap: 30px;
  }

  .map-content {
    flex-direction: row;
  }

  .map-detail {
    flex: 1;
  }

  .google-map {
    flex: 1.5;
  }


  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;
  }


}