@charset "UTF-8";
body {
  line-height: 1.8;
  font-family: "Noto Serif JP", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.8px;
  position: relative;
  color: #e4e3d9;
  background-color: #171613;
}
@media (max-width: 550px) {
  body {
    overflow-x: hidden;
    font-size: 93%;
    font-weight: 500;
  }
}

.mb40 {
  margin-bottom: 40px;
}

.logo {
  max-width: 320px;
}
@media (max-width: 1200px) {
  .logo {
    max-width: 240px;
  }
}
@media (max-width: 550px) {
  .logo {
    max-width: 120px;
    padding-top: 0.5rem;
  }
}

#navArea {
  display: flex;
  padding: 1.5rem;
  justify-content: space-between;
  margin-inline: auto;
}
@media (max-width: 550px) {
  #navArea {
    padding: 1rem;
  }
}
@media (max-width: 1200px) {
  #navArea nav {
    width: 70%;
  }
}
@media (max-width: 960px) {
  #navArea nav {
    display: none;
  }
}

.content {
  max-width: 1057px;
  margin: 1rem auto 2rem;
}
@media (max-width: 1200px) {
  .content {
    padding: 1rem;
  }
}

h2 {
  font-family: "Cinzel", "Noto Serif JP", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 3rem;
}

.inner {
  padding-top: 2rem;
}
.inner .global {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 80%;
}
.inner .global li {
  font-size: 13px;
  font-family: "Cinzel", "Noto Serif JP", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
.inner .global li::after {
  background-color: #e4e3d9;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: 0.5s all;
  width: 0;
}
.inner .global li:hover:after {
  width: 100%;
}
.inner .global li a {
  color: #e4e3d9;
  text-decoration: none;
}

.toggle_btn {
  display: none;
}
@media (max-width: 960px) {
  .toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 50px;
    width: 20px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
  }
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #737373;
  border-radius: 4px;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 7px;
}

.toggle_btn span:nth-child(2) {
  bottom: 7px;
}

.open .toggle_btn span {
  background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
  transform: translateY(7px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  transform: translateY(-7px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  transition-duration: 0.5s;
  transition-property: opacity;
  opacity: 0;
  display: none;
}

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.open #mask {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  z-index: 2;
  animation: fadeIn 0.2s ease-in 0s forwards;
  cursor: pointer;
  opacity: 1;
}

.inner {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 960px) {
  .inner {
    padding-top: 5rem;
  }
}

.sns {
  display: flex;
  gap: 10px;
  border-left: 1px solid #e4e3d9;
  padding-left: 15px;
}
@media (max-width: 960px) {
  .sns {
    padding: 2rem 0 0;
    border-left: none;
    gap: 15px;
  }
}
.sns img {
  width: 24px;
}
@media (max-width: 960px) {
  .sns img {
    width: 36px;
  }
}

.worklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
@media (max-width: 960px) {
  .worklist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .worklist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.worklist li {
  list-style: none;
}
.worklist li a {
  color: inherit;
  text-decoration: none;
}
.worklist li img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.worklist li h3 {
  line-height: 1.4;
  font-size: 15px;
  font-weight: 500;
  font-family: "Cinzel", "Noto Serif JP", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: -0.5px;
}
.worklist li span {
  font-size: 13px;
  font-family: "Cinzel", "Noto Serif JP", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #bbbbbb;
}

.login {
  display: flex;
  justify-content: right;
}
@media (max-width: 960px) {
  .login {
    justify-content: center;
    padding-top: 2rem;
  }
}
.login p {
  font-size: 12px;
  padding: 0.4rem 1.5rem;
  background-color: #907831;
  border-radius: 30px;
  margin: 0.5rem 0.2rem;
}
.login a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}

footer {
  width: 100%;
  background-color: #222222;
  padding: 1.5rem 0;
}

.copy {
  text-align: center;
  font-family: "Cinzel", "Noto Serif JP", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

.w-detail {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 550px) {
  .w-detail {
    display: block;
  }
}
.w-detail p {
  margin-bottom: 0;
  font-size: 14px;
}
.w-detail a {
  color: inherit;
}
.w-detail .work-img {
  width: 38%;
}
@media (max-width: 550px) {
  .w-detail .work-img {
    width: 80%;
    margin: 1rem auto;
  }
}
.w-detail .work-topic {
  width: 57%;
}
@media (max-width: 550px) {
  .w-detail .work-topic {
    width: 100%;
  }
}
.w-detail .work-topic h2 {
  padding: 0;
  margin-top: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 550px) {
  .w-detail .work-topic h2 {
    font-size: 24px;
    margin-bottom: 1rem;
  }
}
.w-detail .release {
  font-size: 13px;
  color: #aaaaaa;
  font-weight: 600;
}
.w-detail .release span {
  border: #ffffff solid 1px;
  padding: 0 0.2rem;
  font-size: 12px;
  margin-right: 0.3rem;
  color: #ffffff;
}
.w-detail .link {
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .open nav {
    width: 100% !important;
    display: block !important;
    position: fixed;
    z-index: 3;
  }
  .open nav .inner {
    display: block;
  }
  .open nav .global {
    width: 100%;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  .open nav .global li {
    width: 48%;
    box-sizing: border-box;
    font-size: 24px;
  }
}
@media (max-width: 960px) and (max-width: 550px) {
  .open nav .global li {
    font-size: 18px;
  }
}
.page-numbers {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.page-numbers a {
  color: inherit;
  text-decoration: none;
}
.page-numbers .current {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */