@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  height: auto;
  vertical-align: middle;
}
body {
  color: #333333; /* RGB */
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2;
  background-color: #faf8f4
}
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}
.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}
.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}
.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
.kiwi-maru-medium {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 700
.quicksand-<uniquifier > {
  font-family: "Quicksand", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
/*ふわふわ*/
.fluffy1 {
  animation: bird1-animation 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes bird1-animation {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
.fluffy2 {
  animation: bird2-animation 1.7s ease-in-out infinite alternate-reverse;
}
@keyframes bird2-animation {
  0% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(8px);
  }
}
.pc-menu li:hover {
  transform: scale(1.1); /* 拡大 */
}
.logo-pc img:hover {
  transform: translateY(-6px);
}
/*ページトップボタン*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #186d6f;
  border-radius: 15px;
  width: 60px;
  height: 60px;
  font-family: Quicksand;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
#page-top a:hover {
  background: #f3b8b1;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateX(100px);
}
#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
/* Loading　*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #cae9e0;
  text-align: center;
  color: #fff;
}
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width: 260px;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------ヘッダー----------*/
.header {
  display: flex;
  justify-content: space-between;
}
.logo-pc {
  margin-top: 20px;
  padding-right: 3vw;
}
.logo-pc img {
  width: 130px;
  height: 124px;
}
.pc-menu {
  color: #186d6f;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  display: flex;
  padding-top: 60px;
  padding-right: 2vw;
}
.pc-menu li {
  padding-right: 4vw;
}
.blue-2birds {
  object-fit: cover;
}
.pc-hidden {
  display: none;
}
#g-nav {
  display: none;
}
/*--fadeIn*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*--fadeUp*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
/*----------mobile版ヘッダーとトップセクション----------*/
@media (max-width:960px) {
  #g-nav {
    display: block;
  }
  .logo-pc {
    width: 66px;
    height: 63px;
    margin: 15px 81vw 0 0;
  }
  /*=========グローバルナビゲーション ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
    background-color: #509c9e;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
    background-color: #f3b8b1;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
    background-color: #a5cd97;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  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: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  nav ul {
    list-style: none;
    text-align: center;
  }
  .small-birds {
    width: 57px;
    height: 35px;
    margin: 100px 0 0 15vw;
  }
  nav ul li a {
    display: inline-block;
    text-decoration: none;
    color: #333333;
    padding: 10px 10px 0 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e79f95;
  }
  .moko-tree {
    width: 81px;
    height: 96px;
    margin: 310px 30px 5vw 65vw;
  }
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100vh;
    background: #f2d4ce;
    border-top-right-radius: 150px;
    transition: all 0.8s;
  }
  #g-nav.panelactive {
    left: 0;
  }
  .logo-pc img {
    width: 66px;
    height: 63px;
  }
  .pc-menu {
    display: none;
  }
  .pc-hidden {
    display: block;
  }
}
/*----------フッター----------*/
.footer-blue-2birds {
  width: 83px;
  height: 79px;
  margin-left: 55vw;
}
.footer-illust {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  border: none;
  vertical-align: top;
}
.two-trees {
  width: 200px;
  height: 175px;
  border: none;
  vertical-align: top;
}
.houses-pc {
  width: 448px;
  height: 327px;
  border: none;
  vertical-align: top;
}
.section-footer_information1 {
  background-color: #cae9e0;
  border-top-left-radius: 100px;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}
.footer_information {
  background-color: #faf8f4;
  border-radius: 80px;
  text-align: center;
  padding: 40px 25px;
  margin-right: 8vw;
}
.footer-logo {
  width: 320px;
  height: 126px;
  margin-bottom: 30px;
}
.footer-address {
  letter-spacing: 0.12em;
  line-height: 1.7;
  font-size: 1.5rem;
  padding-bottom: 15px;
}
.tel-email {
  letter-spacing: 0.14em;
  line-height: 1.7;
  font-size: 1.5rem;
}
.footer_information2 {
  padding-left: 8vw;
  border-left: solid 2px #509c9e;
}
.instagram:hover {
  transform: translateY(-5px);
}
.X:hover {
  transform: translateY(-5px);
}
.LINE:hover {
  transform: translateY(-5px);
}
.sns {
  background-color: #faf8f4;
  border-radius: 20px;
  text-align: center;
  padding: 20px 0 40px;
  width: 320px;
  margin-bottom: 30px;
}
.sns-announce {
  color: #186d6f;
}
.sns-announce span {
  font-size: 2.2rem;
}
.sns-icon {
  padding-top: 20px;
}
.instagram {
  margin-right: 20px;
  width: 38px;
  height: 38px;
}
.X {
  margin-left: 20px;
  width: 38px;
  height: 38px;
}
.line {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.three-leaves {
  width: 38px;
  height: 47px;
  margin-right: 20px;
}
.line-announce1 {
  color: #186d6f;
  margin-right: 10px;
}
.LINE {
  width: 40px;
  height: 40px;
}
.blog {
  display: flex;
}
.pink-flower {
  width: 27px;
  height: 53px;
  margin: 8px 25px 0 0;
}
.blog-description {
  color: #186d6f;
  text-align: left;
  width: 320px;
}
.blog-url {
  text-decoration: underline #faf8f4;
  color: #62A9AB;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.blog-url:hover {
  transform: translateY(-5px);
}
.section-footer_sitemap {
  background-color: #7dc8ca;
  padding: 40px 0 10px;
}
.section-footer_sitemap ul {
  display: flex;
  justify-content: center;
  color: #186d6f;
  margin-bottom: 60px;
}
.section-footer_sitemap ul li {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 2vw;
}
.footer_sitemap1 {
  width: 123px;
}
.footer_sitemap2 {
  width: 153px;
}
.footer_sitemap3 {
  width: 123px;
}
.footer_sitemap4 {
  width: 84px;
}
.copyright {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  font-family: Quicksand;
}
.footer-menu li:hover {
  transform: scale(1.1);
}
/*----------mobile版フッターセクション----------*/
@media (max-width:960px) {
  .footer-blue-2birds {
    width: 50px;
    height: 46px;
    margin-left: 55vw;
  }
  .two-trees {
    width: 87px;
    height: 72px;
    margin-left: 10px;
  }
  .houses-pc {
    width: 202px;
    height: 148px;
  }
  .section-footer_information1 {
    border-top-left-radius: 40px;
    padding: 30px 0;
    flex-direction: column-reverse;
  }
  .footer_information2 {
    padding-left: 0;
    border-left: none;
    margin-bottom: 60px;
  }
  .sns {
    margin: 40px auto;
  }
  .sns-icon {
    padding-top: 10px;
  }
  .sns-announce {
    font-size: 1.6rem;
  }
  .sns-announce span {
    font-size: 2.0rem;
  }
  .line {
    justify-content: center;
  }
  .blog {
    justify-content: center;
  }
  .blog-description {
    width: 250px;
  }
  .footer_information {
    margin: 0 auto;
    width: 335px;
  }
  .footer-logo {
    width: 295px;
    height: 100%;
  }
  .section-footer_sitemap ul {
    display: none;
  }
}