@charset "UTF-8";
/* js-fade:start */
:root {
  --fade-translate-x: 0px;
  --fade-translate-y: 0px;
  --fade-duration: 500ms;
}

/* 表示方向 */
.up {
  --fade-translate-y: 50px;
}

.down {
  --fade-translate-y: -50px;
}

.fromLeft {
  --fade-translate-x: -50px;
}

.fromRight {
  --fade-translate-x: 50px;
}

.jsScroll {
  opacity: 0;
  transition-duration: 750ms;
  transition-property: opacity, transform;
  transition-delay: 250ms;
  transition-timing-function: ease;
  transform: translate(var(--fade-translate-x), var(--fade-translate-y));
}

.jsScrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.jsFvHide {
  opacity: 0;
  transition-duration: 1.5s;
  transition-property: opacity, transform;
  transition-delay: 0s;
}
.jsFvHide.jsFvShow {
  opacity: 1;
}

.fade-enter-active {
  transition: opacity 1s;
}
.fade-leave-active {
  transition: opacity 1s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}

/* js-fade:end */
.report__container, .about__container, .header__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.report__container > *, .about__container > *, .header__menu > * {
  min-height: 0%;
}

.report__container, .about__container {
  box-sizing: content-box !important;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .report__container, .about__container {
    max-width: 100%;
  }
}

.report__sns-link--tiktok, .report__sns-link--note, .report__link, .header__logo-link, .header__menu, .header__navlink {
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
.report__sns-link--tiktok:hover, .report__sns-link--note:hover, .report__link:hover, .header__logo-link:hover, .header__menu:hover, .header__navlink:hover {
  opacity: 0.7;
}

.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;
  background-color: rgba(254, 251, 244, 0.8);
}
@media screen and (max-width: 768px) {
  .header {
    padding-top: 0;
    padding-bottom: 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-bottom: 40px;
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    background-color: #fefbf4;
    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 - 70px);
  height: calc(100dvh - 70px);
  background-color: #fefbf4;
  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 {
  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 */
/* about:start */
.about__bg {
  background-color: #fefbf4;
}
.about__container {
  padding-top: 155px;
  padding-bottom: 280px;
}
@media screen and (max-width: 768px) {
  .about__container {
    padding-top: 95px;
    padding-bottom: 150px;
    padding-left: 17.5px;
    padding-right: 17.5px;
  }
}
@media screen and (max-width: 375px) {
  .about__container {
    padding-top: 25.3333333333vw;
    padding-bottom: 40vw;
    padding-left: 4.6666666667vw;
    padding-right: 4.6666666667vw;
  }
}
.about__texts {
  max-width: 390px;
}
@media screen and (max-width: 768px) {
  .about__texts {
    margin-left: 8px;
    max-width: 255px;
  }
}
@media screen and (max-width: 375px) {
  .about__texts {
    margin-left: 2.1333333333vw;
    max-width: 68vw;
  }
}
.about__text {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .about__text {
    font-size: 4vw;
  }
}
.about__text + .about__text {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .about__text + .about__text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 375px) {
  .about__text + .about__text {
    margin-top: 5.3333333333vw;
  }
}
.about__text--indent {
  display: inline-block;
  text-indent: -0.5em;
}
.about__text--large {
  font-size: 3rem;
  line-height: 1.4666666667;
  margin-top: 45px;
  margin-right: -15px;
}
@media screen and (max-width: 768px) {
  .about__text--large {
    font-size: 1.9rem;
    line-height: 1.6842105263;
    margin-top: 25px;
  }
}
@media screen and (max-width: 375px) {
  .about__text--large {
    font-size: 5.0666666667vw;
    margin-top: 6.6666666667vw;
    margin-right: -4vw;
  }
}
.about__mirai {
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .about__mirai {
    width: 340px;
    margin-top: 35px;
  }
}
@media screen and (max-width: 375px) {
  .about__mirai {
    width: 100%;
    margin-top: 9.3333333333vw;
  }
}
.about__scroll-area {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
  background-color: rgba(254, 251, 244, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  z-index: 2;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .about__scroll-area {
    padding-top: 14px;
    padding-bottom: 33px;
  }
}
@media screen and (max-width: 375px) {
  .about__scroll-area {
    padding-top: 3.7333333333vw;
    padding-bottom: 8.8vw;
  }
}
.about__scroll-area.jsIconHided {
  opacity: 0;
  pointer-events: none;
}
.about__scroll {
  width: 68px;
  aspect-ratio: 68/29;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__scroll {
    aspect-ratio: 110/47;
    width: 55px;
  }
}
@media screen and (max-width: 375px) {
  .about__scroll {
    width: 14.6666666667vw;
  }
}
.about__scroll-ar01 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollAnime 1.2s steps(1) infinite;
}
.about__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;
  }
}

/* about:end */
.report__title, .report__lead-collabo-text, .report__lead-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .report__title, .report__lead-collabo-text, .report__lead-text {
    font-size: 1.5rem;
    line-height: 2.3;
  }
}
@media screen and (max-width: 375px) {
  .report__title, .report__lead-collabo-text, .report__lead-text {
    font-size: 4vw;
  }
}

.report__sns-link--note, .report__sns-link--tiktok {
  display: block;
}

.report__title-inner::after, .report__title-inner::before {
  display: block;
  position: absolute;
  top: 50%;
  width: 368px;
  height: 1px;
  background-color: #000;
  content: "";
}
@media screen and (max-width: 768px) {
  .report__title-inner::after, .report__title-inner::before {
    width: calc(50% - 77px);
  }
}
@media screen and (max-width: 375px) {
  .report__title-inner::after, .report__title-inner::before {
    width: calc(50% - 19.3333333333vw);
  }
}

/* report:start */
.report {
  background-color: #fefbf4;
}
.report__bg {
  position: relative;
  background-image: url(/content/mirai-kaigi/images/pc/report_bg.jpg);
  background-repeat: repeat;
  background-position: top center;
  background-size: 1440px 808px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .report__bg {
    background-image: url(/content/mirai-kaigi/images/sp/report_bg.jpg);
    background-size: 375px 404px;
  }
}
@media screen and (max-width: 375px) {
  .report__bg {
    background-size: 100vw 107.7333333333vw;
  }
}
.report__bg::after {
  display: inline-block;
  position: absolute;
  top: -131px;
  left: calc(50% - 428px);
  width: 112px;
  height: 237px;
  background-image: url(/content/mirai-kaigi/images/pc/report_img_human.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  opacity: 0;
  transition: opacity 0.5s;
  content: "";
}
@media screen and (max-width: 768px) {
  .report__bg::after {
    top: -65px;
    left: calc(50% - 140px);
    width: 56px;
    height: 119px;
    background-image: url(/content/mirai-kaigi/images/sp/report_img_human.png);
  }
}
@media screen and (max-width: 375px) {
  .report__bg::after {
    top: -17.3333333333vw;
    left: calc(50% - 37.3333333333vw);
    width: 14.9333333333vw;
    height: 31.7333333333vw;
  }
}
.report__bg.jsIsShow::after {
  opacity: 1;
}
.report__container {
  padding-bottom: 120px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .report__container {
    padding-bottom: 80px;
    padding-left: 17.5px;
    padding-right: 17.5px;
  }
}
@media screen and (max-width: 375px) {
  .report__container {
    padding-bottom: 21.3333333333vw;
    padding-left: 4.6666666667vw;
    padding-right: 4.6666666667vw;
  }
}
.report__about {
  padding-top: 260px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .report__about {
    padding-top: 180px;
  }
}
@media screen and (max-width: 375px) {
  .report__about {
    padding-top: 48vw;
  }
}
.report__lead {
  max-width: 1130px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 35px;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .report__lead {
    padding-top: 25px;
    padding-bottom: 35px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 375px) {
  .report__lead {
    padding-top: 6.6666666667vw;
    padding-bottom: 9.3333333333vw;
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
    border-radius: 2.6666666667vw;
  }
}
.report__lead-text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .report__lead-text {
    text-align: left;
  }
}
.report__lead-collabo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .report__lead-collabo {
    display: block;
    margin-top: 15px;
  }
}
@media screen and (max-width: 375px) {
  .report__lead-collabo {
    margin-top: 4vw;
  }
}
.report__lead-collabo-text {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .report__lead-collabo-text {
    text-align: center;
    margin-bottom: 5px;
    margin-right: 0;
  }
}
@media screen and (max-width: 375px) {
  .report__lead-collabo-text {
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .report__lead-collabo-logo {
    width: 136px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 375px) {
  .report__lead-collabo-logo {
    width: 36.2666666667vw;
  }
}
.report__sns {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .report__sns {
    margin-top: 35px;
  }
}
@media screen and (max-width: 375px) {
  .report__sns {
    margin-top: 9.3333333333vw;
  }
}
.report__sns-item + .report__sns-item {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .report__sns-item + .report__sns-item {
    margin-left: 25px;
  }
}
@media screen and (max-width: 375px) {
  .report__sns-item + .report__sns-item {
    margin-left: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .report__sns-link--tiktok {
    width: 57px;
  }
}
@media screen and (max-width: 375px) {
  .report__sns-link--tiktok {
    width: 15.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .report__sns-link--note {
    width: 153px;
  }
}
@media screen and (max-width: 375px) {
  .report__sns-link--note {
    width: 40.8vw;
  }
}
.report__latest {
  width: 100%;
  padding-top: 155px;
}
@media screen and (max-width: 768px) {
  .report__latest {
    padding-top: 115px;
  }
}
@media screen and (max-width: 375px) {
  .report__latest {
    padding-top: 30.6666666667vw;
  }
}
.report__title {
  font-weight: 400;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .report__title {
    font-size: 1.7rem;
    line-height: 1.4117647059;
  }
}
@media screen and (max-width: 375px) {
  .report__title {
    font-size: 4.5333333333vw;
  }
}
.report__title-inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .report__title-inner {
    display: block;
    width: 100%;
  }
}
.report__title-inner::before {
  left: -390px;
}
@media screen and (max-width: 768px) {
  .report__title-inner::before {
    left: 0;
  }
}
.report__title-inner::after {
  right: -390px;
}
@media screen and (max-width: 768px) {
  .report__title-inner::after {
    right: 0;
  }
}
.report__coming {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .report__coming {
    font-size: 2.3rem;
    line-height: 1.4130434783;
    margin-top: 68px;
  }
}
@media screen and (max-width: 375px) {
  .report__coming {
    font-size: 6.1333333333vw;
    margin-top: 18.1333333333vw;
  }
}
.report__link {
  margin-top: 124px;
  display: block;
  width: 264px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .report__link {
    width: 235px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 375px) {
  .report__link {
    width: 62.6666666667vw;
    margin-top: 21.3333333333vw;
  }
}
.report__bg.jsScrollIn::after {
  opacity: 1;
}

/* report:end */