@font-face {
  font-family: "Overused Grotesk Roman", sans-serif;
  src: url("../../fonts/OverusedGrotesk-Bold.otf") format("opentype");
}
.p-bgFog {
  position: fixed;
  width: 100vw;
  height: 100vh;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.p-bgFog__layer {
  position: absolute;
  width: 60vw;
  height: 60vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(2vw);
  background: radial-gradient(ellipse at center, #404040 0%, rgba(64, 64, 64, 0) 70%);
  opacity: 0.08;
}

.p-fv {
  width: 100vw;
  height: 100vh;
  align-content: center;
  position: relative;
}
.p-fv__port {
  font-family: "Overused Grotesk Roman", sans-serif;
  font-weight: 700;
  color: #404040;
  display: inline-flex;
  font-size: 16rem;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%) rotate(-90deg);
  transform-origin: 0 0;
  opacity: 70%;
  cursor: default;
  overflow: hidden;
  line-height: 0.8;
  gap: 0;
}
@media screen and (max-width: 1024px) {
  .p-fv__port {
    font-size: 8rem;
    bottom: 8rem !important;
  }
}
.p-fv__port::selection {
  background-color: transparent;
}
.p-fv__port span {
  display: inline-block;
}
.p-fv__folio {
  font-family: "Overused Grotesk Roman", sans-serif;
  font-weight: 700;
  color: #404040;
  font-size: 16rem;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%) rotate(90deg);
  transform-origin: 0 0;
  line-height: 0.8;
  opacity: 30%;
  cursor: default;
}
@media screen and (max-width: 1024px) {
  .p-fv__folio {
    font-size: 8rem;
  }
}
.p-fv__folio::selection {
  background-color: transparent;
}

.p-myself {
  color: #404040;
  text-align: center;
  width: fit-content;
  height: fit-content;
  margin: auto;
  align-content: center;
  position: relative;
}
.p-myself__name {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 6rem;
  letter-spacing: 0.08em;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-myself__name {
    font-size: 2rem;
    writing-mode: vertical-rl;
    transform: translate(-50%, -50%);
  }
}
.p-myself__role {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2.25rem;
  letter-spacing: 0.2em;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 16px));
  text-wrap: nowrap;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-myself__role {
    font-size: 1rem;
    transform: translateX(-50%) translateY(calc(100% - 34px)) !important;
  }
}

.p-works {
  margin-top: 120px;
}
.p-works__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 89px 21px;
  padding: 0;
  list-style-type: none;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .p-works__items {
    grid-template-columns: 1fr;
    gap: 144px;
  }
}
.p-works__item {
  width: 100%;
  max-width: 480px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-works__item {
    max-width: unset;
  }
}
.p-works__link {
  color: unset;
  text-decoration: none;
  position: relative;
  width: 100%;
  display: block;
}
.p-works__link:hover {
  transform: scale(1.01);
  transition: transform 0.1s;
}
.p-works__img {
  border: 1px solid #404040;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  box-sizing: border-box;
}
.p-works__ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #404040;
  display: inline-block;
  font-size: 1.3rem;
  margin-top: 1px;
  letter-spacing: 0.04em;
}
.p-works__date {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #404040;
  display: inline-block;
  width: fit-content;
  font-size: 1.4rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(94%, -100%) rotate(90deg);
  transform-origin: 0 100%;
  opacity: 0.8;
}

.p-skills {
  margin-top: 120px;
}
.p-skills__heading {
  min-width: 30%;
}
@media screen and (max-width: 1024px) {
  .p-skills__heading {
    padding-bottom: 13px;
  }
}
.p-skills__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #404040;
  font-size: 1.2rem;
  letter-spacing: 0.08rem;
  margin-top: 4px;
}
.p-skills__items {
  display: flex;
  gap: 55px;
  padding: 0;
  list-style-type: none;
  margin-top: 40px;
  flex-direction: column;
}
.p-skills__item {
  display: flex;
  width: 100%;
  min-width: 480px;
  align-items: baseline;
}
@media screen and (max-width: 1024px) {
  .p-skills__item {
    flex-direction: column;
    min-width: unset;
  }
}
.p-skills__description {
  font-size: 1rem;
  padding-left: 34px;
  border-left: 1px solid #404040;
  padding-bottom: 21px;
}
@media screen and (max-width: 1024px) {
  .p-skills__description {
    border-left: none;
    border-top: 1px solid #404040;
    padding-left: 2px;
    padding-top: 13px;
  }
}
.p-skills__dots {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .p-skills__dots {
    padding-left: 4px !important;
  }
}
.p-skills__dots .p-skills__dot {
  width: 6px;
  height: 6px;
  clip-path: circle(50% at 50% 50%);
  background-color: #404040;
  opacity: 0;
  display: none;
}
.p-skills__dots .p-skills__dot.is-active {
  opacity: 0.7;
  display: block;
}

.p-contact {
  margin-top: 120px;
}
.p-contact__description {
  font-size: 1rem;
  line-height: 2;
}
.p-contact__btn {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 55px;
  padding: 21px 32px;
  border: 1px solid #404040;
  color: #404040;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .p-contact__btn {
    width: 100%;
    justify-content: center;
  }
}
.p-contact__btn .p-contact__icon {
  height: 80%;
  object-fit: contain;
  object-position: center;
}

.p-post {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-heading {
  border-bottom: 2px solid #404040;
  margin: 34px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 8px;
}
@media screen and (max-width: 1024px) {
  .p-heading {
    margin: 55px 0;
    padding: 0;
  }
}
.p-heading__ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #404040;
  font-size: 3rem;
  margin-bottom: 13px;
  text-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .p-heading__ttl {
    font-size: 1.7rem;
  }
}

.p-thumb {
  width: 100%;
}
.p-thumb img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-thumb img {
    aspect-ratio: 1/1;
  }
}

.p-content {
  display: flex;
  padding: 34px 0;
}
@media screen and (max-width: 1024px) {
  .p-content {
    flex-direction: column;
  }
}

.p-meta {
  display: grid;
  width: 34vw;
  max-width: 234px;
  padding: 13px;
  list-style-type: none;
  row-gap: 34px;
}
@media screen and (max-width: 1024px) {
  .p-meta {
    grid-template-columns: 1fr 1fr;
    width: 100% !important;
    max-width: unset;
    padding: 0 13px;
  }
}
.p-meta__label {
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #404040;
  font-size: 1rem;
  align-items: center;
}
.p-meta__icon {
  width: 21px;
  height: 21px;
  margin-right: 8px;
}
.p-meta__data {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  display: inline-flex;
  flex-direction: column;
  color: #404040;
  margin-top: 8px;
  padding: 0 0 0 1px;
  list-style-type: none;
  gap: 3px;
}
.p-meta a.p-meta__data {
  width: 100%;
  display: block;
  word-break: break-all;
}

.p-wp-content {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: fit-content;
  margin-left: 34px;
}
@media screen and (max-width: 1024px) {
  .p-wp-content {
    margin-left: 0;
  }
}
.p-wp-content > * {
  padding: 13px;
}
@media screen and (max-width: 1024px) {
  .p-wp-content {
    padding-top: 55px;
  }
}
.p-wp-content .wp-block-gallery {
  gap: 8px !important;
}
@media screen and (max-width: 1024px) {
  .p-wp-content .wp-block-gallery {
    display: flex;
    flex-direction: column;
    gap: 21px !important;
  }
  .p-wp-content .wp-block-gallery .wp-block-image {
    width: 100% !important;
  }
  .p-wp-content .wp-block-gallery .wp-block-image img {
    width: 100%;
  }
}
.p-wp-content .wp-block-gallery img {
  aspect-ratio: 16/9;
  object-fit: contain;
  cursor: pointer;
}
.p-wp-content .wp-block-gallery img:active {
  transform: scale(300%);
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .p-wp-content .wp-block-gallery img:active {
    transform: none;
  }
}

.p-link {
  display: flex;
  width: fit-content;
  justify-content: center;
  padding: 8px 34px;
  border: 1px solid #404040;
  text-decoration: none;
  color: #404040;
  font-size: 1rem;
  gap: 8px;
  margin: 21px auto 0 auto;
  transition: padding 0.3s ease;
}
.p-link:hover {
  padding: 8px 89px;
}
@media screen and (max-width: 1024px) {
  .p-link {
    width: 100%;
    padding: 13px 0;
  }
  .p-link:hover {
    padding: 8px 34px;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: #fafafa;
  overflow-x: hidden;
  max-width: 100vw;
}

*::selection {
  color: white;
  background-color: #404040;
}

.l-wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 60vw;
}
@media screen and (max-width: 1024px) {
  .l-wrap {
    max-width: 90vw;
  }
}

.c-header {
  position: fixed;
  top: 21px;
  right: 13px;
  padding: 0;
  z-index: 10;
}
.c-header__contact {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #404040;
  display: inline-block;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid #404040;
  padding: 13px 55px;
  align-items: center;
  background-color: rgba(250, 250, 250, 0.8);
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .c-header__contact {
    padding: 13px 55px;
  }
}
.c-header__contact:hover {
  border-color: #404040;
}

.c-h {
  color: #404040;
  display: flex;
  align-items: center;
  margin-bottom: 55px;
  flex-wrap: wrap;
}
.c-h__en {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 3rem;
  margin-right: 34px;
  letter-spacing: 0.04rem;
}
.c-h__ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1rem;
}

.c-txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #404040;
  font-size: 1rem;
  line-height: 2;
}

.c-footer {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #404040;
  height: 233px;
  align-content: center;
  font-size: 1rem;
  text-align: center;
}

.u-fadeIn {
  opacity: 0;
}

/*# sourceMappingURL=style.css.map */
