header {
  background-color: transparent !important;
}
@media screen and (min-width: 601px) {
  header #sitelogo {
    opacity: 0;
    transition: all 0.3s;
  }
  header.scrollon #sitelogo {
    opacity: 1;
  }
}

#heroarea {
  display: flex;
  width: 100%;
  height: 100svh;
  align-items: flex-end;
  justify-content: center;
  background-image: url("/assets/images/hero.webp");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  transition: all 0.3ms;
  z-index: 0;
}
#heroarea .catchcopy {
  display: block;
  width: 90%;
  height: 90%;
  margin: auto auto 0 auto;
  background-image: url("/assets/images/back_bird_white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  z-index: 0;
}
#heroarea .catchcopy .subcopy1 {
  position: absolute;
  left: 15%;
  top: 10%;
  color: #63937f;
  padding: 0.35rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(2.5rem, 36px);
  text-shadow: 2px 6px 3px rgba(215, 215, 215, 0.8);
}
#heroarea .catchcopy .subcopy2 {
  position: absolute;
  right: 10%;
  top: 30%;
  color: #bba550;
  padding: 0.35rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(2.5rem, 36px);
  text-shadow: 2px 6px 3px rgba(215, 215, 215, 0.8);
}
#heroarea .catchcopy .maincopy {
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 30%;
  color: transparent;
  background-image: url("/assets/images/mainacatchcopy.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 100%;
  height: 8vw;
  margin-bottom: 0 !important;
}
#heroarea .catchcopy .scroll_down {
  position: absolute;
  bottom: 0px;
  left: 50%;
}
#heroarea .catchcopy .scroll_down a {
  position: absolute;
  left: 10px;
  bottom: 80px;
  color: #DCD48F;
  font-size: 0.6rem;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (min-width: 821px) {
  #heroarea .catchcopy .scroll_down a {
    bottom: 7.5vw;
  }
}
#heroarea .catchcopy .scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #DCD48F;
  animation: circlemove 2.6s ease-in-out infinite, cirlemovehide 2.6s ease-out infinite;
}
@media screen and (min-width: 821px) {
  #heroarea .catchcopy .scroll_down:before {
    animation: circlemove_pc 2.6s ease-in-out infinite, cirlemovehide 2.6s ease-out infinite;
  }
}
#heroarea .catchcopy .scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 10vw;
  background: #DCD48F;
}
@media screen and (max-width: 600px) {
  #heroarea {
    background-size: auto 100%;
    background-position: center top;
  }
  #heroarea .catchcopy {
    width: 100%;
    height: 100%;
    background-position: center top 30%;
  }
  #heroarea .catchcopy .subcopy1 {
    left: 55%;
    top: 13%;
    font-size: var(--font-size-18);
    writing-mode: vertical-rl;
  }
  #heroarea .catchcopy .subcopy2 {
    left: 35%;
    top: 20%;
    font-size: var(--font-size-18);
    writing-mode: vertical-lr;
  }
  #heroarea .catchcopy .maincopy {
    top: 73%;
    height: 12vw;
  }
  #heroarea .catchcopy .scroll_down a {
    bottom: 17vw;
  }
  #heroarea .catchcopy .scroll_down:after {
    height: 30vw;
  }
}

#maincontent .wrapper {
  padding-top: 5vw;
}
#maincontent .wrapper h2 {
  margin-bottom: 5vw;
  background-image: none !important;
}
#maincontent .wrapper h2 + p {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2.3;
}

.selectlist .wrapper h2 {
  background-image: none !important;
}
.selectlist .wrapper .chooselist {
  max-width: 700px;
}
.selectlist .wrapper .chooselist .item {
  background-size: contain;
  padding: 2rem 2rem;
  min-height: 150px;
}
.selectlist .wrapper .chooselist .item h3 {
  max-width: 65%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .selectlist .wrapper .chooselist .item {
    padding: 0.5rem;
    max-width: 90vw;
  }
}

@keyframes circlemove {
  0% {
    bottom: 30vw;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes circlemove_pc {
  0% {
    bottom: 10vw;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=index.css.map */