@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo+Narrow:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/* cssリセット */
/*利用するタグによってこちらの内容は増やす*/
*,
*::before,
*::after {
  /* 直感的なボックスサイズのモデルを使用 */
  box-sizing: border-box;
}

html,
body {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Alphabet";
  src: local("Archivo Narrow", sans-serif);
  unicode-range: U+0041-005A, U+0061-007A; /* A-Z, a-z */
}
h1,
h2,
h3,
h4,
p,
dl,
dt,
dd,
ol,
ul,
li,
th,
td,
a,
small {
  margin: 0;
  padding: 0;
  font-family: "Archivo Narrow", "Noto Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1em;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  /*下線を消す*/
  text-decoration: none;
  /*色を消す*/
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul {
  /*左の「・」を消す*/
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border: none;
}

/* ====================
 変数
======================= */
:root {
  scroll-padding: 200px;
  --color-main: #0B33F0;
}
@media screen and (max-width: 767px) {
  :root {
    scroll-padding: 60px;
  }
}

/* ====================
 共通要素
======================= */
.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

.noLink {
  pointer-events: none;
}

.underline {
  text-decoration: underline;
}

.contentArea {
  max-width: 1070px;
  margin: 0 auto;
  padding: 190px 20px 100px;
}
@media screen and (max-width: 767px) {
  .contentArea {
    padding: 130px 20px 40px;
  }
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
}

#bgVideo {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
}

.controls {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.controls button {
  background: transparent;
  border: none;
  cursor: pointer;
  width: auto;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.controls button img {
  width: auto;
  height: 31px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.controls img {
  width: 50%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  width: 100vw;
}

.header-navWrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .header-navWrap {
    justify-content: space-between;
    align-items: center;
    width: 100vw;
  }
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 10;
  }
}

.header-logo img {
  max-width: 200px;
}

.header-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 470px;
  padding: 20px 20px 0;
}
@media screen and (max-width: 767px) {
  .header-list {
    flex-direction: column;
  }
}

.header-item a {
  display: inline-flex;
  background: #000;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header-item a {
    display: inline-block;
    background: #000;
    font-size: 4rem;
  }
}

.header-innerSp {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-innerSp.is-open {
  display: block;
  background: #fff;
}

.header-innerSp.is-open .header-navWrap {
  background: #fff;
}

.header-menuWrap {
  display: inline-block;
}

.header-menu {
  display: flex;
  padding-right: 20px;
}

.header-menuText {
  background: #000;
  color: #fff;
  font-size: 4rem;
}

@media screen and (max-width: 767px) {
  .header-borderWrap {
    width: 40px;
    height: 40px;
    border-radius: 100vmax;
    background: #000;
  }
}

.header-border {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-border {
    position: relative;
    display: block;
    top: 19px;
    left: 7px;
    height: 3px;
    border-radius: 30px;
    transition: 0.3s;
    cursor: pointer;
  }
}

.header-border::before, .header-border::after {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  height: 3px;
  border-radius: 30px;
  background: #fff;
  transition: 0.5s;
  cursor: pointer;
}

.header-border::before {
  top: 5px;
}

.header-border::after {
  bottom: 5px;
}

.openbtn {
  background: transparent;
}

.openbtn::before {
  top: 0;
  transform: rotate(45deg);
}

.openbtn::after {
  bottom: 0;
  transform: rotate(135deg);
}

.link:hover {
  opacity: 1 !important;
}

.link {
  display: flex;
  align-items: center;
}
.link--pink {
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .link--pink {
    justify-content: end;
    margin-top: 40px;
  }
}
.link--blue:hover .link-text--blue, .link--blue:hover .arrow--blue {
  background: #000;
}
.link--black:hover .link-text--black, .link--black:hover .arrow--black {
  background: #FC37D9;
  color: #fff;
}
.link--black:hover .arrow--black::before {
  background: #fff;
}
.link--black:hover .arrow--black::after {
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
}
.link--white:hover .link-text--white, .link--white:hover .arrow--white {
  background: #FC37D9;
  color: #fff;
}
.link--white:hover .arrow--white::before {
  background: #fff;
}
.link--white:hover .arrow--white::after {
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
}
.link--pink:hover .arrow--pink {
  background: var(--color-main);
}
.link--pink:hover .ticket-btn {
  background: var(--color-main);
}

.ticket-btn {
  align-items: center;
  background-color: #FC37D9;
  font-size: 5.2rem;
  padding: 2px 5px;
  min-width: 40px;
}
.ticket-btn--big {
  font-size: 8rem;
}
@media screen and (max-width: 767px) {
  .ticket-btn--big {
    justify-content: end;
    font-size: 4.7rem;
  }
}

.footer {
  padding: 90px 0 80px;
  background: #000;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 10px;
  }
}

.footer-inner {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logoList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 665px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .footer-logoList {
    gap: 20px;
    margin: 0 auto 30px;
  }
}

.footer-linkWrap {
  display: inline-block;
}

.footer-link {
  margin-top: 10px;
}

.footer-linkText {
  padding: 3px;
  font-size: 2.4rem;
  font-weight: 600;
}

.arrow--footer::before,
.arrow--footer::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.arrow--footer::before {
  background: white;
  width: 30px;
  height: 3px;
  transform: rotate(-45deg);
}

.arrow--footer::after {
  width: 20px;
  height: 20px;
  border: 3px solid white;
  border-left: 0;
  border-bottom: 0;
  top: -4px;
  left: 5px;
  transform: rotate(0deg) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}

.footer-copyWrap {
  margin-bottom: 40px;
}

.footer-copy + .footer-copy {
  margin-top: 15px;
}

.footer-text {
  display: inline-block;
  margin: 5px 0 0 15px;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .footer-text {
    margin: 5px 0 0 0;
  }
}

.footer-logoWrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-logoWrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}

.footer-logo {
  display: block;
  max-width: 255px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    max-width: 197px;
  }
}

.footer-xLogo {
  display: block;
  max-width: 35px;
}

.arrow--pink {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 100vmax;
  color: #fff;
  background: #FC37D9;
  z-index: 0;
}
.arrow--pink--big {
  width: 75px;
  height: 75px;
}
@media screen and (max-width: 767px) {
  .arrow--pink--big {
    width: 45px;
    height: 45px;
    z-index: -1;
  }
}

.arrow--pink::before,
.arrow--pink::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 0;
}

.arrow--pink::before {
  background: white;
  width: 30px;
  height: 3px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .arrow--pink::before {
    width: 30px;
    height: 3px;
  }
}

.arrow--pink::after {
  width: 20px;
  height: 20px;
  border: 3px solid white;
  border-left: 0;
  border-bottom: 0;
  top: -4px;
  left: 5px;
}

.arrow--pink--big::before {
  background: white;
  width: 50px;
  height: 6px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .arrow--pink--big::before {
    width: 25px;
    height: 3px;
  }
}

.arrow--pink--big::after {
  width: 35px;
  height: 35px;
  border: 6px solid white;
  border-left: 0;
  border-bottom: 0;
  top: -4px;
  left: 5px;
}
@media screen and (max-width: 767px) {
  .arrow--pink--big::after {
    width: 18px;
    height: 18px;
    border: 3px solid white;
    border-left: 0;
    border-bottom: 0;
  }
}

.link-text {
  font-size: 3rem;
}
.link-text--blue {
  background: var(--color-main);
}
.link-text--white {
  background: #fff;
  color: var(--color-main);
}
.link-text--black {
  background: #fff;
  color: #000;
}

.arrow {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 100vmax;
  background: #fff;
}
.arrow--blue {
  background: var(--color-main);
}

.arrow::before,
.arrow::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.arrow--black::before {
  background: #000;
  width: 18px;
  height: 2px;
}

.arrow--black::after {
  width: 15px;
  height: 15px;
  border: 2px solid #000;
  border-left: 0;
  border-bottom: 0;
  top: 0;
  left: 1px;
  transform: rotate(45deg);
}

.arrow--blue::before {
  background: #fff;
  width: 18px;
  height: 2px;
}

.arrow--blue::after {
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  top: 0;
  left: 1px;
  transform: rotate(45deg);
}

.arrow--blueRote::after {
  transform: rotate(0deg);
}

.arrow--blueRote::before {
  transform: rotate(-45deg);
}

.arrow--white::before {
  background: var(--color-main);
  width: 18px;
  height: 2px;
}

.arrow--white::after {
  width: 15px;
  height: 15px;
  border: 2px solid var(--color-main);
  border-left: 0;
  border-bottom: 0;
  top: 0;
  left: 1px;
  transform: rotate(45deg);
}

.heading {
  display: inline-block;
  margin-bottom: 40px;
  padding: 0 9px;
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .heading {
    margin-bottom: 20px;
    font-size: 4rem;
  }
}
.heading--blue {
  color: #fff;
  background: var(--color-main);
}
.heading--black {
  color: #000;
  background: #fff;
}
.heading--white {
  color: var(--color-main);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .heading--small {
    margin-bottom: 30px;
    font-size: 3.5rem;
  }
}

.access {
  max-width: 400px;
  margin-top: 200px;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .access {
    margin-top: 40px;
    padding: 20px;
  }
}
.access--about {
  max-width: 610px;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .access--about {
    margin: 40px auto 0;
  }
}

.access-title {
  margin-top: 30px;
  color: var(--color-main);
  font-size: 2.6rem;
  font-weight: 600;
}
.access-title--big {
  font-size: 3rem;
}

.access-map {
  width: 100%;
  height: 200px;
}
.access-map--about {
  height: 300px;
}
@media screen and (max-width: 767px) {
  .access-map--about {
    height: 200px;
  }
}

.access-text {
  margin-top: 15px;
  color: var(--color-main);
  font-weight: 600;
  line-height: 1.75;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .access-text {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}

/* ====================
 ページ読み込み
======================= */
/* ====================
 アバウト
======================= */
.about-introWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about-introWrap {
    flex-direction: column;
  }
}

.about-introTextWrap {
  max-width: 505px;
  padding: 40px;
  background: var(--color-main);
}
@media screen and (max-width: 767px) {
  .about-introTextWrap {
    padding: 20px;
  }
}

.about-introMovie {
  background: #fff;
  max-width: 400px;
  padding: 30px;
}
@media screen and (max-width: 1030px) {
  .about-introMovie {
    margin: 40px auto 0;
    padding: 20px;
  }
}

.about-introHeading {
  font-size: 2.6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about-introHeading {
    font-size: 2.4rem;
  }
}
.about-introHeading--big {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .about-introHeading--big {
    font-size: 2.6rem;
  }
}

.about-introText {
  margin-top: 15px;
  font-weight: 600;
  line-height: 1.76;
}
@media screen and (max-width: 767px) {
  .about-introText {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}

.about-introDateWrap {
  max-width: 505px;
  margin: 100px 105px 0 auto;
  padding: 40px;
  background: #000;
}
@media screen and (max-width: 767px) {
  .about-introDateWrap {
    margin: 40px auto 0;
    padding: 25px 20px;
  }
}

.about-introDate {
  font-size: 2.6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about-introDate {
    font-size: 2.4rem;
  }
}
.about-introDate--big {
  margin-top: 5px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .about-introDate--big {
    font-size: 2.4rem;
  }
}

.about-creator {
  max-width: 726px;
  margin-top: 90px;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .about-creator {
    margin-top: 40px;
    padding: 20px;
  }
}

.headingWrap {
  display: flex;
  gap: 10px;
}

.about-creatorTitle {
  margin-bottom: 15px;
  color: var(--color-main);
  font-size: 2.6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about-creatorTitle {
    font-size: 2.2rem;
  }
}
.about-creatorTitle--small {
  margin-bottom: 20px;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .about-creatorTitle--small {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}

.about-creatorText, .about-creatorText a {
  color: var(--color-main);
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about-creatorText, .about-creatorText a {
    font-size: 1.4rem;
  }
}

.about-creatorProfileWrap {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .about-creatorProfileWrap {
    margin-top: 30px;
  }
}

.about-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .about-info {
    flex-direction: column;
    margin-top: 40px;
  }
}

.about-tickets {
  max-width: 400px;
  padding: 40px 40px 20px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .about-tickets {
    margin: 0 auto;
    padding: 20px 20px 0;
  }
}

.about-contact {
  max-width: 505px;
  background: #000;
  margin-top: 300px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .about-contact {
    margin: 40px auto 0;
    padding: 20px;
  }
}

.about-contactTitle {
  font-size: 2.6rem;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about-contactTitle {
    font-size: 2.4rem;
  }
}

.about-contactMail {
  font-size: 3rem;
  font-weight: 600;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .about-contactMail {
    font-size: 2.4rem;
  }
}

.about-contactText {
  margin-top: 40px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .about-contactText {
    margin-top: 30px;
    font-size: 1.4rem;
    line-height: 1.86;
  }
}

/* ====================
 プライバシーポリシー
======================= */
.privacy {
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding: 20px;
  }
}

.privacy-heading {
  display: inline-block;
  background: var(--color-main);
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .privacy-heading {
    font-size: 4rem;
  }
}

.praivacy-headingText {
  margin: 50px 0 12px;
  font-size: 1.7rem;
  line-height: 1.75;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .praivacy-headingText {
    font-size: 1.5rem;
  }
}

.privacy-item {
  list-style-type: disc;
  list-style-position: inside;
  margin-left: 1.4em;
  text-indent: -1.4em;
  color: var(--color-main);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .privacy-item {
    font-size: 1.4rem;
  }
}

.privacy-textQ, .privacy-textA {
  color: var(--color-main);
  margin-top: 15px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .privacy-textQ, .privacy-textA {
    font-size: 1.5rem;
  }
}

.privacy-textQ {
  margin-top: 60px;
  font-size: 2.6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .privacy-textQ {
    margin-top: 40px;
    font-size: 1.8rem;
  }
}

.privacy-textA a {
  color: var(--color-main);
  text-decoration: underline;
}

/* ====================
 Q&A
======================= */
.qa {
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .qa {
    padding: 20px;
  }
}

.qa-heading {
  display: inline-block;
  background: var(--color-main);
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .qa-heading {
    font-size: 4rem;
  }
}

.qa-textQ {
  position: relative;
  margin-top: 60px;
  padding-left: 40px;
  color: var(--color-main);
  font-size: 2.6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .qa-textQ {
    margin-top: 40px;
    padding-left: 25px;
    font-size: 1.8rem;
  }
}

.qa-textQ::before {
  position: absolute;
  top: -1px;
  left: 0;
  content: "Q";
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .qa-textQ::before {
    font-size: 1.8rem;
  }
}

.qa-textA {
  margin-top: 15px;
  padding-left: 40px;
  color: var(--color-main);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .qa-textA {
    padding-left: 25px;
    font-size: 1.5rem;
    line-height: 1.57;
  }
}

/* ====================
 スピーカー
======================= */
.speakers-item {
  display: flex;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .speakers-item {
    flex-direction: column;
    padding: 20px;
  }
}
.speakers-item--first {
  display: block;
}
.speakers-item--firstItem {
  padding: 0;
}

.speakers-item + .speakers-item {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .speakers-item + .speakers-item {
    margin-top: 20px;
  }
}

.speakers-img {
  max-width: 190px;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .speakers-img {
    max-width: 95px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .speakers-textHeading {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .speakers-textHeadingSP {
    display: flex;
  }
}

.speakers-textHeadingWrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .speakers-textHeadingWrap {
    flex-direction: column;
  }
}

.speakers-textHeadingName {
  color: var(--color-main);
  font-size: 2.6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .speakers-textHeadingName {
    font-size: 1.6rem;
  }
}

.speakers-textHeadingNote {
  margin-top: 10px;
  color: var(--color-main);
  font-size: 1.4rem;
  line-height: 1.28;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .speakers-textHeadingNote {
    font-size: 1.2rem;
  }
}

.speakers-iconWrap {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .speakers-iconWrap {
    margin-left: auto;
  }
}

.speakers-icon img {
  width: 34px;
}
@media screen and (max-width: 767px) {
  .speakers-icon img {
    width: 28px;
  }
}

.speakers-text {
  margin-top: 30px;
  color: var(--color-main);
  font-size: 1.4rem;
  line-height: 1.86;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .speakers-text {
    margin-top: 15px;
    line-height: 1.71;
  }
}

/* ====================
トークセッション
======================= */
.talk {
  padding: 40px;
  background: var(--color-main);
}
@media screen and (max-width: 767px) {
  .talk {
    padding: 20px;
  }
}

.talk-item {
  margin-top: 100px;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .talk-item {
    margin-top: 40px;
    padding: 20px;
  }
}

.talk-tittleInner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}

.talk-time {
  color: var(--color-main);
  font-weight: 600;
}

.talk-title {
  margin-top: 15px;
  color: var(--color-main);
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .talk-title {
    font-size: 2.2rem;
  }
}

.talk-category {
  display: inline-block;
  margin-top: 15px;
  padding: 5px;
  color: var(--color-main);
  font-size: 1.4rem;
  border: 1px solid var(--color-main);
}

.talk-place {
  max-width: 42px;
}

.talk-text {
  margin-top: 40px;
  color: var(--color-main);
  line-height: 1.75;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .talk-text {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

.talk-textTitle {
  margin-top: 40px;
  color: var(--color-main);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .talk-textTitle {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

.talk-speakerList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .talk-speakerList {
    gap: 10px;
  }
}

.talk-speakerItem {
  max-width: 140px;
}
.talk-speakerItem--widthUnset {
  max-width: unset;
}

.talk-speakerImg {
  max-width: 140px;
}

.talk-speakerName {
  margin-top: 10px;
  color: var(--color-main);
  font-weight: 600;
}

.talk-speakerNote {
  margin-top: 10px;
  color: var(--color-main);
  font-size: 1.4rem;
  line-height: 1.2;
}

/* ====================
 トップページ
======================= */
/*=============================== */
.top-introTitle {
  max-width: 572px;
  margin: 0 auto;
}

.top-introTitleTextInner {
  display: flex;
  align-items: center;
}

.top-introTitleText {
  display: inline-block;
  margin-bottom: 20px;
  background: var(--color-main);
  font-size: 8rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .top-introTitleText {
    margin-bottom: 10px;
    font-size: 4.7rem;
  }
}
.top-introTitleText--day {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .top-introTitleText--day {
    margin-left: 10px;
  }
}
.top-introTitleText--small {
  padding: 13px 0 7px;
  font-size: 6rem;
  font-weight: 600;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .top-introTitleText--small {
    padding: 7px 0 5px;
    font-size: 3.5rem;
  }
}

.top-introLink {
  margin-top: 80px;
  justify-content: end;
}
@media screen and (max-width: 1030px) {
  .top-introLink {
    margin-top: 40px;
  }
}

.top-introMovie {
  background: #fff;
  max-width: 400px;
  margin-top: 174px;
  padding: 30px;
}
@media screen and (max-width: 1030px) {
  .top-introMovie {
    margin: 40px auto;
    padding: 20px;
  }
}

.mvAbout-movie {
  width: 339px;
  height: 188px;
}
@media screen and (max-width: 1030px) {
  .mvAbout-movie {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 339/188;
  }
}

.top-introMessage {
  max-width: 586px;
  margin: -100px 0 0 auto;
  background: #000;
}
@media screen and (max-width: 1030px) {
  .top-introMessage {
    margin: 40px auto 0;
  }
}

.top-introMessageTextInner {
  padding: 40px 50px;
}
@media screen and (max-width: 767px) {
  .top-introMessageTextInner {
    padding: 30px 20px;
  }
}

.top-introMessageHeading {
  color: #fff;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .top-introMessageHeading {
    font-size: 2rem;
  }
}
.top-introMessageHeading--big {
  margin-bottom: 20px;
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .top-introMessageHeading--big {
    font-size: 4rem;
  }
}

.top-introMessageText {
  margin-top: 30px;
  color: #fff;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .top-introMessageText {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

.linkWrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  padding-right: 31px;
}

.top-introMessageLink {
  justify-content: end;
  margin: 40px -50px -40px 0;
}
@media screen and (max-width: 767px) {
  .top-introMessageLink {
    margin: 20px -20px -30px 0;
  }
}

.top-speaker {
  max-width: 1030px;
  margin: 100px auto 0;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-speaker {
    margin: 40px auto 0;
    padding: 20px;
  }
}

.top-speakerList {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .top-speakerList {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

.top-speakerName {
  margin-top: 14px;
  color: var(--color-main);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-speakerName {
    font-size: 1.4rem;
  }
}

.top-speakerCom {
  margin-top: 10px;
  color: var(--color-main);
  font-size: 0.9rem;
  line-height: 1.17;
  letter-spacing: 0;
  font-weight: 600;
}

.top-lowerRightLink {
  justify-content: end;
  margin: 40px -40px -40px 0;
}
@media screen and (max-width: 767px) {
  .top-lowerRightLink {
    margin: 20px -20px -20px 0;
  }
}

.top-talk {
  margin-top: 100px;
  padding: 40px;
  background: var(--color-main);
}
@media screen and (max-width: 767px) {
  .top-talk {
    margin-top: 40px;
    padding: 20px;
  }
}

.top-talkInner {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 55px;
}
@media screen and (max-width: 767px) {
  .top-talkTable {
    display: grid;
    grid-template-columns: 37px 1fr;
  }
}

.top-talkTitle {
  margin-bottom: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .top-talkList {
    margin-left: 20px;
  }
}

.top-talkList li:last-child {
  border-bottom: 1px solid #fff;
}

.top-talkItemInner {
  padding: 18px 0;
  height: 137px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .top-talkItemInner {
    height: 157px;
  }
}
.top-talkItemInner--lage {
  height: 218px;
}
@media screen and (max-width: 767px) {
  .top-talkItemInner--lage {
    height: 255px;
  }
}
.top-talkItemInner--small {
  height: 115px;
  padding-top: 10px;
}
.top-talkItemInner--note {
  display: flex;
  align-items: center;
  height: 104px;
}
.top-talkItemInner--noteLage {
  display: flex;
  align-items: center;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .top-talkItemInner--noteLage {
    height: 215px;
  }
}

.top-talkItem {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.top-talkItemLinkWrap {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .top-talkItemLinkWrap {
    width: 85%;
  }
}

.top-talkItemText {
  margin: 10px 0;
  line-height: 1.4em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-talkItemText {
    font-size: 1.6rem;
  }
}
.top-talkItemText--category {
  display: inline-block;
  padding: 3px 6px;
  font-size: 1.2rem;
  border: 1px solid #fff;
}

.top-talkArrowWrap {
  margin: auto 0;
}

.top-talkArrow {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 100vmax;
  background: #fff;
}

.top-talkArrow::before,
.top-talkArrow::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.top-talkArrow::before {
  background: var(--color-main);
  width: 18px;
  height: 2px;
}

.top-talkArrow::after {
  width: 15px;
  height: 15px;
  border: 2px solid var(--color-main);
  border-left: 0;
  border-bottom: 0;
  top: 0;
  left: 1px;
  transform: rotate(45deg);
}

.top-talkTimeList {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .top-talkTimeList {
    margin-top: -10px;
  }
}

.top-talkTimeItem {
  margin-bottom: 118px;
  font-size: 2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .top-talkTimeItem {
    margin-bottom: 137px;
  }
}

.top-work {
  max-width: 600px;
  margin-top: 100px;
  margin-right: 105px;
  margin-left: auto;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-work {
    margin: 35px auto 0;
    padding: 20px;
  }
}

.top-workItem {
  padding: 40px 0;
}

.top-workItem:first-child {
  padding-top: 0;
}

.top-workItem:last-child {
  padding-bottom: 0;
}

.top-workItem + .top-workItem {
  border-top: 1px solid var(--color-main);
}

.top-workTitle {
  margin-bottom: 30px;
  color: var(--color-main);
  font-size: 2.8rem;
  line-height: 1.3em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-workTitle {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}

.top-workText {
  color: var(--color-main);
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 600;
}
.top-workText--small {
  font-size: 1.6rem;
}

.top-workNameWrap {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.top-workName {
  color: var(--color-main);
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-workName {
    font-size: 1.4rem;
  }
}

.top-workLink {
  position: relative;
  background: var(--color-main);
  font-size: 3rem;
}

.top-exh {
  max-width: 820px;
  margin-top: 100px;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-exh {
    margin-top: 40px;
    padding: 20px;
  }
}

.top-exhList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .top-exhList {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.live {
  max-width: 685px;
  margin: 100px auto 0;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .live {
    margin-top: 40px;
    padding: 20px;
  }
}

.live-title {
  color: var(--color-main);
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .live-title {
    font-size: 2.2rem;
  }
}

.live-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .live-list {
    gap: 10px;
    margin-top: 20px;
  }
}

.top-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .top-info {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 40px;
  }
}

.tickets {
  max-width: 400px;
  margin-left: 10px;
  padding: 40px;
  background: #000;
}
@media screen and (max-width: 767px) {
  .tickets {
    padding: 20px;
  }
}

.ticketsText {
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .ticketsText {
    margin-bottom: 15px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.ticketsText--blue {
  color: var(--color-main);
}

.tickets-item {
  padding: 20px 0;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .tickets-item {
    padding: 20px 0 15px;
  }
}
.tickets-item--blue {
  border-top: 1px solid var(--color-main);
}

.tickets-text {
  font-weight: 500;
  line-height: 1.75;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .tickets-text {
    font-size: 1.4rem;
  }
}
.tickets-text--blue {
  color: var(--color-main);
}

.tickets-textBig {
  font-size: 5.2rem;
  font-weight: 600;
}
.tickets-textBig--blue {
  color: var(--color-main);
}

.tickets-textWrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.tickets-textSmall {
  font-size: 1.2rem;
}
.tickets-textSmall--blue {
  color: var(--color-main);
}

.top-sponsor {
  max-width: 447px;
  margin: 118px auto 100px;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-sponsor {
    margin: 40px auto 0;
    padding: 20px;
  }
}

.top-sponsorList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .top-sponsorList {
    gap: 10px;
  }
}

/* ====================
ワークショップ
======================= */
.workshop {
  max-width: 713px;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .workshop {
    padding: 20px;
  }
}
.workshop--02 {
  margin-top: 100px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .workshop--02 {
    margin-top: 40px;
  }
}

.workshop-time {
  color: var(--color-main);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .workshop-time {
    font-size: 1.4rem;
  }
}

.workshop-text {
  margin-top: 30px;
  color: var(--color-main);
  line-height: 1.75;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .workshop-text {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.85;
  }
}

.workshop-title {
  color: var(--color-main);
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .workshop-title {
    margin-top: 5px;
    font-size: 2.2rem;
    line-height: 1.3;
  }
}

.workshop-list {
  list-style: disc;
}

.workshop-item {
  margin-left: 20px;
  color: var(--color-main);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .workshop-item {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}

.workshop-lecturerList {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .workshop-lecturerList {
    gap: 15px;
  }
}

.workshop-lecturerItem {
  max-width: 142px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .workshop-lecturerItem {
    margin-top: 0;
  }
}

.workshop-lecturerName {
  margin-top: 5px;
  color: var(--color-main);
  line-height: 1.75;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .workshop-lecturerName {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.workshop-lecturerNote {
  color: var(--color-main);
  font-size: 1.2rem;
  line-height: 1.16;
}/*# sourceMappingURL=style.css.map */