@charset "UTF-8";
body {
  padding: 0;
  color: #050505;
  background-color: #fafafa;
  font-size: 16px;
  font-family: fot-udkakugoc70-pro, sans-serif;
  font-display: block;
  font-weight: 400;
}

@media (max-width: 700px) {
  body {
    height: auto;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  display: block;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.load {
  width: 100vw;
  height: 100vh;
  background-color: #fafafa;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.load img {
  width: 50%;
  max-width: 200px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.secondload {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fafafa;
}

.spinner {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.container {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  line-height: 1.8;
  letter-spacing: 1px;
  position: relative;
}

.menu {
  width: auto;
  height: auto;
  padding: 8px;
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 99;
  background-color: rgba(250, 250, 250, 0.8);
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media (max-width: 700px) {
  .menu {
    top: 16px;
    left: 16px;
    margin-bottom: 40px;
  }
}

.menu * {
  -webkit-transition: all .4s;
  transition: all .4s;
}

.menu h1 {
  font-size: 40px;
  font-family: dnp-shuei-nmincho-std, sans-serif;
}

.menu h1 span {
  font-size: 16px;
  margin-left: 16px;
}

.menu h2 {
  font-size: 24px;
}

.menu nav {
  font-size: 24px;
}

@media (max-width: 700px) {
  .menu nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu nav a {
    padding-right: 40px;
  }
}

.menu .contact {
  width: auto;
  height: auto;
  margin-top: 40px;
  padding: 8px;
  position: relative;
  border: solid 1px #050505;
}

.menu .arrow {
  position: relative;
  display: inline-block;
}

.menu .arrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 1.5px #050505;
  border-right: solid 1.5px #050505;
  position: absolute;
  left: -14px;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  border-radius: 1px;
}

.menu .arrow::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 1.5px #050505;
  border-right: solid 1.5px #050505;
  position: absolute;
  left: -18px;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  border-radius: 1px;
}

@media (max-width: 700px) {
  .menu.compact {
    padding: 0 4px 4px 4px;
  }
  .menu.compact h1 {
    font-size: 16px;
    font-family: dnp-shuei-nmincho-std, sans-serif;
    margin: 2px 0;
  }
  .menu.compact h1 span {
    font-size: 12px;
    margin-left: 16px;
  }
  .menu.compact h2 {
    font-size: 12px;
  }
  .menu.compact nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
  }
  .menu.compact .contact {
    font-size: 12px;
    margin-top: 8px;
    padding: 2px;
  }
  .menu.compact .arrow::before {
    width: 4px;
    height: 4px;
    left: -12px;
  }
  .menu.compact .arrow::after {
    width: 4px;
    height: 4px;
    left: -16px;
  }
}

.photo {
  position: relative;
}

.photo .photobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
  position: absolute;
  top: 40px;
  right: 40px;
  padding: 16px;
}

@media (max-width: 700px) {
  .photo .photobox {
    width: calc(100vw - 32px);
    position: relative;
    top: 16px;
    left: 0;
    padding-bottom: 40px;
  }
}

.photo .photobox .modal {
  display: none;
}

.photo .photobox .modal.is-open {
  display: block;
}

.photo .photobox .modal__overlay {
  z-index: 99999;
  background: rgba(250, 250, 250, 0.7);
}

.photo .photobox .modal__container {
  width: auto;
  max-width: 99vw;
  height: auto;
  max-height: 99vh;
  padding: 8px;
  line-height: 1;
  border-radius: 0;
}

@media (max-width: 700px) {
  .photo .photobox .modal__container {
    padding: 4px;
  }
}

.photo .photobox > img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
}

.works {
  position: relative;
}

.works .workbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  position: absolute;
  top: 40px;
  right: 40px;
  padding: 16px;
}

@media (max-width: 700px) {
  .works .workbox {
    width: calc(100vw - 32px);
    position: relative;
    top: 0;
    left: 0;
  }
}

.works #app {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.works dt {
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.works dt p {
  text-decoration: underline;
  /*左から右*/
  /*中の要素*/
}

.works dt p.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@media (max-width: 700px) {
  .works dt p.bgextend {
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
  }
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.works dt p.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #050505;
}

@media (max-width: 700px) {
  .works dt p.bgLRextend::before {
    -webkit-animation-delay: 2.8s;
            animation-delay: 2.8s;
  }
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.works dt p span.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.works dd {
  margin-bottom: 16px;
}

.works dd .font_gray {
  color: #787878;
  font-size: 90%;
}

.works dd .shadow_box {
  width: 80%;
  margin: 8px 0 0 0;
  -webkit-box-shadow: 0px 0px 8px 4px #ccc inset;
          box-shadow: 0px 0px 8px 4px #ccc inset;
  padding: 8px;
}

@media (max-width: 700px) {
  .works dd .shadow_box {
    width: 90%;
  }
}

.works img {
  width: 120px;
  margin: 0 16px 0 0;
}

.works .material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
}

.profile {
  position: relative;
}

.profile .profilebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  position: absolute;
  top: 40px;
  right: 40px;
  padding: 16px;
}

@media (max-width: 700px) {
  .profile .profilebox {
    width: calc(100vw - 32px);
    position: relative;
    top: 0;
    left: 0;
  }
}

.whatisbon {
  position: relative;
}

.whatisbon .whatisbonbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  position: absolute;
  top: 40px;
  right: 40px;
  padding: 16px;
}

@media (max-width: 700px) {
  .whatisbon .whatisbonbox {
    width: calc(100vw - 32px);
    position: relative;
    top: 0;
    left: 0;
  }
}

.whatisbon .whatisbonbox .text_link {
  display: inline;
  text-decoration: underline;
}

:root {
  --animate-delay: 0.5s !important;
}
/*# sourceMappingURL=style.css.map */