@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.mainContents {
  height: 100vh;
}
.mainContents.subContents section {
  width: 100%;
  height: 25vh;
}
.mainContents nav {
  display: grid;
  grid-template-columns: 5% 1fr 1.5fr 5%;
  align-items: center;
  color: black;
  min-height: 10vh;
}
.mainContents nav #logo {
  grid-column: 2/3;
  font-size: 24px;
}
.mainContents nav .menu {
  justify-self: end;
}
.mainContents nav .navmenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mainContents nav .navmenu li {
  list-style: none;
}
.mainContents nav .navmenu li a {
  color: #333;
  text-decoration: none;
}
.mainContents .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
}
.mainContents section {
  width: 100%;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainContents .sub-heading {
  height: 65%;
  width: 100%;
  position: relative;
}
.mainContents .sub-heading img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainContents .sub-heading::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-image: radial-gradient(#000 20%, transparent 0), radial-gradient(#000 20%, transparent 0);
  background-position: 0 0, 10px 10px;
  background-size: 4px 4px;
}
.mainContents .sub-heading .headline {
  position: absolute;
  font-size: 2.5vw;
  transform: translateY(-10%, -70%);
  z-index: 5;
  line-height: 1.6;
  background-image: linear-gradient(150deg, rgb(247, 166, 12) 10%, rgb(255, 34, 87) 40%, rgb(154, 39, 238) 68%, rgb(35, 102, 247) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.mainContents .hero {
  height: 65%;
  width: 100%;
  position: relative;
}
.mainContents .hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainContents .hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-image: radial-gradient(#000 20%, transparent 0), radial-gradient(#000 20%, transparent 0);
  background-position: 0 0, 10px 10px;
  background-size: 4px 4px;
}
.mainContents .hero .headline {
  position: absolute;
  font-size: 4vw;
  transform: translateY(-10%, -70%);
  z-index: 5;
  line-height: 1.6;
  background-image: linear-gradient(150deg, rgb(247, 166, 12) 10%, rgb(255, 34, 87) 40%, rgb(154, 39, 238) 68%, rgb(35, 102, 247) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.contents {
  position: relative;
  overflow: hidden;
}
.contents .circles {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #bbcfc8;
}
.contents .circles .circle {
  position: absolute;
  border-radius: 50%;
}
.contents .circles .circle.circle1 {
  background-color: green;
  width: 630px;
  height: 630px;
  margin: -315px 0 0 -315px;
}
.contents .circles .circle.circle2 {
  background-color: red;
  width: 420px;
  height: 420px;
  z-index: 1;
  margin: -220px 0 0 -220px;
}
.contents .circles .circle.circle3 {
  background-color: purple;
  width: 200px;
  height: 200px;
  z-index: 2;
  margin: -100px 0 0 -100px;
}
.contents .content {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #a216ff;
  mix-blend-mode: screen;
  z-index: 4;
  padding: 3% 5%;
}
.contents .content h1 {
  line-height: 1;
  width: 100%;
}
.contents .content.top-end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
  transition: background-color 0.7s ease-out;
}
.contents .content.top-end .text {
  font-weight: bold;
  font-size: 11.5vw;
}/*# sourceMappingURL=style.css.map */