@charset "UTF-8";
html {
}

body {
  min-width: 320px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 240%;
  color: #595959;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

img {
  width: 100%;
  vertical-align: bottom;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  padding: 20px;
  display: flex;
  gap: 15px;
}

/* ハンバーガーボタン */
.hamburger-btn {
  background: #fff;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, .16);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1002;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: black;
  transition: all 0.3s ease;
}

/* ハンバーガーメニューがアクティブな時の×マーク */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* メニューオーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background: #00b7de;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.menu-overlay.active {
  transform: translateX(0);
}

/* メニューコンテンツ */
.menu-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active .menu-content {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}

.menu-item {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  transform: translateY(30px);
  opacity: 0;
}

.menu-item+.menu-item {
  border-top: 1px solid #ccc;
}

.menu-overlay.active .menu-item {
  transform: translateY(0);
  opacity: 1;
}

.menu-overlay.active .menu-item:nth-child(1) {
  transition-delay: 0.4s;
}

.menu-overlay.active .menu-item:nth-child(2) {
  transition-delay: 0.45s;
}

.menu-overlay.active .menu-item:nth-child(3) {
  transition-delay: 0.5s;
}

.menu-overlay.active .menu-item:nth-child(4) {
  transition-delay: 0.55s;
}

.menu-overlay.active .menu-item:nth-child(5) {
  transition-delay: 0.6s;
}

.menu-overlay.active .menu-item:nth-child(6) {
  transition-delay: 0.65s;
}

.menu-item:hover {
  color: #ccc;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 20px;
  padding-right: 20px;
  transition-delay: unset !important;
}

.menu-item:last-child {
  border-bottom: none;
}

/* 背景のぼかし */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.backdrop.active {
  opacity: 1;
  visibility: visible;
}

.btn-main {
  width: 100%;
  max-width: 420px;
}

.btn-main a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border-radius: 999px;
  font-size: 2rem;
  transition: .4s;
}

.btn-main a:hover {
  opacity: .7;
}

.fv-wrap {
  height: 100%;
  max-height: 100svh;
  overflow: hidden;
}

.fv-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.intro {
  position: relative;
  padding: 8rem 0;
}

.intro-back {
  display: flex;
  position: absolute;
  inset: 0;
  width: 100%;
}

.intro-back_inner {
  width: 100%;
  overflow: hidden;
}

.intro-back_inner img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.intro-txt {
  position: relative;
}

.intro-txt h2 {
  font-size: 3.2rem;
  color: #fff;
  text-align: center;
  line-height: 160%;
  margin-bottom: 2rem;
}

.intro-txt p {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  line-height: 210%;
}

.intro-arw {
  position: absolute;
  top: 30%;
  right: calc(50% + 160px);
  width: 150px;
}

.park {
  overflow: hidden;
}

.park-01_wrap {
  position: relative;
  padding: 6rem calc((100% - 1000px) / 2);
}

.park-01_wrap h2 {
  position: relative;
  max-width: 630px;
  z-index: 1;
}

.park-01_wrap h3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  line-height: 180%;
  color: #00b7de;
  margin-top: 4rem;
  z-index: 1;
}

.park-01_wrap h3 img {
  width: 105px;
}

.park-01_img {
  position: absolute;
  top: 60px;
  left: calc(50% + 40px);
  width: 530px;
}

.park-02 {
  background: #00b7de;
}

.park-02_wrap {
  position: relative;
  padding: 6rem calc((100% - 1000px) / 2) 0;
}

.park-02_txt {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  color: #fff;
}

.park-02_jp {
  width: 60%;
  font-size: 1.9rem;
}

.park-02_en {
  width: 40%;
  font-size: 75%;
  line-height: 200%;
}

.park-02_main {
  display: flex;
  align-items: center;
}

.park-02_info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 55%;
}

.park-02_illust {
  position: relative;
  width: 45%;
}

.park-02_illust a {
  position: absolute;
  top: 24%;
  right: 0;
  display: block;
  width: 36%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: 0.3s;
}

.park-02_illust a:hover {
  opacity: .15;
}

.park-02_bubble {
  margin-top: -6vw;
  background-image: url("../images/back_texture.webp");
}

.park-02_bubble img {
  background: linear-gradient(to bottom, #00b7de 50%, transparent 50%);
}

.worker-wrap {
  padding: 6rem calc((100% - 1000px) / 2);
}

.worker-wrap .btn-main a {
  color: #935e29;
}

.worker-app {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem 5rem;
  background: #935e29;
  border-radius: 3rem;
}

.worker-app p {
  font-size: 1.8rem;
  color: #fff;
  line-height: 180%;
}

.worker-main_txt h3 {
  font-size: 3rem;
  text-align: center;
  color: #ed8084;
  margin: 3rem 0;
}

.worker-main_txt p {
  padding-inline: 8rem;
}

.worker {
  background-image: url("../images/back_texture.webp");
}

.other h2 {
  font-size: 3rem;
  color: #665000;
  text-align: center;
  background-image: url("../images/back_texture.webp");
}

.other-triangle {
  width: 100%;
  height: 8rem;
  margin-bottom: -8rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-image: url("../images/back_texture.webp");
}

.other-01 {
  background: #00608b;
}

.other > div > h3 {
  font-size: 4.4rem;
  line-height: 120%;
  color: #fff;
  text-align: center;
}

.other-01 > p {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  margin-top: 4rem;
}

.other-01_main {
  padding: 6rem calc((100% - 1000px) / 2) 8rem;
}

.other-01_main li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 3rem;
  overflow: hidden;
}

.other-01_main li:first-of-type {
  margin-bottom: 3rem;
}

.other-01_txt {
  width: 55%;
  padding: 0 2rem 0 6rem;
}

.other-01_txt h4 {
  font-size: 4rem;
  color: #00608b;
  line-height: 130%;
  margin-bottom: 2rem;
}

.other-01_txt h4 sub {
  display: block;
  font-size: 60%;
}

.other-01_txt p {
  font-size: 2rem;
}

.other-01_img {
  width: 45%;
}

.other-01_img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.other-02 {
  background: #488655;
}

.other-02_main {
  padding: 6rem calc((100% - 1000px) / 2) 8rem;
}

.other-02_main > p {
  font-size: 2.6rem;
  color: #fff;
  margin: 3rem 0;
}

.other-02_txt {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 6rem;
  font-size: 2.6rem;
  background: #fff;
  border-radius: 3rem;
}

.other-02_txt_ttl {
  color: #488655;
}

.other-02_txt_inner dl {
  display: flex;
  flex-wrap: wrap;
}

.other-02_txt_inner dl:nth-of-type(2) {
  margin-bottom: 2rem;
}

.other-02_txt_inner dl dt {
  color: #488655;
}

.other-02_txt_inner p {
  font-size: 2rem;
}

.other-02_main .btn-main {
  margin-inline: auto;
}

.other-02_main .btn-main a {
  color: #488655;
}

.foot-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  height: 100lvh;
  background-image: url("../images/foot_back.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.foot-ttl {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 290px;
}

.foot-logo {
  width: 100%;
  max-width: 400px;
}

.copy {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}
