@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-style: normal;
}

p {
  margin: 0;
}

.text {
  font-size: 0.25em;
  font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 770px) {
  .text {
    font-size: 0.5em;
  }
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: white;
}

.main__meishibg {
  display: flex;
  height: 100vh;
  width: 100vh;
  background-color: white;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.main__meishibg .main__meishi {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 55%;
  width: 91%;
  border: solid 6px black;
  transition: height 1s ease-in-out, width 1s ease-in-out;
  animation: meishi-load-move 0.5s 7.5s ease-in-out both;
  font-size: 3vmax;
  z-index: 2;
}
.main__meishibg .main__meishi::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  border-left: solid 2px black;
  border-bottom: solid 2px black;
  box-sizing: border-box;
  animation: border-both 1s 2s ease-in-out forwards, opacity-0to1 0.7s 5.5s reverse ease-in-out forwards;
}
.main__meishibg .main__meishi::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  border-right: 2px solid black;
  border-top: 2px solid black;
  box-sizing: border-box;
  animation: border-both 1s 2s ease-in-out forwards, opacity-0to1 0.7s 5.5s reverse ease-in-out forwards;
}
.main__meishibg .main__meishi .main__meishi__title {
  position: absolute;
  text-align: center;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto 0 auto;
  font-size: 200%;
  animation: opacity-0to1 1.5s 4s forwards, opacity-0to1 0.7s 5.5s reverse ease-in-out forwards;
}
.main__meishibg .main__meishi .main__meishi__text {
  display: flex;
  flex-direction: column;
  gap: 2%;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 1.5% 0 0 3%;
  color: transparent;
  z-index: 3;
  animation: opacity-0to1 0.5s 7.5s ease-in-out both;
}
.main__meishibg .main__meishi .main__meishi__text div {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  color: black;
  transition: color 0.2s;
}
.main__meishibg .main__meishi .main__meishi__text div::after {
  position: absolute;
  content: "";
  margin-left: 0.3em;
  top: 0.7em;
  width: 0;
  height: 0.1em;
  box-sizing: border-box;
  border-top: 3px solid black;
  animation: border-width-0to1 0.5s 0.5s ease-in-out both;
}
.main__meishibg .main__meishi .main__meishi__text div:hover {
  color: gray;
}
.main__meishibg .main__meishi #bio {
  display: flex;
  width: 100%;
  height: 80%;
  padding: 1% 5% 1.5% 3%;
  flex-direction: column;
}
.main__meishibg .main__meishi #bio .main__bio {
  display: flex;
  height: 57%;
  width: auto;
  margin-bottom: 3%;
}
.main__meishibg .main__meishi #bio .main__bio__photo {
  margin-right: 3%;
}
.main__meishibg .main__meishi #bio .main__bio__text span {
  font-weight: bold;
}
.main__meishibg .main__meishi #bio .main__bio__text p {
  margin-bottom: 3%;
}
.main__meishibg .main__meishi #bio .main__bio__statement {
  height: 43%;
  width: auto;
}
.main__meishibg .main__meishi #bio .main__bio__statement span {
  font-weight: bold;
}
.main__meishibg .main__meishi #bio img {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 730px) {
  .main__meishibg .main__meishi #bio img {
    display: none;
  }
}
.main__meishibg .main__meishi #photo {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1% 3% 1.5% 3%;
  margin-bottom: 5%;
}
.main__meishibg .main__meishi #photo .main__photo__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.main__meishibg .main__meishi #photo .main__photo__container .photo__library {
  height: 100%;
  width: auto;
  display: flex;
  gap: 1%;
}
.main__meishibg .main__meishi #photo .main__photo__container .photo__library div img {
  height: 100%;
  width: 100%;
}
.main__meishibg .main__meishi .main__meishi__name {
  position: absolute;
  right: 0;
  bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 0 3% 1.5% 0;
  text-align: right;
  animation: opacity-0to1 0.5s 7.5s ease-in-out both;
  z-index: 3;
}

.main__content {
  display: none;
  /* 初期状態では非表示 */
  opacity: 0;
}

.hover-toGray {
  font-size: 0.6em;
  transition: color 0.2s ease-in-out;
}
.hover-toGray:hover {
  color: gray;
}

.no-after {
  /* 疑似要素を完全に非表示 */
}
.no-after::after {
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out !important;
}
.no-after:hover {
  color: black !important;
}

.no-after-displaynone::after {
  display: none;
}

.fadeout {
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out !important;
}

.fadein {
  opacity: 1 !important;
  visibility: visible;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out !important;
}

.no-animation {
  animation: none !important;
  /* アニメーションを無効化 */
}

.viewer-height {
  height: 90%;
  border: 6px solid black;
  font-size: 3vmax !important;
  transition: height 1s ease-in-out;
}

.viewer-height-photo {
  height: -moz-fit-content !important;
  height: fit-content !important;
  width: 100% !important;
  border: 6px solid black;
  font-size: 3vmax !important;
  transition: height 1s ease-in-out;
}

.selectedContent {
  display: flex !important;
}

@keyframes border-both {
  0% {
    opacity: 1;
    height: 0%;
    width: 0%;
  }
  55% {
    opacity: 1;
    height: 100%;
    width: 0%;
  }
  100% {
    opacity: 1;
    height: 100%;
    width: 100%;
  }
}
@keyframes meishi-load-move {
  0% {
    border: 0px solid black;
    font-size: 1vmax;
    height: 18%;
    width: 30%;
  }
  100% {
    border: 6px solid black;
    font-size: 3vmax;
    height: 55%;
    width: 91%;
  }
}
@keyframes opacity-0to1 {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes border-width-0to1 {
  0% {
    width: 0;
  }
  100% {
    width: 0.8em;
  }
}
@keyframes hover-animation {
  0% {
    color: black;
  }
  100% {
    color: rgb(36, 36, 36);
  }
}/*# sourceMappingURL=css.css.map */