* {
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.only-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

.only-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .only-sp {
    display: block;
  }
}

.sec {
  width: 100%;
  margin: 0 auto;
}
.sec--inner {
  width: 100%;
  max-width: 756px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec--inner {
    padding: 0 3.7666666667vw;
    max-width: 693px;
  }
}

.pc--nav {
  width: 100%;
  background-color: #00A040;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .pc--nav {
    display: none;
  }
}
.is-fixed .pc--nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  animation-name: navFixed;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-duration: 0.5s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-direction: normal;
  animation-play-state: running;
}
@keyframes navFixed {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pc--nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 50px;
}
.pc--nav ul li {
  margin-right: 5px;
}
.pc--nav ul li:last-child {
  margin-right: 0;
}
.pc--nav ul li a {
  display: block;
  padding: 19px 10px;
  line-height: 1;
  transition: 0.3s;
}
.pc--nav ul li a:hover {
  opacity: 0.8;
}

.sp--nav {
  position: relative;
  width: 100%;
  height: 75px;
  background-color: #fffbf8;
}
@media screen and (min-width: 769px) {
  .sp--nav {
    display: none;
  }
}
.sp--nav .hop--logo {
  position: absolute;
  text-align: center;
  z-index: 100;
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
}
.sp--nav .hop--logo img {
  width: 94px;
}
.sp--nav ul {
  display: block;
  position: absolute;
  opacity: 0;
  width: 100%;
  top: 0;
  left: 0;
  transform: translate(0, -100%);
  padding: 86px 14px 24px;
  background-color: #fffbf8;
  z-index: 150;
  transition: 0.3s;
}
.sp--nav ul li {
  margin-bottom: 16px;
  text-align: center;
}
.sp--nav ul li img {
  max-width: 346px;
}
.sp--nav .toggle--btn {
  position: absolute;
  cursor: pointer;
  z-index: 200;
  top: 50%;
  left: 28px;
  transform: translate(0, -50%);
}
.sp--nav .toggle--btn .border--wrap {
  position: relative;
  width: 39px;
  height: 21px;
}
.sp--nav .toggle--btn .border--wrap span {
  display: block;
  position: absolute;
  background-color: #313238;
  width: 100%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  border-radius: 2px;
  transition: 0.3s;
}
.sp--nav .toggle--btn .border--wrap span:nth-of-type(2) {
  margin-top: -9px;
}
.sp--nav .toggle--btn .border--wrap span:nth-of-type(3) {
  margin-top: 7px;
}
.sp--nav.open ul {
  transform: translate(0, 0);
  opacity: 1;
}
.sp--nav.open .border--wrap span:nth-of-type(1) {
  opacity: 0;
}
.sp--nav.open .border--wrap span:nth-of-type(2) {
  margin-top: -1px;
  transform: rotate(30deg);
}
.sp--nav.open .border--wrap span:nth-of-type(3) {
  margin-top: -1px;
  transform: rotate(-30deg);
}

.sec--title {
  text-align: center;
}
.sec--title a {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  margin: 48px 0 42px;
  transition: 0.3s;
}
.sec--title a:hover {
  opacity: 0.8;
}
.sec--title a img {
  max-width: 558px;
}
@media screen and (max-width: 768px) {
  .sec--title a {
    margin: 10.1333333333vw 0 9.6vw;
  }
  .sec--title a img {
    width: 71.3333333333vw;
    max-width: 100%;
  }
}

.sec--link {
  display: block;
  background-color: #00A040;
}
.sec--link a {
  display: block;
  cursor: pointer;
  width: 100%;
  padding: 35px 20px;
  text-align: center;
  line-height: 1;
  transition: 0.3s;
}
.sec--link a img {
  width: 120px;
}
.sec--link a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .sec--link a {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 20.4666666667vw;
    padding: 8.5866666667vw;
    text-align: center;
    line-height: 20.4666666667vw;
    transition: 0.3s;
  }
  .sec--link a img {
    width: 24.1990666667vw;
  }
  .sec--link a:hover {
    opacity: 0.8;
  }
}
.goldenstar .sec--link {
  background-color: #C08E29;
}
.reunion .sec--link {
  background-color: #A4A4A5;
}
.little .sec--link {
  background-color: #2AA7A3;
}
.furanomagical .sec--link {
  background-color: #84C251;
}

.sec--kv {
  position: relative;
  width: 100%;
}
.sec--kv img {
  width: 100%;
}

.sec--genealogy {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #FFFBF8;
}
.sec--genealogy .sec--inner {
  max-width: 960px;
}
.sec--genealogy .gl-des .title {
  text-align: center;
  margin-bottom: 116px;
}
.sec--genealogy .gl-des .text {
  text-align: left;
  margin-bottom: 45px;
}
.sec--genealogy .gl-des .img--box svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec--genealogy {
    padding-top: 0;
    padding-bottom: 6.1333333333vw;
    margin-bottom: 0;
  }
  .sec--genealogy .gl-des {
    padding: 14vw 0 14vw;
  }
  .sec--genealogy .gl-des .title {
    margin-bottom: 13.4666666667vw;
  }
  .sec--genealogy .gl-des .title img {
    width: 48.9333333333vw;
  }
  .sec--genealogy .gl-des .img--box img {
    width: 100%;
  }
  .sec--genealogy .gl-des .img--box svg {
    width: 100%;
    height: auto;
  }
  .sec--genealogy .gl-des .img--box .caption {
    text-align: center;
    margin-top: 7.2vw;
  }
  .sec--genealogy .gl-des .img--box .caption img {
    width: 46.0666666667vw;
  }
}
