@charset "UTF-8";
/* CSS Document */
/*------------------

リセットcss

-------------------*/
html, body, div, h1, img {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
}
body {
  max-width: 1920px;
  width: 100%;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}
p {
  font-weight: 550;
  margin: 5px 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* FV */
.fv {
  position: relative;
}
.fv nav {
  position: absolute;
  top: 1.5%;
  right: 2%;
  margin-bottom: 10px;
}
.fv ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.fv li {
  list-style-type: none;
  margin: 0 50px;
}
.fv li a {
  text-decoration-line: none;
  color: #1a1717;
}

/* about us */
#about {
  color: #085097;
}
#about_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}
#about p:nth-of-type(2) {
  font-size: 125%;
}
#about span {
  font-size: 175%;
  font-weight: 700;
}

/* vision */
#vision {
  background-color: #085097;
  color: #ffffff;
}

/* works */
#works_flex {
  display: flex;
}
#works {
  color: #085097;
}
#works h4 {
  font-size: 166%;
}

/* address */
#address {
  background-color: #085097;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  text-align: center;
}
#address img {
  position: absolute;
  top: 0;
  left: 0;
}
#address .address {
  padding: 150px 0;
}
#address .name {
  font-weight: 600;
  font-size: 30px;
}
/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */

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

  .pc {
    display: none;
  }

  #hamburger {
    position: relative;
  }

  #menu_btn {
    position: absolute;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    z-index: 2;
  }

  #menu_contents {
    display: none;
    background-color: #ffffff;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40%;
    height: auto;
    z-index: 1;
  }

  #menu_contents ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    padding: 0;
    padding-top: 50px;
  }

  #menu_contents ul li {
    padding: 15px 0;
    text-align: center;
    width: 60%;
    margin: 0 auto;
    font-family: sans-serif;
  }

  #address .address {
    padding: 80px 0;
  }
}