* {
  margin: 0;
  padding: 0;
}

body {
  background-image: url("../imgs/00.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
  background: url("../imgs/01.png") top right/40vw auto no-repeat, url("../imgs/02.png") bottom left/40vw auto no-repeat;
  animation: bg_fadeIn 2s ease-in-out;
  width: 100vw;
  height: 100vh;
  position: relative;
}
@keyframes bg_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .wrapper {
    background: url("../imgs/01.png") top right/60vw auto no-repeat, url("../imgs/02.png") bottom left/60vw auto no-repeat;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    background: url("../imgs/01.png") top right/80vw auto no-repeat, url("../imgs/02.png") bottom left/80vw auto no-repeat;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .wrapper {
    background: url("../imgs/01.png") top right/40vw auto no-repeat, url("../imgs/02.png") bottom left/40vw auto no-repeat;
  }
}
.wrapper .wrapper_inner {
  text-align: center;
  display: inline-block;
  align-self: center;
  width: 60vw;
}
@media screen and (max-width: 1024px) {
  .wrapper .wrapper_inner {
    width: 60vw;
  }
}
@media screen and (max-width: 480px) {
  .wrapper .wrapper_inner {
    width: 80vw;
  }
}
.wrapper .wrapper_inner h1 {
  display: inline-block;
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .wrapper .wrapper_inner h1 {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper .wrapper_inner h1 {
    width: 60%;
  }
}
.wrapper .wrapper_inner h1 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .wrapper .wrapper_inner h1 img {
    width: 80%;
  }
}
.wrapper .wrapper_inner .msg1 {
  margin: 0 0 6em 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .wrapper .wrapper_inner .msg1 {
    margin: 0 0 6em 0;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper .wrapper_inner .msg1 {
    margin: 0 0 3em 0;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .wrapper .wrapper_inner .msg1 {
    margin: 0 0 3.5em 0;
    width: 100%;
  }
}
.wrapper .wrapper_inner .msg1 img {
  width: 100%;
  height: auto;
}
.wrapper .wrapper_inner .msg2 {
  margin: 0 15% 8em;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .wrapper .wrapper_inner .msg2 {
    margin: 0 15% 8em;
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper .wrapper_inner .msg2 {
    margin: 0 10% 3em;
    width: 80%;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .wrapper .wrapper_inner .msg2 {
    width: 90%;
    margin: 0 5% 3em;
  }
}
.wrapper .wrapper_inner .msg2 img {
  width: 100%;
  height: auto;
}

.mode_sp {
  display: none;
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .mode_sp {
    display: none;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .mode_sp {
    display: block;
  }
}

.mode_pc {
  display: block;
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .mode_pc {
    display: block;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .mode_pc {
    display: none;
  }
}

.msg1_fadeIn {
  opacity: 0;
  animation: msg1_fadeIn 2s ease-in-out forwards;
}

@keyframes msg1_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.msg2_fadeIn {
  opacity: 0;
  animation: msg2_fadeIn 2s ease-in-out forwards;
  animation-delay: 2s;
}

@keyframes msg2_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.logo_fadeIn {
  opacity: 0;
  animation: logo_fadeIn 3s ease-in-out forwards;
  animation-delay: 3s;
}

@keyframes logo_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.logo_fadeIn h1 {
  margin: 0 0 3em 0;
}
@media screen and (max-width: 1024px) {
  .logo_fadeIn h1 {
    margin: 0 0 2em 0;
  }
}
@media screen and (max-width: 480px) {
  .logo_fadeIn h1 {
    margin: 0 0 2em 0;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .logo_fadeIn h1 {
    margin: 0 0 1.75em 0;
  }
}
.logo_fadeIn p {
  color: rgb(98, 98, 98);
  font-size: 1vw;
}
@media screen and (max-width: 1024px) {
  .logo_fadeIn p {
    font-size: 3vw;
  }
}
@media screen and (max-width: 480px) {
  .logo_fadeIn p {
    font-size: 3vw;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .logo_fadeIn p {
    font-size: 1.75vw;
  }
}

#modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  justify-content: center;
  align-items: center;
  animation: modal_fadeIn 1.25s ease-in-out forwards;
}

@keyframes modal_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-content {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  background: #fff;
  width: 70vw;
  padding: 4em;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .modal-content {
    width: 90vw;
    height: 90vh;
    padding: 2em;
    overflow: scroll;
  }
}
.modal-content p {
  font-size: 1vw;
  text-align: left;
  line-height: 1.8;
  margin: 0 0 2em 0;
}
@media screen and (max-width: 1024px) {
  .modal-content p {
    font-size: 16px;
  }
}

#openModalBtn {
  font-family: "Noto Serif JP", serif;
  font-size: 1vw;
  font-weight: 700;
  padding: 0.75em 2em;
  margin: 0 0 4em 0;
  background: rgba(255, 255, 255, 0.35);
  color: #000;
  border: solid 1px rgba(0, 0, 0, 0.35);
  border-radius: 100px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #openModalBtn {
    font-size: 16px;
  }
}

.box_right {
  text-align: right;
  line-height: 1.7;
  display: block;
  margin: 2em 0 0 0;
}

.closeModalBtn {
  font-family: "Noto Serif JP", serif;
  font-size: 1vw;
  font-weight: 700;
  padding: 10px 2em;
  background: rgba(255, 255, 255, 0.35);
  color: #000;
  border: solid 1px rgba(0, 0, 0, 0.35);
  border-radius: 100px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .closeModalBtn {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */