@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  background-color: #F8F6F0;
  color: #333; /* RGB */
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
.contents_wrapper {
  max-width: 1240px;
  margin: 0 auto;
  height: auto;
}
.zen-kaku gothic new-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.zen-kaku gothic new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zen-kaku gothic new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.zen-kaku gothic new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.zen-kaku gothic new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
/*--------------------------------header------------------------------------------------*/
.header-title__mobile {
  display: none;
}
#g-nav {
  position: fixed;
  z-index: 999;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F2C30B;
  transition: all 0.6s;
  background-image: url("../images/common/image1-pc.png");
  background-repeat: no-repeat;
  background-position: 50% 120%;
  background-size: 80%;
}
@media(max-width:1100px) {
  #g-nav {
    background-image: url("../images/common/image1.png");
    background-repeat: no-repeat;
    background-position: 50% 101%;
    background-size: 320px;
  }
}
#g-nav.panelactive {
  top: 0;
}
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#g-nav ul h4 {
  font-size: 3.2rem;
  margin-bottom: 24px;
  font-family: "Outfit", "Lato", "sans-serif";
  font-weight: 600;
}
#g-nav li {
  list-style: none;
  text-align: center;
  background-color: #F8F6F0;
  margin-bottom: 16px;
  width: 320px;
  height: 80px;
}
#g-nav li a {
  font-family: "Outfit", "Lato", "sans-serif";
  color: #333;
  text-decoration: none;
  display: block;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 28px 0 32px;
  font-size: 2.4rem;
}
.g-nav__image1 {
  position: absolute;
  bottom: -200px;
  left: -10%;
  width: 40%;
}
.g-nav__image2 {
  position: absolute;
  bottom: -200px;
  right: -10%;
  width: 40%;
}
/*========= 【PC版】ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 40px;
  right: 60px;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background-color: #E36824;
  border-radius: 500px;
}
/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 28px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn1 span:nth-of-type(1) {
  top: 38px;
}
.openbtn1 span:nth-of-type(2) {
  top: 48px;
}
.openbtn1 span:nth-of-type(3) {
  top: 58px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 42px;
  left: 26px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 54px;
  left: 25px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
/*========= 【モバイル版】ボタンのためのCSS ===============*/
@media(max-width:800px) {
  .openbtn1 {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    width: 45%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
@media(max-width:500px) {
  .header-title__mobile {
    display: block;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 80px;
    padding-left: 24px;
    background-color: #F2C30B;
    text-align: left;
    font-family: "Outfit", "Lato", sans-serif;
  }
  .header-title__mobile a {
    text-decoration: none;
  }
  .header-title__mobile p {
    color: #333;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    line-height: 3rem;
    padding: 10px 0;
    font-weight: 500;
  }
  .mb-thanks {
    position: absolute;
    top: 67vh;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    font-size: 5vw;
    line-height: 8vw;
    font-weight: 500;
    font-family: "Outfit", "Lato", sans-serif;
  }
}
@media (max-width: 1024px) and (max-height: 600px) {
  #g-nav ul {
    top: 36%;
  }
  #g-nav li {
    height: 40px;
  }
  #g-nav li a {
    padding: 6px 0 12px;
  }
}
/*--------------------------------ART--------------------------------------*/
.section-art {
  width: 100%;
  height: auto;
  padding: 0px 100px 100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-art a {
  text-decoration: none;
  color: #07073A;
}
.section-art a:hover {
  opacity: 1;
}
.section-art h2 {
  margin-bottom: 24px;
  color: #345700;
}
.section-art h3 {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 16px;
  opacity: 0.8;
  color: #345700;
}
.section-art p {
  font-weight: bold;
  margin-bottom: 24px;
}
.click-here__art {
  position: absolute;
  width: 200px;
  top: 180px;
  right: 20vw;
}
.art-rabbit {
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 100px;
  z-index: 2;
}
.art-rabbit {
  width: 80%;
  margin: 0 auto;
}
.art-bg__blue {
  width: 560px;
  height: 560px;
  position: absolute;
  z-index: -1;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  background-color: #07073A;
  border-radius: 5000px;
}
.art-bg__green {
  width: 100%;
  height: 300px;
  position: absolute;
  z-index: 1;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  background-color: #345700;
}
/*-------------------------------うさぎ編集用------------------------------------------------*/
.cave {
  position: relative;
  margin: 0 auto;
  width: 400px;
  height: 480px;
  overflow: hidden;
}
.cave p {
  font-size: 2.4rem;
  margin-top: 40px;
  font-family: "Outfit", "Lato", "sans-serif";
  font-weight: 500;
}
.rabbit {
  position: absolute;
  left: 50%;
  top: 68%;
  z-index: 99;
  transform: translate(-50%, -50%) scale(1);
  width: 400px;
  height: auto;
  transition: transform 2s ease-in-out;
  cursor: pointer;
}
.rabbit.entering {
  transform: translate(-50%, -50%) scale(0.5);
}
@media (max-width: 1100px) {
  .section-art {
    padding: 0px 60px 100px;
  }
}
@media (max-width: 660px) {
  .art-bg__blue {
    width: 400px;
    height: 400px;
    top: 65%;
  }
  .art-bg__green {
    top: 85%;
  }
  .rabbit {
    top: 63%;
  }
  .cave {
    width: auto;
  }
  .section-art p {
    font-weight: 500;
    font-size: 1.4rem;
  }
}
@media (max-width: 500px) {
  .section-art {
    padding: 0px 40px 0px;
    margin-bottom: -40px;
  }
  .section-art p {
    margin-bottom: 0px;
  }
  .art-bg__blue {
    max-width: 320px;
    height: 320px;
    top: 65%;
  }
  .rabbit {
    width: 70%;
    top: 60%;
  }
  .art__click p {
    font-size: 2rem;
  }
}
/*--------------------------------contact------------------------------------*/
.section-contact {
  width: 100%;
  height: auto;
  padding: 0px 100px 0px;
  margin: 0 auto;
  position: relative;
  bottom: -1px;
  z-index: 1;
  background-color: #345700;
}
.section-contact h2 {
  margin-bottom: 24px;
  color: #F8F6F0;
}
.section-contact h3 {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 40px;
  opacity: 0.8;
  color: #F8F6F0;
}
.section-contact p {
  font-size: 2rem;
  letter-spacing: 1px;
  line-height: 3rem;
  font-weight: bold;
  color: #F8F6F0;
  margin-bottom: 24px;
}
.section-contact a {
  text-decoration: none;
}
.address-area {
  width: 90%;
  height: auto;
  background-color: #F8F6F0;
  margin: 0 auto;
  border-radius: 500px;
}
.address-area address {
  font-family: "Outfit", "Lato", sans-serif;
  font-style: normal;
  width: 100%;
  padding: 0px;
  font-size: 3vw;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 7.2rem;
  color: #345700;
}
@media (max-width: 1100px) {
  .section-contact {
    padding: 0px 0px 100px;
  }
}
@media (max-width: 500px) {
  .section-contact {
    padding: 0px;
  }
  .address-area address {
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding: 8px;
  }
  .section-contact p {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    line-height: 3rem;
  }
}
/*----------------------------------------footer----------------------------------------*/
.footer {
  width: 100%;
  height: 100px;
  background-color: #345700;
  padding: 100px;
  margin: 0 auto;
  position: relative;
  top: 0px;
  z-index: 100;
}
.footer-bg__green {
  width: 100%;
  /*height: 110px;*/
  position: absolute;
  top: -26%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin: 0 auto;
  background-color: #345700;
}
.footer-sns {
  width: 100%;
  text-align: left;
}
.footer-sns a {
  display: inline-block;
  width: 35px;
  margin-right: 40px;
}
.footer-sns a img {
  width: 100%;
}
.copyright {
  font-family: "Outfit", "Lato", sans-serif;
  width: 100%;
  text-align: right;
  color: #F8F6F0;
  letter-spacing: 1px;
  position: relative;
  top: -24px;
}
@media (max-width: 500px) {
  .footer {
    padding: 80px 10% 100px;
  }
  .footer-sns a {
    margin-right: 5%;
  }
  .copyright {
    text-align: right;
  }
}