.header__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__menu > * {
  min-height: 0%;
}

.contents__container, .action__container, .news__container, .statement__container {
  box-sizing: content-box !important;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .contents__container, .action__container, .news__container, .statement__container {
    max-width: 100%;
  }
}

.float__link, .contents__info-link, .header__logo-link, .header__menu, .header__navlink {
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
.float__link:hover, .contents__info-link:hover, .header__logo-link:hover, .header__menu:hover, .header__navlink:hover {
  opacity: 0.7;
}

.contents__bg-pk, .contents__bg-bl, .contents__bg-gr, .contents__info-mirai, .contents__info-about, .action__tree, .action__tree-bg, .action__women, .action__community, .action__life, .news__txt, .statement__contents, .statement__cloud, .statement__cloud--gr, .statement__cloud--pk, .statement__cloud--ye, .main__hdg {
  transform: translate(var(--beforeX), var(--beforeY));
  opacity: 0;
  transition: opacity 1s, transform 1s;
}

.jsIsShow .contents__bg-pk, .jsIsShow .contents__bg-bl, .jsIsShow .contents__bg-gr, .jsIsShow .contents__info-mirai, .jsIsShow .contents__info-about, .jsIsShow .action__tree, .jsIsShow .action__tree-bg, .jsIsShow .action__women, .jsIsShow .action__community, .jsIsShow .action__life, .jsIsShow .news__txt, .jsIsShow .statement__contents, .jsIsShow .statement__cloud, .jsIsShow .statement__cloud--gr, .jsIsShow .statement__cloud--pk, .jsIsShow .statement__cloud--ye, .jsIsShow .main__hdg {
  transform: translate(var(--afterX), var(--afterY));
  opacity: 1;
}

.header__menu-icon--close, .header__menu-icon--open {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  transition: opacity 0.3s, visibility 0.3s;
}

.header__navlink {
  border: none;
  background-color: transparent;
  padding-bottom: 4px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__navlink {
    padding-top: 18px;
    padding-bottom: 18px;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1;
    text-align: left;
    font-weight: 500;
    background-image: url(/common/images/sp/header_icon_arrow.png);
    background-repeat: no-repeat;
    background-position: right bottom 20px;
    background-size: 17px;
  }
}
.header__navlink::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -4px;
  background-color: #000000;
  transition: opacity 0.3s;
  opacity: 0;
}

/* header:start */
.header {
  padding-top: 18px;
  padding-bottom: 20px;
  width: 100%;
  position: fixed;
  z-index: 10;
  transform: translateY(-100%);
  transition: transform 0.5s;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .header {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header.jsVisible {
  transform: translateY(0);
}
.header__container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__container {
    padding-left: 18px;
    padding-right: 0;
  }
}
@media screen and (max-width: 375px) {
  .header__container {
    padding-left: 4.8vw;
  }
}
.header__logo {
  display: block;
  width: 48px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    padding-bottom: 15px;
    width: 29px;
  }
}
@media screen and (max-width: 768px) {
  .header__navcontainer {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1001;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    max-height: calc(100vh - 90px);
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    background-color: #ffffff;
    transition: transform 0.5s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(100%);
    pointer-events: none;
  }
}
.header__navcontainer.isOpenedMenu {
  transform: translateX(0);
  pointer-events: unset;
}
.header__menubg {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: calc(100vh - 90px);
  height: calc(100dvh - 90px);
  background-color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 768px) {
  .header__menubg {
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
  }
}
.header__menubg.isOpenedMenu {
  opacity: 1;
  pointer-events: unset;
}
.header__menu {
  padding-right: 1px;
  width: 60px;
  height: 60px;
  background-color: transparent;
  display: block;
  position: relative;
  right: 0;
  border: none;
}
.header__menu-icon--close {
  opacity: 0;
  visibility: hidden;
}
.header__menu.isOpenedMenu .header__menu-icon--open {
  opacity: 0;
  visibility: hidden;
}
.header__menu.isOpenedMenu .header__menu-icon--close {
  opacity: 1;
  visibility: visible;
}
.header__navlist {
  padding-bottom: 8px;
  display: flex;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .header__navlist {
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    width: 90.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .header__navlistitem {
    border-bottom: 1px solid #000000;
  }
}
.header__navlistitem:not(:first-child) {
  margin-left: 30px;
}
@media screen and (max-width: 1080px) {
  .header__navlistitem:not(:first-child) {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__navlistitem:not(:first-child) {
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) {
  .header__navlink.jsNavHere::before {
    opacity: 1;
  }
}

/* header:end */
.mv__illust, .mv__title, .mv__logo, .mv__tree, .mv__copy {
  position: absolute;
  display: block;
  height: 100%;
  aspect-ratio: 1440/800;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .mv__illust, .mv__title, .mv__logo, .mv__tree, .mv__copy {
    aspect-ratio: 750/1334;
  }
}

/* mv:start */
#mv.jsMvHide {
  opacity: 0;
}

.mv {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1440px;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: sticky;
}
.mv__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.mv__contents {
  width: 100%;
  max-height: 100vh;
  aspect-ratio: 1440/800;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv__contents {
    max-height: 100svh;
    aspect-ratio: 750/1334;
  }
}
.mv__scroll {
  margin-bottom: 0.8333333333%;
  height: 3.625%;
  aspect-ratio: 68/29;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .mv__scroll {
    margin-bottom: 0;
    aspect-ratio: 110/47;
    bottom: 11.5442278861%;
    max-height: 47px;
  }
}
.mv__scroll-ar01 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollAnime 1.2s steps(1) infinite;
}
.mv__scroll-ar02 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollAnime2 1.2s steps(1) infinite;
}
@keyframes scrollAnime {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollAnime2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* mv:end */
/* main:start */
.main {
  opacity: 0;
  position: relative;
  padding-top: 30vh;
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 0;
  }
}
.main.jsAnimeEnded {
  opacity: 1;
  z-index: 1;
  top: 0;
}
.main__item {
  width: 100%;
}
.main__hdg {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  z-index: 2;
  position: absolute;
  left: 50%;
  --beforeX: -50%;
  --afterX: -50%;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #70583e;
}
@media screen and (max-width: 768px) {
  .main__hdg {
    position: relative;
    font-size: 1.7rem;
    text-align: center;
  }
}
.main__scrollpadding {
  height: 50vh;
}
@media screen and (max-width: 768px) {
  .main__scrollpadding {
    height: 0;
  }
}

/* main:end */
.statement__cloud--ye, .statement__cloud--pk, .statement__cloud--gr, .statement__cloud {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
}

/* statement:start */
.statement {
  padding-top: 90px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .statement {
    padding-top: 60px;
  }
}
.statement::before {
  content: "";
  display: block;
  width: 100%;
  height: 240px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  background-image: url(/top/images/pc/statement_bg_cloud-section.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media screen and (max-width: 1920px) {
  .statement::before {
    background-size: 1920px;
  }
}
@media screen and (max-width: 768px) {
  .statement::before {
    top: 99.5%;
    background-image: url(/top/images/sp/statement_bg_cloud-section.png);
    height: 124px;
    background-size: cover;
  }
}
@media screen and (max-width: 375px) {
  .statement::before {
    height: 33.0666666667vw;
  }
}
.statement__container {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .statement__container {
    padding-top: 0;
  }
}
.statement__contents {
  padding-top: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition-delay: 0.8s;
}
@media screen and (max-width: 768px) {
  .statement__contents {
    padding-top: 100px;
  }
}
.statement__copy {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .statement__copy {
    font-size: max(2.0833333333vw, 2.1rem);
  }
}
@media screen and (max-width: 768px) {
  .statement__copy {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 375px) {
  .statement__copy {
    font-size: 6.4vw;
  }
}
.statement__txt {
  margin-top: 6.3888888889%;
  font-size: 2rem;
  line-height: 2.3;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 1440px) {
  .statement__txt {
    font-size: max(1.3888888889vw, 1.4rem);
  }
}
@media screen and (max-width: 768px) {
  .statement__txt {
    margin-top: 28px;
    font-size: 1.5rem;
    line-height: 2.3;
  }
}
@media screen and (max-width: 375px) {
  .statement__txt {
    margin-top: 7.4666666667vw;
    font-size: 4vw;
  }
}
.statement__about {
  margin-top: 3.8194444444%;
  margin-left: auto;
  margin-right: auto;
  width: 52.7777777778%;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .statement__about {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
    width: 240px;
  }
}
.statement__about-logo {
  margin-right: 24px;
  width: 32.3684210526%;
}
@media screen and (max-width: 768px) {
  .statement__about-logo {
    margin-right: 0;
    width: 166px;
  }
}
.statement__about-txt {
  font-size: 1.2rem;
  line-height: 1.4166666667;
  flex: 1;
}
@media screen and (max-width: 1440px) {
  .statement__about-txt {
    font-size: max(0.8333333333vw, 1rem);
  }
}
@media screen and (max-width: 768px) {
  .statement__about-txt {
    margin-top: 22px;
    font-size: 0.9rem;
    line-height: 1.4444444444;
  }
}
.statement__bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.statement__cloud {
  position: relative;
}
@media screen and (max-width: 768px) {
  .statement__cloud {
    position: absolute;
  }
}
.statement__cloud--gr {
  transition-delay: 0.3s;
}
.statement__cloud--pk {
  transition-delay: 0.5s;
}
.statement__cloud--ye {
  transition-delay: 0.5s;
}
.statement.jsIsShow .statement__contents {
  opacity: 1;
  transform: translateY(0);
}

/* statement:end */
/* news:start */
.news {
  padding-top: 240px;
  position: relative;
  z-index: 1;
  background-image: url(/top/images/pc/news_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media screen and (max-width: 1920px) {
  .news {
    background-size: 1920px;
  }
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 124px;
    background-image: url(/top/images/sp/news_bg-topleft.png), url(/top/images/sp/news_bg-topright.png), url(/top/images/sp/news_bg-bottom.png), linear-gradient(#f5eec4, #f5eec4);
    background-position: left top 45px, right top 30px, right bottom, center top;
    background-size: 375px, 375px, 375px, cover;
  }
}
@media screen and (max-width: 375px) {
  .news {
    padding-top: 33.0666666667vw;
    background-position: left top 13.3333333333vw, right top 13.3333333333vw, right bottom, center top;
    background-size: 100%, 100%, 100%, cover;
  }
}
.news__container {
  position: relative;
  height: calc(100vh - 120px);
  max-height: 723px;
}
@media screen and (max-width: 768px) {
  .news__container {
    height: 275px;
    max-height: none;
  }
}
.news .main__hdg {
  top: 87px;
}
@media screen and (max-width: 768px) {
  .news .main__hdg {
    margin-left: 0;
    top: 35px;
  }
}
.news__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .news__contents {
    font-size: 2.3rem;
  }
}
.news__txt {
  padding-bottom: 4.5138888889%;
}
@media screen and (max-width: 768px) {
  .news__txt {
    padding-bottom: 25px;
  }
}

/* news:end */
@media screen and (max-width: 768px) {
  .jsIsShow .action__life, .jsIsShow .action__community, .jsIsShow .action__women, .jsIsShow .action__tree-bg, .jsIsShow .action__tree, .jsIsShow .action .main__hdg, .action .jsIsShow .main__hdg {
    transform: translate(var(--beforeX), var(--beforeY));
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .jsIsActionAnimeShow.action__life, .jsIsActionAnimeShow.action__community, .jsIsActionAnimeShow.action__women, .jsIsActionAnimeShow.action__tree-bg, .jsIsActionAnimeShow.action__tree, .action .jsIsActionAnimeShow.main__hdg {
    transform: translate(var(--afterX), var(--afterY));
    opacity: 1;
  }
}

/* action:start */
.action {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding-top: 120px;
  padding-bottom: 230px;
}
@media screen and (max-width: 768px) {
  .action {
    padding-top: 70px;
    padding-bottom: 105px;
    position: relative;
  }
}
.action.isJumpNow {
  position: relative;
}
.action .main__hdg {
  top: 12px;
}
@media screen and (max-width: 768px) {
  .action .main__hdg {
    top: 0;
  }
}
.action__container {
  position: relative;
}
.action__contents {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  height: calc(100vh - 120px);
  max-height: 702px;
  max-width: 100%;
  aspect-ratio: 1440/702;
  position: relative;
  z-index: 1;
  top: 0;
}
@media screen and (max-width: 768px) {
  .action__contents {
    margin-top: 45px;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.action__tree {
  position: relative;
  z-index: 2;
  display: block;
  max-height: 100%;
  max-width: 100%;
  transition-delay: 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .action__tree {
    max-height: none;
    width: 90.6666666667vw;
    max-width: 480px;
    z-index: 1;
  }
}
.action__tree img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.action__tree-bg {
  margin-top: 0.8333333333%;
  margin-left: -15.9722222222%;
  width: 39.4444444444%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transition-delay: 0.3s;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .action__tree-bg {
    margin-top: 0;
    margin-left: 0;
    left: 0;
    width: 100%;
    mix-blend-mode: normal;
    z-index: -1;
  }
}
.action__women {
  margin-top: 5.3472222222%;
  margin-right: 6.9444444444%;
  aspect-ratio: 481/545;
  width: 33.4027777778%;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 50%;
  transition-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  .action__women {
    margin-right: 0;
    width: 100%;
    position: relative;
    right: 0;
    aspect-ratio: auto;
    transition-delay: 0s;
  }
}
.action__women-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .action__women-bg {
    left: auto;
    right: 0;
  }
}
.action__women-content {
  margin-top: 25.7796257796%;
  margin-left: 17.4636174636%;
  width: 41.9958419958%;
}
@media screen and (max-width: 768px) {
  .action__women-content {
    margin-left: auto;
    margin-right: auto;
    width: 90.6666666667vw;
    max-width: 480px;
  }
}
.action__women-datattl {
  width: 100%;
}
.action__women-data {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  width: 94.0594059406%;
}
@media screen and (max-width: 1440px) {
  .action__women-data {
    margin-top: 1.7361111111vw;
  }
}
@media screen and (max-width: 768px) {
  .action__women-data {
    margin-top: 35px;
    width: 100%;
  }
}
.action__community {
  margin-left: 8.8888888889%;
  aspect-ratio: 425/336;
  width: 29.5138888889%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transition-delay: 0.8s;
}
@media screen and (max-width: 768px) {
  .action__community {
    margin-top: 8vw;
    margin-left: 0;
    width: 100%;
    position: relative;
    left: 0;
    aspect-ratio: auto;
    transition-delay: -0.1s;
  }
}
.action__community-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.action__community-content {
  margin-top: 24.9411764706%;
  margin-left: 27.7647058824%;
  width: 47.5294117647%;
}
@media screen and (max-width: 768px) {
  .action__community-content {
    margin-top: 28vw;
    margin-left: auto;
    margin-right: auto;
    width: 90.6666666667vw;
    max-width: 480px;
  }
}
.action__community-datattl {
  width: 100%;
}
.action__community-data {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  width: 99.504950495%;
}
@media screen and (max-width: 1440px) {
  .action__community-data {
    margin-top: 1.7361111111vw;
  }
}
@media screen and (max-width: 768px) {
  .action__community-data {
    margin-top: 35px;
    width: 100%;
  }
}
.action__life {
  margin-top: 19.0972222222%;
  aspect-ratio: 448/403;
  width: 31.1111111111%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 63.6805555556%;
  transition-delay: 0.1s;
}
@media screen and (max-width: 768px) {
  .action__life {
    margin-top: 8vw;
    width: 100%;
    position: relative;
    left: 0;
    aspect-ratio: auto;
    transition-delay: -0.2s;
  }
}
.action__life-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.action__life-content {
  margin-top: 27.9017857143%;
  margin-left: 36.6071428571%;
  width: 44.6428571429%;
}
@media screen and (max-width: 768px) {
  .action__life-content {
    margin-left: auto;
    margin-right: auto;
    width: 90.6666666667vw;
    max-width: 480px;
  }
}
.action__life-datattl {
  margin-left: auto;
  margin-right: auto;
  width: 92%;
}
@media screen and (max-width: 768px) {
  .action__life-datattl {
    width: 100%;
  }
}
.action__life-data {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .action__life-data {
    margin-top: 1.7361111111vw;
  }
}
@media screen and (max-width: 768px) {
  .action__life-data {
    margin-top: 35px;
  }
}
.action__list {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .action__list {
    margin-left: auto;
    margin-right: auto;
    width: 76vw;
    max-width: 432px;
  }
}
.action__list-item:not(:first-child) {
  margin-top: 15px;
}
@media screen and (max-width: 1440px) {
  .action__list-item:not(:first-child) {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (max-width: 768px) {
  .action__list-item:not(:first-child) {
    margin-top: 20px;
  }
}

/* action:end */
.contents__bg-front, .contents__bg-back {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  height: 100%;
}

/* contents:start */
.contents {
  padding-top: 130px;
  padding-bottom: 125px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contents {
    padding-top: 50px;
    padding-bottom: 0;
  }
}
.contents::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 1;
  background-image: url(/top/images/pc/contents_bg_clound.png), linear-gradient(#ffffff, #ffffff);
  background-repeat: no-repeat;
  background-position: center top, center top 14.5833333333vw;
  background-size: 100vw auto, cover;
}
@media screen and (max-width: 1920px) {
  .contents::before {
    background-position: center top, center top 280px;
    background-size: 1920px, cover;
  }
}
@media screen and (max-width: 768px) {
  .contents::before {
    background-image: url(/top/images/sp/contents_bg_clound.png), linear-gradient(#ffffff, #ffffff);
    background-repeat: no-repeat;
    background-position: center top, center top 14.5833333333vw;
    background-size: 100vw auto, cover;
  }
}
.contents .main__hdg {
  top: 0;
}
@media screen and (max-width: 768px) {
  .contents .main__hdg {
    position: absolute;
    margin-top: 36px;
  }
}
.contents__container {
  position: relative;
  z-index: 1;
}
.contents__main {
  padding-top: 30px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contents__main {
    padding-top: 0;
    padding-bottom: 65px;
  }
}
.contents__bg-back {
  top: 0;
}
.contents__bg-pk {
  width: 33.1944444444%;
  position: absolute;
  top: 40px;
  left: 2.0833333333%;
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .contents__bg-pk {
    top: 0;
    left: 0;
    width: 32.9333333333vw;
    max-width: 247px;
  }
}
.contents__bg-bl {
  width: 29.375%;
  position: absolute;
  top: -10px;
  right: 1.1111111111%;
}
@media screen and (max-width: 768px) {
  .contents__bg-bl {
    width: 62.2666666667vw;
    max-width: 467px;
    top: auto;
    right: 0;
    bottom: 24.8vw;
  }
}
.contents__bg-front {
  z-index: 1;
  top: 0;
  pointer-events: none;
}
.contents__bg-gr {
  width: 30.9722222222%;
  position: absolute;
  right: 0;
  top: 250px;
  transition-delay: 1.2s;
}
@media screen and (max-width: 768px) {
  .contents__bg-gr {
    width: 14vw;
    top: auto;
    bottom: 0;
  }
}
.contents__info {
  padding-left: 3.4722222222%;
  width: 100%;
  min-height: 544px;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contents__info {
    padding-left: 0;
    min-height: 0;
    flex-direction: column;
    align-items: center;
  }
}
.contents__info-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.contents__info-mirai {
  margin-top: 82px;
  margin-right: 10.071942446%;
  padding-top: 100px;
  width: 240px;
  width: 17.2661870504%;
  min-width: 175px;
  position: relative;
  transition-delay: 0.9s;
}
@media screen and (max-width: 768px) {
  .contents__info-mirai {
    margin-top: 1.3333333333vw;
    margin-right: 0;
    padding-top: 30.6666666667vw;
    width: 100%;
  }
}
.contents__info-mirai::before {
  content: "";
  display: block;
  width: 185.8333333333%;
  aspect-ratio: 446/403;
  position: absolute;
  top: 0;
  left: -106px;
  z-index: -1;
  background-image: url(/top/images/pc/contents_bg_info01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .contents__info-mirai::before {
    aspect-ratio: 750/805;
    width: 100%;
    max-width: 750px;
    top: -1.3333333333vw;
    right: auto;
    left: 0;
    background-image: url(/top/images/sp/contents_bg_info01.png);
  }
}
.contents__info-about {
  padding-top: 92px;
  width: 262px;
  width: 18.8489208633%;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .contents__info-about {
    margin-top: 4.2666666667vw;
    padding-top: 13.8666666667vw;
    margin-right: 0;
    width: 100%;
    transition-delay: 1.2s;
  }
}
.contents__info-about::before {
  content: "";
  display: block;
  width: 182.4427480916%;
  aspect-ratio: 478/544;
  position: absolute;
  top: 10px;
  left: -104px;
  z-index: -1;
  background-image: url(/top/images/pc/contents_bg_info02.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .contents__info-about::before {
    aspect-ratio: 750/1083;
    width: 100%;
    max-width: 750px;
    top: 0;
    left: auto;
    right: 0;
    background-image: url(/top/images/sp/contents_bg_info02.png);
  }
}
.contents__info-aboutimg {
  margin-left: auto;
  margin-right: auto;
  width: 95.8015267176%;
  display: block;
}
@media screen and (max-width: 768px) {
  .contents__info-aboutimg {
    width: 100%;
  }
}
.contents__info-txt {
  margin-top: 26px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contents__info-txt {
    margin-top: 35px;
    font-size: 1.3rem;
    line-height: 1.6153846154;
  }
}
@media screen and (max-width: 768px) {
  .contents__info-bnr {
    width: 64vw;
    max-width: 375px;
  }
}
.contents__info-ctalink {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 133px;
  height: 30px;
  border-radius: 500px;
  border: 1px solid #000000;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.1em;
  background-image: url(/top/images/pc/contents_icon_ctaarrow.png);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 6px auto;
}
@media screen and (max-width: 768px) {
  .contents__info-ctalink {
    margin-top: 22px;
    width: 120px;
    height: 27px;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: normal;
    background-image: url(/top/images/sp/contents_icon_ctaarrow.png);
    background-position: center right 14px;
  }
}
.contents__info-ctatxt {
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .contents__info-ctatxt {
    padding-bottom: 5px;
  }
}

/* contents:end */
/* float:start */
.float {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  width: 208px;
  height: 160px;
  position: fixed;
  z-index: 2;
  bottom: 20px;
  right: 20px;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 768px) {
  .float {
    padding-top: 5px;
    padding-bottom: 34px;
    max-width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 0;
    right: auto;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .float {
    padding-top: 1.3333333333vw;
    padding-bottom: 9.0666666667vw;
  }
}
.float.jsVisible {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .float__container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 375px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.float__link {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .float__link {
    margin-left: auto;
    margin-right: auto;
  }
  .float__link:hover {
    opacity: 1;
  }
}

/* float:end */
/* cmn-footer:start */
@media screen and (max-width: 768px) {
  .cmn-footer {
    padding-bottom: 130px;
  }
}

/* cmn-footer:end */