@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  background-color: #F0F3F5;
}
@media (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #C1D1E0;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

h1 {
  margin: 0;
}

.wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
}

.site-title {
  text-align: center;
  margin: 50px 0 20px 0;
}
@media screen and (min-width: 769px) {
  .site-title {
    margin: 100px 0 50px 0;
  }
}
.site-title h2 {
  display: inline-block;
  font-size: 2.4rem;
  border-bottom: 1px solid #000;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 6rem;
  background-color: #1f1e63;
}
.header .logo {
  color: #c1d1e0;
  font-size: 2.4rem;
  line-height: 6rem;
}

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

.nav-button {
  color: #c1d1e0;
  font-size: 4rem;
  cursor: pointer;
}
@media (min-width: 769px) {
  .nav-button {
    display: none;
  }
}

.sp-nav {
  position: absolute;
  top: 6rem;
  left: 0;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  padding: 120px 0;
  border-top: 1px solid #1f1e63;
  background-color: #1f1e63;
  opacity: 0.8;
  display: none;
  z-index: 10;
}

.sp-nav-list li + li {
  margin-top: 30px;
}

.pc-nav {
  display: none;
}
@media (min-width: 769px) {
  .pc-nav {
    display: block;
  }
}

.pc-nav-list {
  display: flex;
  line-height: 6rem;
}
.pc-nav-list li + li {
  margin-left: 30px;
}

.cover {
  position: relative;
  background-image: url(../img/sp-cover.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin-top: 6rem;
  padding-top: 116.94%;
}
@media screen and (min-width: 769px) {
  .cover {
    background-image: url(../img/pc-cover.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 60%;
  }
}

.cover-title {
  position: absolute;
  top: 40%;
  margin-left: 5%;
}
@media screen and (min-width: 769px) {
  .cover-title {
    top: 36%;
  }
}
.cover-title h2 {
  font-size: 4vh;
  font-weight: 800;
  color: #1f1e63;
}
@media screen and (min-width: 769px) {
  .cover-title h2 {
    font-size: 5vw;
  }
}

.work {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-auto-rows: auto;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .work {
    grid-template-columns: repeat(auto-fill, 270px);
    gap: 50px 0;
  }
}
.work .work-container {
  width: 100%;
}
.work .work-container img {
  width: 100%;
  box-shadow: 3px 3px 3px #c1d1e0;
}
.work .work-container p {
  color: #000;
  text-align: center;
  margin-top: 3px;
}
@media screen and (min-width: 769px) {
  .work .work-container p {
    margin-top: 10px;
  }
}

.job-site-title {
  text-align: center;
  margin: 110px 0 20px 0;
}
@media screen and (min-width: 769px) {
  .job-site-title {
    margin: 160px 0 50px 0;
  }
}
.job-site-title h2 {
  display: inline-block;
  font-size: 2.4rem;
  border-bottom: 1px solid #000;
}

.job {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .job {
    display: flex;
    text-align: none;
  }
}
.job img {
  width: 80%;
  box-shadow: 3px 3px 3px #c1d1e0;
  border-radius: 20px;
}
@media screen and (min-width: 769px) {
  .job img {
    width: 50%;
    margin-right: 30px;
  }
}

.text {
  margin-top: 20px;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (min-width: 769px) {
  .text {
    margin-top: 0;
  }
}
.text .completion-date {
  font-weight: 700;
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
.pagination li + li {
  margin-left: 50px;
}
.pagination a {
  color: #000;
}

.profile {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .profile {
    display: flex;
    text-align: none;
  }
}
.profile img {
  width: 85%;
  border-radius: 5%;
}
@media screen and (min-width: 769px) {
  .profile img {
    width: 300px;
    height: 360px;
    border-radius: 20px;
    margin-right: 50px;
  }
}
.profile .profile-container {
  padding-top: 10px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.profile .profile-container h3 {
  margin-bottom: 3.2rem;
}
.profile .profile-container a {
  color: #1f1e63;
}

.sns {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}
.sns .twitter {
  margin-right: 50px;
}
.sns .twitter p {
  margin-bottom: 10px;
}
.sns .pinned p {
  margin-bottom: 10px;
}

@media screen and (max-width: 769px) {
  .sns {
    flex-direction: column;
    margin: 50px auto;
  }
  .sns .pinned {
    margin-top: 30px;
  }
}
.footer {
  position: relative;
  width: 100%;
  background-color: #1f1e63;
  text-align: center;
}
.footer p {
  color: #fff;
  font-size: 1rem;
  padding: 25px 0;
}

#page-top {
  position: absolute;
  right: 16px;
  bottom: 15px;
  z-index: 1;
  font-size: 2.4rem;
  line-height: 2.4rem;
  background: #fff;
  color: #1F1E63;
  padding: 5px;
  border: solid 1px;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  #page-top {
    right: 50px;
  }
}/*# sourceMappingURL=style.css.map */