@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/swiper@12/swiper-bundle.min.css");
/* スマホ用のヘッダー高さ */
:root {
  --header-h: 74px;
}

/* PC用 */
@media (min-width: 769px) {
  :root {
    --header-h: 82px;
  }
}
html {
  font-size: 62.5%; /* 16px × 0.625 = 10px → 1rem = 10px */
}

/* ページ内リンクのスクロール位置調整 */
body {
  font-size: 1.8rem; /* = 18px */
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #fff;
  line-height: 2.25;
  color: #000;
}
body.is-fixed {
  overflow: hidden;
}

::selection {
  color: #fff;
  background-color: #49a857;
}

img {
  max-width: 100%;
}

._inner {
  width: 1110px;
  margin: 0 auto;
  position: relative;
}

.hash-wait body {
  visibility: hidden;
}

._head {
  position: relative;
}
._head .bar {
  position: absolute;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 7px;
  background: #fff;
  overflow: hidden;
  bottom: -5px;
}
._head .bar .slider-bar {
  position: absolute;
  top: 0;
  left: 0;
  /* 画面左端 -> インナー右端 までの距離 */
  width: calc(50vw + 1110px / 2);
  height: 100%;
  background: #8B8433;
  /* 左 → 右 */
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  will-change: transform;
  /* 右 → 左（右から出す場合はこのクラスを付与） */
}
._head .bar .slider-bar.active {
  transform: translateX(0);
}
._head .bar .slider-bar.is-right {
  left: auto;
  right: 0;
  /* 距離は同じ：画面右端 -> インナー左端 */
  width: calc(50vw + 1110px / 2);
  transform: translateX(100%);
}
._head .bar .slider-bar.is-right.active {
  transform: translateX(0);
}
._head ._inner {
  width: 1144px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  line-height: 1;
  padding-bottom: 15px;
  max-width: 1144px;
  padding-left: 17px;
  padding-right: 17px;
}
._head ._inner.plantsIcon:before, ._head ._inner.animalsIcon:before, ._head ._inner.artIcon:before {
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  margin-right: 14px;
  background-size: contain;
}
._head ._inner.plantsIcon:before {
  background-image: url("../images/common/icon_plants.svg");
  position: relative;
  top: 0px;
}
._head ._inner.animalsIcon:before {
  background-image: url("../images/common/icon_animals.svg");
  position: relative;
  top: 0px;
}
._head ._inner.artIcon:before {
  background-image: url("../images/common/icon_art.svg");
  position: relative;
  top: 0px;
  width: 50px;
  height: 60px;
}
._head ._inner .inTitle {
  display: flex;
  align-items: flex-end;
}
._head ._inner .en {
  font-size: 4rem;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
}
._head ._inner .jp {
  font-size: 2.3rem;
  margin-left: 25px;
  display: block;
  flex: 1;
  font-weight: 500;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 33px;
  position: relative;
  position: fixed;
  width: 100%;
  z-index: 480;
  background-color: #fff;
}
.header .logo {
  line-height: 1;
  position: relative;
  z-index: 2;
  margin-right: 15px;
  margin-top: -4px;
}
.header .logo img {
  width: 208px;
}
.header .nav-wrapper {
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.header .nav-wrapper .navMenu ul {
  display: flex;
}
.header .nav-wrapper .navMenu ul li {
  margin-left: clamp(20px, 3vw, 40px);
  font-weight: 600;
}
.header .nav-wrapper .navMenu ul li:first-child {
  margin-left: 0;
}
.header .nav-wrapper .navMenu ul li a {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .nav-wrapper .navMenu ul li a:hover {
  color: #338B5B;
}
.header .nav-wrapper .navMenu ul li a:hover .icon:before {
  background-color: #338B5B;
}
.header .nav-wrapper .navMenu ul li a .icon {
  display: block;
  margin-right: 9px;
  position: relative;
  min-width: 20px;
}
.header .nav-wrapper .navMenu ul li a .icon:before {
  display: block;
  width: 30px;
  height: 30px;
  content: "";
  background-color: #000;
  mask-repeat: no-repeat;
}
.header .nav-wrapper .navMenu ul li a .iconPlants:before {
  mask-image: url(../images/common/icon_plants.svg);
  width: 38px;
  height: 38px;
}
.header .nav-wrapper .navMenu ul li a .iconAnimal:before {
  mask-image: url(../images/common/icon_animals.svg);
  width: 42.5px;
  height: 41px;
}
.header .nav-wrapper .navMenu ul li a .iconArt:before {
  mask-image: url(../images/common/icon_art.svg);
  width: 36px;
  height: 44px;
}
.header .nav-wrapper .navMenu ul li a .text {
  font-size: 1.1rem;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  line-height: 1.1;
}
.header .nav-wrapper .navMenu ul li a .textJP {
  display: none;
}

.subMainv {
  opacity: 0;
  transition: opacity 0.8s ease;
  padding-top: var(--header-h);
}
.subMainv.is-show {
  opacity: 1;
}

footer .copy ._inner {
  text-align: center;
  padding: 14px 10px;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #fff;
  width: auto;
}

.scrollTop {
  position: fixed;
  right: 10px;
  bottom: 15px;
  font-size: 50px;
  color: #fff;
  background: #fee64a;
  width: 55px;
  height: 55px;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 25px rgba(3, 3, 3, 0.37);
}
.scrollTop .pagetop__arrow {
  display: block;
  height: 13px;
  width: 13px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}

/*このクラスが付与されると表示する*/
.scrollTop.active {
  opacity: 1;
  visibility: visible;
}

.fade-block,
.fade-block2 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(70px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.fade-block2 {
  transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
}

.fade-block.is-show,
.fade-block2.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fade-block-opacity {
  opacity: 0;
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.fade-block-opacity.is-show {
  opacity: 1 !important;
  transform: translateY(0);
}

@keyframes slideIn {
  to {
    left: 0;
  }
}
/* タブレット以下（1024px以下） */
@media (max-width: 1110px) {
  ._head::before {
    width: 100%;
  }
  ._head ._inner {
    width: auto;
    display: flex;
    flex-direction: row;
  }
}
.black-bg {
  display: none;
}

.pc-only-show {
  display: block;
}

.sp-only-show {
  display: none;
}

@media (max-width: 868px) {
  .header .nav-wrapper .navMenu ul li {
    margin-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .pc-only-show {
    display: none;
  }
  .sp-only-show {
    display: block;
  }
  ._inner {
    width: auto;
  }
  .hamburger {
    position: absolute;
    right: 20px;
    top: 20px;
    top: 50%;
    transform: translate(0, -50%);
    width: 40px;
    height: 24px;
    cursor: pointer;
    z-index: 300;
  }
  .hamburger__line {
    position: absolute;
    width: 40px;
    height: 2px;
    right: 0;
    background-color: #000;
    transition: all 0.2s;
  }
  .hamburger__line--1 {
    top: 1px;
  }
  .hamburger__line--2 {
    top: 11px;
  }
  .hamburger__line--3 {
    top: 21px;
  }
  /*ハンバーガーがクリックされたら*/
  .open .hamburger__line--1 {
    transform: rotate(-20deg);
    top: 11px;
  }
  .open .hamburger__line--2 {
    opacity: 0;
  }
  .open .hamburger__line--3 {
    transform: rotate(20deg);
    top: 11px;
  }
  /* 
  navMenu(ナビ)
  =================================== */
  .navIn {
    position: fixed;
    right: 0;
    /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: -100%;
    width: 100%;
    /* 出てくるスライドメニューの幅 */
    height: calc(100dvh - 70px);
    background-color: #fff;
    transition: all 0.4s;
    z-index: 200;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
  }
  /*ハンバーガーがクリックされたら右からスライド*/
  .open .navIn {
    top: 70px;
  }
  /* 
  black-bg(ハンバーガーメニュー解除用bg)
  =================================== */
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
    display: block;
  }
  /*ハンバーガーメニューが開いたら表示*/
  .open .black-bg {
    opacity: 0.3;
    visibility: visible;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: var(--header-h);
    top: 0;
  }
  .header .logo {
    padding: 28px;
    height: var(--header-h);
    padding-left: 17px;
    padding-right: 17px;
    background: #fff;
    width: 100%;
    z-index: 4;
    margin-right: 0;
  }
  .header .nav-wrapper {
    z-index: 3;
  }
  .header .nav-wrapper .navMenu ul {
    flex-direction: column;
    overflow-y: auto;
    height: 95dvh;
  }
  .header .nav-wrapper .navMenu ul li {
    margin-left: 0;
  }
  .header .nav-wrapper .navMenu ul li.plantsNav a {
    background: url(../images/common/icon_plants.svg) no-repeat 25px center;
    background-size: 42px auto;
    padding-left: 80px;
  }
  .header .nav-wrapper .navMenu ul li.animalsNav a {
    background: url(../images/common/icon_animals.svg) no-repeat 25px center;
    background-size: 42px auto;
    padding-left: 80px;
  }
  .header .nav-wrapper .navMenu ul li.artNav a {
    background: url(../images/common/icon_art.svg) no-repeat 25px center;
    background-size: 42px auto;
    padding-left: 80px;
  }
  .header .nav-wrapper .navMenu ul li a {
    min-height: 78px;
    width: 100%;
    padding-left: 24px;
    border-bottom: 4px solid #8B8433;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .header .nav-wrapper .navMenu ul li a:hover {
    color: #000;
  }
  .header .nav-wrapper .navMenu ul li a .icon {
    display: none;
  }
  .header .nav-wrapper .navMenu ul li a .text {
    font-size: 2rem;
    line-height: 1;
  }
  .header .nav-wrapper .navMenu ul li a .textJP {
    display: block;
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 9px;
  }
  .header .nav-wrapper .navMenu ul li.plantsNav a, .header .nav-wrapper .navMenu ul li.animalsNav a, .header .nav-wrapper .navMenu ul li.artNav a {
    border-color: #338B5B;
  }
  .header .nav-wrapper.open {
    z-index: 1;
  }
  .open .navMenu {
    top: 82px;
  }
  ._head ._inner {
    width: auto;
  }
  ._head .bar {
    height: 4px;
  }
  ._head:before {
    width: 100%;
    transform: translate(0, 0);
  }
  ._head.right:before {
    left: 0;
    right: auto;
    transform: translate(0, 0);
  }
  ._head ._inner {
    width: auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 17px;
    align-items: center;
  }
  ._head ._inner .inTitle {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  ._head ._inner .jp {
    margin-left: 0;
    font-size: 1.6rem;
    margin-top: 7px;
    font-weight: 500;
  }
  ._head ._inner .en {
    font-size: 2.6rem;
    line-height: 1.3;
  }
}
/* スマホ以下（540px以下） */
@media (max-width: 540px) {
  ._head ._inner {
    width: auto;
  }
  ._head:before {
    height: 4px;
  }
}
/* スマホ以下（350px以下） *//*# sourceMappingURL=common.css.map */