@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
/*-----------------------------------
アニメーション
------------------------------------*/
.fadein_item01 {
  -webkit-animation: fadeinright 0.5s 0s forwards;
          animation: fadeinright 0.5s 0s forwards;
}

.fadein_item02 {
  -webkit-animation: extenddown 0.5s 0.2s forwards;
          animation: extenddown 0.5s 0.2s forwards;
}

.flap_in01, .flap_in02, .flap_in03 {
  will-change: top, left, opacity, margin, padding, width, height, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fade_in01 {
  -webkit-animation: fadein 0.3s 0s forwards;
          animation: fadein 0.3s 0s forwards;
}

.fade_in02 {
  -webkit-animation: fadein 0.3s 0.5s forwards;
          animation: fadein 0.3s 0.5s forwards;
}

.fade_in03 {
  -webkit-animation: fadein 0.3s 1s forwards;
          animation: fadein 0.3s 1s forwards;
}

.flap_in01 {
  -webkit-animation: flapin 0.5s 0s forwards;
          animation: flapin 0.5s 0s forwards;
}

.flap_in02 {
  -webkit-animation: flapin 0.5s 0.3s forwards;
          animation: flapin 0.5s 0.3s forwards;
}

.flap_in03 {
  -webkit-animation: flapin 0.5s 0.6s forwards;
          animation: flapin 0.5s 0.6s forwards;
}

.ext_lr {
  -webkit-animation: extendright 0.5s 0.3s forwards;
          animation: extendright 0.5s 0.3s forwards;
}

.ext_lr2 {
  -webkit-animation: extendright 0.5s 0.7s forwards;
          animation: extendright 0.5s 0.7s forwards;
}

.ext_lr3 {
  -webkit-animation: extendright 0.5s 1.1s forwards;
          animation: extendright 0.5s 1.1s forwards;
}

.ext_lr0 {
  -webkit-animation: extendright 0.5s 0s forwards;
          animation: extendright 0.5s 0s forwards;
}

.ext_ud {
  -webkit-animation: extenddown 0.5s 0.3s forwards;
          animation: extenddown 0.5s 0.3s forwards;
}

.ext_ud2 {
  -webkit-animation: extenddown 0.5s 0.6s forwards;
          animation: extenddown 0.5s 0.6s forwards;
}

.ext_ud3 {
  -webkit-animation: extenddown 0.5s 0.9s forwards;
          animation: extenddown 0.5s 0.9s forwards;
}

.blur_in01 {
  -webkit-animation: fadeinblur 1s 0.1s forwards;
          animation: fadeinblur 1s 0.1s forwards;
}

.blur_in02 {
  -webkit-animation: fadeinblur 0.5s 0.5s forwards;
          animation: fadeinblur 0.5s 0.5s forwards;
}

.blur_in03 {
  -webkit-animation: fadeinblur 0.7s 1.2s forwards;
          animation: fadeinblur 0.7s 1.2s forwards;
}

.blur_in04 {
  -webkit-animation: fadeinblur 0.7s 1.6s forwards;
          animation: fadeinblur 0.7s 1.6s forwards;
}

.zoom_in01 {
  -webkit-animation: zoomin 0.5s 1s forwards;
          animation: zoomin 0.5s 1s forwards;
}

.zoom_in02 {
  -webkit-animation: zoomin 0.5s 0.5s forwards;
          animation: zoomin 0.5s 0.5s forwards;
}

.zoom_in03 {
  -webkit-animation: zoomin 0.5s 1s forwards;
          animation: zoomin 0.5s 1s forwards;
}

/*個別エフェクト（ヘッダーイン）*/
@-webkit-keyframes show_mvhead {
  0% {
    opacity: 0;
    z-index: 1;
  }
  to {
    opacity: 1;
    z-index: 1;
  }
}
@keyframes show_mvhead {
  0% {
    opacity: 0;
    z-index: 1;
  }
  to {
    opacity: 1;
    z-index: 1;
  }
}
/*固定位置フェードイン*/
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.common_fadeinup {
  opacity: 0;
  -webkit-animation: fadeinup 0.8s 0s forwards;
          animation: fadeinup 0.8s 0s forwards;
}

/*上昇フェードイン*/
@-webkit-keyframes fadeinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*下降フェードイン*/
@-webkit-keyframes fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*左⇒右へフェードイン*/
@-webkit-keyframes fadeinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*左⇒右へフェードイン*/
@-webkit-keyframes fadeinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*フラップイン*/
@-webkit-keyframes flapin {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes flapin {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
/*にじみフェードイン*/
@-webkit-keyframes fadeinblur {
  0% {
    opacity: 0;
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -ms-filter: blur(30px);
    -o-filter: blur(30px);
    filter: blur(30px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes fadeinblur {
  0% {
    opacity: 0;
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -ms-filter: blur(30px);
    -o-filter: blur(30px);
    filter: blur(30px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/*下から上に伸びる*/
@-webkit-keyframes extendup {
  0% {
    clip-path: inset(100% 0 0 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0% 0 0 0 round 0);
    opacity: 1;
  }
}
@keyframes extendup {
  0% {
    clip-path: inset(100% 0 0 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0% 0 0 0 round 0);
    opacity: 1;
  }
}
/*上から下に伸びる*/
@-webkit-keyframes extenddown {
  0% {
    clip-path: inset(0 0 100% 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
@keyframes extenddown {
  0% {
    clip-path: inset(0 0 100% 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
/*左から右に伸びる*/
@-webkit-keyframes extendright {
  0% {
    clip-path: inset(0 100% 0 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
@keyframes extendright {
  0% {
    clip-path: inset(0 100% 0 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
/*右から左に伸びる*/
@-webkit-keyframes extendleft {
  0% {
    clip-path: inset(0 0 0 100% round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
@keyframes extendleft {
  0% {
    clip-path: inset(0 0 0 100% round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
/*ズームイン*/
@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomin {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/*ズームアウト*/
@-webkit-keyframes zoomout {
  0% {
    -webkit-transform: scale(3);
            transform: scale(3);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomout {
  0% {
    -webkit-transform: scale(3);
            transform: scale(3);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
body {
  color: #40220f;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.header {
  padding-top: 28px;
  padding-right: 40px;
  padding-left: 40px;
  background-image: url(../img/header-bg.png);
  background-size: auto 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
}
@media print, screen and (max-width: 1023.9px) {
  .header {
    padding: 20px 20px 0;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}

.header__logo {
  display: block;
  width: 166px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__logo {
    width: 100px;
  }
}

.header__menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}
.header__menu.-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__menu-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .header__menu-list {
    gap: 40px;
  }
}

.header__link {
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (hover: hover) {
  .header__link:hover {
    opacity: 0.5;
  }
}

.hamburger {
  height: 65px;
  width: 65px;
  display: block;
  border: 1px solid #fff;
  background-color: rgb(6, 13, 38);
  position: relative;
  z-index: 10;
  cursor: pointer;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger {
    height: 30px;
    width: 30px;
  }
}
.hamburger.-active .hamburger__line {
  top: 50%;
}
.hamburger.-active .hamburger__line.-n1 {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.-active .hamburger__line.-n2 {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger__line {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 37px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__line {
    width: 80%;
  }
}
.hamburger__line.-n1 {
  top: 27px;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__line.-n1 {
    top: 30%;
  }
}
.hamburger__line.-n2 {
  bottom: 27px;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__line.-n2 {
    bottom: 30%;
  }
}

.footer {
  position: relative;
  height: 700px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer {
    background-size: cover;
    background-position: bottom;
    padding: 150px 0 120px;
    height: auto;
  }
}

.footer__bg {
  width: 100%;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__bg {
    display: none;
  }
}
.footer__bg img {
  width: 100%;
}

.footer__text {
  color: #fff;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  font-family: "Roboto";
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__text {
    font-size: 24px;
    top: 30%;
  }
}
.footer__text span {
  font-style: italic;
  margin-bottom: 55px;
  font-size: 21px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__text span {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.footer__text-img {
  display: block;
  margin-top: 55px;
  margin-right: auto;
  margin-left: auto;
  max-width: 677px;
  width: 100%;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__text-img {
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 20px;
  }
}

.movetext {
  opacity: 0;
}

.movetext > span {
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
body {
  background-color: #000;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

main {
  overflow-x: clip;
}

@media print, screen and (min-width: 1024px) {
  .section-heading.-greeting {
    width: 363px;
  }
}
@media print, screen and (min-width: 1024px) {
  .section-heading.-speakers {
    width: 320px;
    margin: 0 auto;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .section-heading.-speakers {
    width: 250px;
    margin: 0 auto;
  }
}
.section-heading.-outline {
  margin: 0 auto 40px;
}
@media print, screen and (min-width: 1024px) {
  .section-heading.-outline {
    width: 250px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .section-heading.-outline {
    width: 200px;
    margin: 0 auto;
  }
}
.section-heading.-time-table {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 70px;
}
@media print, screen and (max-width: 1023.9px) {
  .section-heading.-time-table {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .section-heading.-time-table {
    width: 430px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .section-heading img {
    width: auto;
  }
}

.contents-wrap {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .contents-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.mv {
  position: relative;
  height: calc(100dvh + 130px);
}
@media print, screen and (max-width: 1023.9px) {
  .mv {
    height: 100dvh;
    padding: 0px 0;
    background-image: url(../img/mv-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.mv__bg {
  width: 100%;
}
.mv__bg img {
  width: 100%;
}

.mv__text-wrap {
  max-width: 1222px;
  width: 100%;
}
@media print, screen and (max-width: 1023.9px) {
  .mv__text-wrap {
    padding-right: 20px;
    padding-left: 20px;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
  }
}
@media print, screen and (min-width: 1024px) {
  .mv__text-wrap {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 43%;
    left: 50%;
  }
}

.mv__main-text {
  width: 87%;
  display: block;
}
@media print, screen and (max-width: 1023.9px) {
  .mv__main-text {
    width: 100%;
  }
}

.mv__sub-text {
  max-width: 929px;
  width: 76%;
  display: block;
  margin-top: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .mv__sub-text {
    margin-top: 20px;
    width: 80%;
  }
}

.mv__info {
  margin-top: 30px;
  width: 56%;
}
@media print, screen and (max-width: 1023.9px) {
  .mv__info {
    margin-top: 15px;
    width: 90%;
  }
}

.header__registration-fix {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 140;
  width: 200px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
@media only screen and (max-width: 767.9px) {
  .header__registration-fix {
    right: -10px;
    bottom: -10px;
    width: 130px;
  }
}
.header__registration-fix:hover {
  opacity: 0.6;
}
.header__registration-fix:before {
  content: none;
}
.header__registration-fix a {
  width: 100%;
}

.resCircle {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 150;
}
@media only screen and (max-width: 767.9px) {
  .resCircle {
    right: 12px;
    bottom: 12px;
  }
}

.resCircle__inner {
  font-size: 7.2px;
  -webkit-animation: donut-spin 10s linear infinite;
          animation: donut-spin 10s linear infinite;
  width: 135px;
  height: 135px;
  pointer-events: none;
}
@media only screen and (max-width: 767.9px) {
  .resCircle__inner {
    width: 87px;
    height: 87px;
  }
}

.resCircle svg {
  overflow: visible;
}

.resCircle path {
  fill: none;
  stroke: none;
}

.resCircle text {
  fill: #000;
}

@-webkit-keyframes donut-spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes donut-spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.mv__link {
  border-radius: 38.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 280px;
  line-height: 1;
  position: fixed;
  bottom: 50px;
  right: 25px;
  z-index: 100;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
  text-align: center;
  background: -webkit-gradient(linear, right top, left top, from(#e72618), color-stop(#f3b816), color-stop(#539bcd), color-stop(#983dd8), to(#e72618)) fixed;
  background: linear-gradient(-90deg, #e72618, #f3b816, #539bcd, #983dd8, #e72618) fixed;
  background-size: 200% 200%;
  -webkit-animation: GradietionAnimation 7s ease infinite;
          animation: GradietionAnimation 7s ease infinite;
  font-size: 20px;
  height: 77px;
  letter-spacing: 2px;
}
.mv__link:after {
  content: "";
  display: block;
  background: -webkit-gradient(linear, right top, left top, from(#e72618), color-stop(#f3b816), color-stop(#539bcd), color-stop(#983dd8), to(#e72618)) fixed;
  background: linear-gradient(-90deg, #e72618, #f3b816, #539bcd, #983dd8, #e72618) fixed;
  background-size: 200% 200%;
  -webkit-animation: GradietionAnimation 7s ease infinite;
          animation: GradietionAnimation 7s ease infinite;
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: -1;
  border-radius: 38.5px;
  opacity: 0.54;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
@media print, screen and (max-width: 1023.9px) {
  .mv__link {
    width: 45%;
    height: 50px;
    font-size: 18px;
    max-width: 280px;
    right: 10px;
    bottom: 30px;
    font-size: 15px;
  }
  .mv__link:after {
    height: 30px;
    bottom: -15px;
  }
}
@media (hover: hover) {
  .mv__link:hover {
    opacity: 0.8;
  }
}

@media print, screen and (max-width: 1023.9px) {
  br.pc {
    display: none;
  }
}

@media print, screen and (min-width: 1024px) {
  br.sp {
    display: none;
  }
}

@-webkit-keyframes GradietionAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes GradietionAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.scrolldown2 {
  position: absolute;
  bottom: 170px;
  right: 50%;
  z-index: 100;
}
@media print, screen and (max-width: 1023.9px) {
  .scrolldown2 {
    bottom: 120px;
  }
}

.scrolldown2 span {
  position: absolute;
  left: 8px;
  bottom: 12px;
  color: #eee;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media print, screen and (max-width: 1023.9px) {
  .scrolldown2 span {
    font-size: 11px;
    bottom: 15px;
  }
}

.scrolldown2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

.scrolldown2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 60px;
  background: #eee;
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.greeting {
  position: relative;
}

.greeting__inner {
  padding-top: 200px;
}
@media print, screen and (max-width: 1023.9px) {
  .greeting__inner {
    padding-top: 0px;
  }
}

.greeting__text {
  color: #fff;
  margin-top: 50px;
  font-size: 20px;
  line-height: 2.5;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .greeting__text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
  }
}

.greeting__h2 {
  max-width: 960px;
  margin: 0 auto;
}

.prof {
  width: 30%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  bottom: -5%;
  right: -50px;
}
@media print, screen and (max-width: 1023.9px) {
  .prof {
    position: static;
    width: 86%;
    margin: 20px auto 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .prof {
    -webkit-transform: translateY(-17%);
            transform: translateY(-17%);
  }
}

@media print, screen and (max-width: 1023.9px) {
  .prof__img {
    width: 80%;
    margin: 0 auto;
  }
}

.prof__name {
  margin-top: 100px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .prof__name {
    font-size: 18px;
    margin-top: 40px;
  }
}
.prof__name span {
  font-size: 16px;
}
@media print, screen and (max-width: 1023.9px) {
  .prof__name span {
    font-size: 12px;
  }
}

.speakers {
  position: relative;
  background-image: url(../img/speakers-bg.png);
  background-size: cover;
  background-position: bottom;
  padding-bottom: 110px;
  padding-top: 300px;
}
@media print, screen and (max-width: 1023.9px) {
  .speakers {
    padding-bottom: 50px;
    padding-top: 100px;
  }
}

.speakers__blur {
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
}

.speakerSingle {
  max-width: 470px;
  margin: 60px auto 0px;
}
@media print, screen and (max-width: 1023.9px) {
  .speakerSingle .speaker__img {
    width: 80%;
    margin-inline: auto;
  }
}

.speakerFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 0 0;
}
@media print, screen and (max-width: 1023.9px) {
  .speakerFlex {
    padding-top: 0px;
  }
}
.speakerFlex a {
  width: 46%;
}
@media print, screen and (max-width: 1023.9px) {
  .speakerFlex a {
    width: 47%;
  }
}

.speakers__inner {
  max-width: 800px;
}

.speaker {
  display: block;
  position: relative;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  margin-bottom: 40px;
}
.speaker:hover {
  opacity: 0.7;
}
@media print, screen and (max-width: 1023.9px) {
  .speaker {
    margin-top: 10px;
  }
}
.speaker.-suzuki {
  margin-left: auto;
}
.speaker.-jeremy {
  margin-left: auto;
}

.speaker__img.-suzuki {
  max-width: 522px;
}
.speaker__img.-hioki {
  max-width: 524px;
}
.speaker__img.-jeremy {
  max-width: 522px;
}
.speaker__img.-ima {
  max-width: 410px;
}
@media print, screen and (max-width: 1023.9px) {
  .speaker__img.-ima {
    width: 76%;
    margin-left: auto;
    margin-right: auto;
  }
}

.speaker__text .ask {
  color: #fdaf00;
  margin-top: 30px;
  border: #fdaf00 solid 2px;
  padding: 14px 24px 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .speaker__text .ask {
    padding: 15px 15px 18px;
    margin-top: 20px;
  }
}
.speaker__text .ask h4 {
  font-size: 27px;
  font-weight: bold;
}
@media print, screen and (max-width: 1023.9px) {
  .speaker__text .ask h4 {
    font-size: 22px;
  }
}
.speaker__text .ask p {
  margin-top: 6px;
  line-height: 2;
  color: #FFF;
}
@media print, screen and (max-width: 1023.9px) {
  .speaker__text .ask p {
    font-size: 13px;
    line-height: 1.7;
  }
}

.prof-name {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
}
@media print, screen and (max-width: 1023.9px) {
  .prof-name {
    font-size: 18px;
    margin-top: 15px;
  }
}
.prof-name small {
  font-size: 18px;
}
@media print, screen and (max-width: 1023.9px) {
  .prof-name small {
    font-size: 13px;
  }
}
.prof-name span {
  display: block;
  line-height: 1.5;
  font-size: 14px;
  margin-top: 16px;
}
@media print, screen and (max-width: 1023.9px) {
  .prof-name span {
    font-size: 11px;
    margin-top: 10px;
    line-height: 1.6;
  }
}

.time-table {
  padding-top: 60px;
  padding-bottom: 100px;
}
@media print, screen and (max-width: 1023.9px) {
  .time-table {
    padding-bottom: 50px;
  }
}

.time-table__inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .time-table__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.tt-table + .tt-table {
  margin-top: 68px;
}

.tt-table__time {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  font-family: "Roboto", serif;
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__time {
    font-size: 20px;
  }
}
.tt-table__time strong {
  font-size: 37px;
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__time strong {
    font-size: 27px;
  }
}

.tt-table__box {
  background-image: linear-gradient(151deg, rgb(251, 215, 201) 1%, rgb(216, 225, 255) 100%);
  padding: 30px 40px 40px;
  margin-top: 17px;
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__box {
    padding: 22px 20px 30px;
  }
}
.tt-table__box.-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 46px;
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__box.-row {
    display: block;
  }
}

.tt-table__cat {
  font-size: 17px;
  line-height: 1.2;
  padding: 12px 18px 14px;
  background-color: #a42a09;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__cat {
    font-size: 13px;
    padding: 10px 12px;
  }
}

.tt-table__title {
  font-size: 22px;
  margin-top: 21px;
  font-weight: bold;
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__title {
    font-size: 18px;
    margin-top: 15px;
  }
}

.tt-table__text {
  font-size: 15px;
  line-height: 2;
  margin-top: 13px;
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__text {
    font-size: 12.5px;
    margin-top: 15px;
    line-height: 1.8;
  }
}

.tt-table__name {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__name {
    font-size: 16px;
  }
}
.tt-table__name span {
  font-size: 12px;
}

.tt-table__position {
  margin-top: 6px;
  font-size: 13px;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__position {
    font-size: 10px;
    margin-top: 5px;
  }
}

.tt-table__prof-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0px;
}
@media print, screen and (min-width: 1024px) {
  .tt-table__prof-area.-mt1 {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .tt-table__prof-area.-mt {
    margin-top: -100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .tt-table__prof-area.-cen {
    margin: 20px auto 0;
    padding-right: 120px;
  }
}
@media print, screen and (min-width: 1024px) {
  .tt-table__prof-area.-cen2 {
    margin: 20px auto 0;
    padding-right: 240px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__prof-area {
    gap: 20px;
    margin-top: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.tt-table__prof {
  display: block;
  max-width: 235px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.tt-table__prof:hover {
  opacity: 0.6;
}
@media print, screen and (max-width: 1023.9px) {
  .tt-table__prof {
    max-width: none;
    width: calc((100% - 20px) / 2);
  }
  .tt-table__prof.-single {
    width: calc(100% - 20px);
  }
  .tt-table__prof.-single .tt-table__img {
    max-width: 150px;
  }
}

.tt-table__img {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.outline {
  padding-top: 120px;
  padding-bottom: 140px;
  background: url(../img/out-bg.webp);
  background-size: cover;
  margin-top: 200px;
}
@media print, screen and (max-width: 1023.9px) {
  .outline {
    padding-bottom: 80px;
    margin-top: 50px;
    padding-top: 80px;
  }
}

.outline__inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .outline__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.outline__table {
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  row-gap: 22px;
}
@media print, screen and (max-width: 1023.9px) {
  .outline__table {
    margin-top: 30px;
    display: block;
  }
}
.outline__table dt,
.outline__table dd {
  padding-bottom: 12px;
  border-bottom: 1px solid #fff;
}
@media print, screen and (max-width: 1023.9px) {
  .outline__table dt,
  .outline__table dd {
    font-size: 14px;
  }
}
.outline__table dt a,
.outline__table dd a {
  text-decoration: underline;
}
@media print, screen and (max-width: 1023.9px) {
  .outline__table dt {
    text-align: left;
    padding: 20px 0 5px;
    border: none;
    font-weight: bold;
    font-size: 102%;
  }
}
@media print, screen and (min-width: 1024px) {
  .outline__table dt {
    padding-left: 94px;
    text-align: right;
  }
}
.outline__table dd {
  padding-left: 60px;
}
@media print, screen and (max-width: 1023.9px) {
  .outline__table dd {
    padding-left: 0px;
  }
}

.modal {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal .modal__prof-info {
  width: 20%;
}
.modal .prof-img {
  max-width: 100%;
  margin-bottom: 10px;
}
.modal .prof-box {
  width: 77%;
}
.modal .prof-box h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .modal .prof-box h3 {
    font-size: 18px;
  }
}
.modal .position {
  font-size: 14px;
  font-weight: bold;
}
.modal .name {
  font-size: 20px;
  font-weight: bold;
  margin: 6px 0 12px;
}
@media print, screen and (max-width: 1023.9px) {
  .modal .name {
    font-size: 17px;
  }
}
.modal .name span {
  font-size: 18px;
}
@media print, screen and (max-width: 1023.9px) {
  .modal .name span {
    font-size: 12px;
  }
}
.modal .career {
  font-size: 14px;
  line-height: 2;
}
.modal .career sup {
  top: -6px;
  font-size: 80%;
  position: relative;
}
.modal .btn_close {
  position: absolute;
  top: 20px;
  right: 20px;
  max-height: 36px;
  cursor: pointer;
  width: 30px;
}
.modal .btn_close:hover {
  opacity: 0.5;
}

@media (max-width: 960px) {
  .modal {
    padding: 20px 23px 30px;
    display: block;
  }
  .modal .modal__prof-info {
    width: 55%;
    margin: 10px auto 10px;
  }
  .modal .position {
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
  }
  .modal .prof-img {
    margin: 0px;
  }
  .modal .prof-box {
    margin-left: 0;
    margin-top: 0px;
    margin-right: 0;
    width: 100%;
  }
  .modal .name {
    font-size: 17px;
    font-weight: bold;
    margin: 0 0 10px;
  }
  .modal .name span {
    font-size: 13px;
  }
  .modal .career {
    font-size: 12.2px;
    line-height: 1.6;
  }
  .modal .btn_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
  }
}