* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "yu-gothic-pr6n", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}

img {
  width: 100%;
  height: 100%;
}

.cursor {
  cursor: pointer;
}

header {
  position: relative;
  display: flex;
  z-index: 999;
}
header .header-logo {
  padding: 10px 0 0 10px;
  width: 130px;
  height: auto;
}
header .header-text {
  padding: 16px 0 0 0;
  font-size: 15px;
  color: #040000;
  margin: 0 20px 0 auto;
}
header .modal-btn {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 50px;
  height: 50px;
  z-index: 999;
}
header .modal-btn span {
  background-color: #E6276C;
}
header .modal-btn span:nth-of-type(1) {
  position: absolute;
  top: 10px;
  right: 0px;
  width: 50px;
  height: 4px;
  border-radius: 3px;
  transition: 0.5s;
}
header .modal-btn span:nth-of-type(1).active {
  rotate: 45deg;
  position: absolute;
  top: 25px;
  right: -1px;
  width: 50px;
  height: 4px;
  border-radius: 3px;
}
header .modal-btn span:nth-of-type(2) {
  position: absolute;
  top: 20px;
  right: 0px;
  width: 50px;
  height: 4px;
  border-radius: 3px;
}
header .modal-btn span:nth-of-type(2).active {
  display: none;
}
header .modal-btn span:nth-of-type(3) {
  position: absolute;
  top: 30px;
  right: 0px;
  width: 50px;
  height: 4px;
  border-radius: 3px;
  transition: 0.5s;
}
header .modal-btn span:nth-of-type(3).active {
  rotate: -45deg;
  position: absolute;
  top: 25px;
  right: 0px;
  width: 50px;
  height: 4px;
  border-radius: 3px;
}
header .modal {
  position: relative;
  position: fixed;
  top: 0;
  width: 100vw;
  height: calc(100vh - 60px);
  right: -100vw;
  transition: 1s;
  background-color: #E6276C;
  margin-top: 60px;
  text-align: left;
}
header .modal ul {
  display: flex;
  margin-top: 50px;
  flex-direction: column;
  gap: 60px;
}
header .modal ul li {
  border-bottom: 1px solid white;
  padding-left: 30px;
  position: relative;
}
header .modal ul li a {
  font-size: 24px;
  color: white;
}
header .modal ul li::after {
  content: "+";
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 30px;
  color: white;
}
header .modal.active {
  transform: translateX(-100vw);
  transition: 1s;
}

main {
  transform: translateY(-80px);
}
main .svgWave {
  transform: translateY(50px);
}
main .svgWave2 {
  transform: translateY(-30.4px);
}
main .body {
  display: flex;
  justify-content: space-between;
  padding: 0 2%;
  margin: 30px 0;
  background-color: #E6276C;
  position: relative;
  z-index: 99;
}
main .btn {
  width: 36%;
  aspect-ratio: 1/1;
}
main .btn-text {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 16.3px;
  color: #FFFFFF;
}
main .person {
  width: 24%;
  transform: translateY(-20px);
}

footer {
  width: 100%;
  height: auto;
  margin-top: -80px;
  transform: translateY(-60px);
}

@media screen and (min-width: 960px) {
  html {
    max-width: 960px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */