@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  word-break: break-word;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  font-size: 62.5%;
  height: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

li {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

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

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

picture {
  max-width: 100%;
}

input, select {
  vertical-align: middle;
}

br {
  line-height: 0;
}

input, textarea, select, button {
  font: inherit;
}

/* safariでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

:root {
  --header-height: 90px;
  --text-size: 1.8rem;
  --text-size-sp: 1.6rem;
  --h2-size: 5rem;
  --main-color: #f98f06;
  --sub-color: #54afde;
  --about-sub-color: #5196f3;
  --access-color: #3a50a2;
  --font-color-black: #333333;
  --platinum-color: #998578;
  --gold-color: #d7a01e;
  --silver-color: #b6b6b6;
  --special-color: #cb41d4;
  --sponsorship-color: #6141d4;
  --main-radius: 35px;
  --container-width: 90%;
  --container-max: 960px;
  --container-max-large: 1080px;
  --modal-index: 9999;
  --header-index: 400;
  --fixed-bnr-index: 300;
  --main-index: 10;
}
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
}

main {
  position: relative;
  z-index: var(--main-index);
}
main :target {
  scroll-margin-top: calc(var(--header-height) + 70px);
}
@media (max-width: 768px) {
  main :target {
    scroll-margin-top: calc(var(--header-height) + 40px);
  }
}

h2 {
  font-size: var(--h2-size);
  text-align: center;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: italic;
}

p,
li,
h3,
time,
button,
address,
a,
div {
  font-size: var(--text-size);
}

@media (max-width: 768px) {
  p,
  li,
  h3,
  time,
  button,
  address,
  a,
  div {
    font-size: var(--text-size-sp);
  }
}
button {
  cursor: pointer;
}

a,
button {
  transition: 0.4s;
}

a:hover,
button:hover {
  opacity: 0.6;
  transition: 0.4s;
}

.about a:hover {
  opacity: 1;
}
.about a.about__access-link:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media (max-width: 1259px) {
  .pc-header {
    display: none;
  }
  .header {
    padding: 10px 14px;
  }
  .header .nav__icons {
    justify-content: left;
    margin-right: 0;
    padding: 14px;
  }
}
@media (min-width: 1259px) {
  .sp-header {
    display: none;
  }
}
@media (max-width: 768px) {
  html {
    overflow-x: clip;
  }
  body {
    overflow-x: clip;
  }
  h2 {
    font-size: 3rem;
  }
}
.container {
  width: var(--container-width);
  max-width: var(--container-max);
  margin-inline: auto;
}
.container--large {
  max-width: var(--container-max-large);
}

.header {
  font-size: var(--text-size);
  padding: 20px;
  display: grid;
  justify-content: space-between;
  grid-auto-flow: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  transition: all 0.3s;
  z-index: var(--header-index);
}
.header.change-color {
  background: var(--main-color);
}
.header .nav {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
}
.header .nav__menu {
  display: grid;
  grid-auto-flow: column;
  gap: 30px;
  margin-right: 47px;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
.header .nav__item {
  display: grid;
  align-items: center;
  text-align: center;
  height: 50px;
}
.header .nav__icons {
  display: grid;
  grid-auto-flow: column;
  gap: 30px;
  align-items: center;
  text-align: center;
  margin-right: 47px;
}

.hamburger-overlay {
  position: fixed;
  right: 0;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: black;
  transition: all 1.1s;
}
.hamburger-overlay__line:nth-of-type(1) {
  top: 14px;
  background-color: black;
}
.hamburger-overlay__line:nth-of-type(2) {
  top: 23px;
  background-color: black;
}
.hamburger-overlay__line:nth-of-type(3) {
  top: 32px;
  background-color: black;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(45deg, rgb(213, 158, 98) 0%, rgb(201, 232, 233) 100%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.active .nav-overlay__list > .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-overlay.active .nav-overlay__item:nth-child(5) {
  transition-delay: 0.5s;
}
.nav-overlay.active .nav-overlay__item:nth-child(6) {
  transition-delay: 0.6s;
}
.nav-overlay.active .nav-overlay__item:nth-child(7) {
  transition-delay: 0.7s;
}
.nav-overlay.active .nav-overlay__item:nth-child(8) {
  transition-delay: 0.8s;
}
.nav-overlay.active .nav-overlay__cta {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay__content {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: 40px;
  padding: 12vh 20px 0 0;
  box-sizing: border-box;
}
.nav-overlay__list {
  flex: 1 1 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto repeat(6, minmax(0, 1fr));
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-overlay__list > .nav-overlay__item {
  display: flex;
  align-items: center;
  min-height: 0;
}
.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.nav-overlay__link {
  display: inline-block;
  padding: 0 14px;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-overlay__link:hover {
  color: #4a90e2;
}
.nav-overlay__cta {
  flex-shrink: 0;
  width: 90%;
  max-width: 34rem;
  margin-inline: auto;
  padding: 1.4rem 0 max(5vh, env(safe-area-inset-bottom, 0px));
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.85s, transform 0.6s 0.85s;
}
.nav-overlay__cta .cta_button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.nav-overlay__cta .cta_button_sub {
  left: 50%;
  translate: -50% -50%;
  white-space: nowrap;
}

@media (max-height: 580px) {
  .nav-overlay__content {
    padding-top: 72px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-overlay__list {
    display: block;
    flex: 0 0 auto;
  }
  .nav-overlay__list > .nav-overlay__item {
    display: block;
  }
  .nav-overlay__link {
    padding: 8px 14px;
    font-size: 20px;
  }
  .nav-overlay__cta {
    padding-top: 1rem;
    padding-bottom: max(3vh, env(safe-area-inset-bottom, 0px));
  }
}
.header .sp .nav__icons {
  align-items: left !important;
  text-align: left !important;
  width: auto;
  padding: 0 14px;
}

@media (max-width: 768px) {
  .header {
    padding: 10px 14px;
  }
  .header .nav__icons {
    justify-content: left;
    margin-right: 0;
    padding: 14px;
  }
}
.bg_container {
  position: relative;
}
.bg_container__grey {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: -999999;
}
.bg_container__grey img {
  max-width: none;
  width: 100%;
}

.luxy-el {
  will-change: transform;
  -webkit-overflow-scrolling: touch;
}

.wrapper {
  position: relative;
  z-index: -999;
  overflow-x: clip;
  -webkit-overflow-scrolling: touch;
}

.gem {
  position: absolute;
}

.gem01 {
  left: 2vw;
  top: -22vh;
}

.gem02 {
  left: -2vw;
  top: 28vh;
}

.gem03 {
  left: 10vw;
  top: 63vh;
}

.gem04 {
  left: -3vw;
  top: 80vh;
  z-index: -800;
}

.gem05 {
  right: 1vw;
  top: -16vh;
  z-index: -800;
}

.gem06 {
  right: 100px;
  top: 32vh;
  z-index: -800;
}

.gem07 {
  right: 12vw;
  top: 48vh;
}

.gem08 {
  right: 50px;
  top: 40vh;
  z-index: -850;
}

@media (max-width: 768px) {
  .gem01 {
    left: -30vw;
    top: -191vh;
    width: 50%;
    height: auto;
  }
  .gem02 {
    left: -30vw;
    top: -141vh;
    width: 40%;
    height: auto;
  }
  .gem03 {
    left: -50vw;
    top: -130vh;
  }
  .gem04 {
    left: -30vw;
    top: -108vh;
    width: 50%;
    height: auto;
  }
  .gem05 {
    right: -25vw;
    top: -131vh;
    width: 42%;
    height: auto;
  }
  .gem06 {
    right: -50vw;
    top: -158vh;
  }
  .gem07 {
    right: -32vw;
    top: -90vh;
    width: 42%;
    height: auto;
  }
  .gem08 {
    right: -50vw;
    top: -90vh;
  }
  .wrapper {
    width: 100%;
  }
}
.footer {
  position: relative;
  z-index: var(--footer-index);
  background-color: #dedede;
  padding: 32px 0 16px 0;
}
.footer .container {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
.footer__branding {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
}
.footer__top {
  width: 41px;
  height: 41px;
  background-color: #8c8c8c;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  position: relative;
}
.footer__top::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 3px solid;
  border-color: transparent transparent #ffffff #ffffff;
  transform: rotate(135deg);
  margin-top: 6px;
}
.footer__sns {
  margin-top: 46px;
  display: grid;
  grid-auto-flow: column;
  gap: 28px;
  justify-content: left;
}
.footer__container {
  text-align: center;
  margin-top: 15px;
}
.footer__copyright {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .footer__sns {
    justify-content: center;
    gap: 20vw;
    margin-top: 38px;
  }
  .footer__container {
    margin-block: 32px 100px;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(61, 61, 61, 0.6);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: var(--modal-index);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal--active {
  opacity: 1;
  visibility: visible;
}
.modal__container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1062px;
  width: 90%;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-top: 60px;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--sub-color);
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: var(--sub-color);
  translate: -50% -50%;
}
.modal__close::before {
  rotate: 45deg;
}
.modal__close::after {
  rotate: -45deg;
}
.modal__content {
  background: #fff;
  padding: 50px 60px;
  border-radius: 20px;
  text-align: left;
  color: var(--font-color-black);
  border: 3px solid var(--main-color);
}
.modal__content .map {
  margin-top: 20px;
}
.modal__wrapper {
  max-height: 60vh;
  overflow-y: auto;
}
.modal--active .modal__container {
  transform: translateY(0);
  opacity: 1;
}

.speakers__modal-wrapper {
  display: grid;
  grid-auto-flow: column;
  justify-content: left;
  gap: 70px;
}
.speakers__modal-img {
  max-width: 300px;
  width: 100%;
}
.speakers__modal-name {
  margin-top: 10px;
}
.speakers__modal-name-text {
  font-size: 2.2rem;
}
.speakers__modal-box {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 20px;
}
.speakers__modal-date {
  width: 18%;
  margin-top: 14px;
}
.speakers__modal-text {
  width: 82%;
  margin-top: 14px;
}
.speakers__modal-company {
  line-height: 3.2rem;
}
.speakers__modal-introduction {
  padding-top: 20px;
  line-height: 3.2rem;
}

.modal .timeline__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vh 2vw;
  margin-top: 20px;
}
.modal .timeline__item {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  align-content: center;
  height: 100%;
  box-sizing: border-box;
  gap: 20px;
  background-color: #ebebeb;
  padding: 20px;
  border-radius: 20px;
  border: solid 2px var(--main-color);
}
.modal .timeline__item-minisession {
  padding-bottom: 4rem;
}
.modal .timeline__item-text {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .modal__container {
    width: 98%;
  }
  .modal__content {
    padding: 60px 10px 20px 10px;
  }
  .modal__close {
    border: 2px solid var(--sub-color);
  }
  .modal .timeline__list {
    display: block;
    margin-top: 10px;
  }
  .modal .timeline__item {
    margin: 20px 0 10px;
  }
  .speakers__modal-wrapper {
    grid-auto-flow: row;
    padding-inline: 10px;
    gap: 20px;
  }
  .speakers__modal-date {
    width: 24%;
  }
  .speakers__modal-text {
    width: 76%;
  }
  .speakers__modal-company {
    line-height: 2.8rem;
  }
  .speakers__modal-introduction {
    line-height: 2.8rem;
    padding-top: 8px;
  }
}
.kv__cta.-banner {
  text-align: right;
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: var(--fixed-bnr-index);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease-in, visibility 0.5s ease-in;
  margin: 0;
}
.kv__cta.-banner.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.kv__cta.-banner .cta_button {
  border-radius: 10px 0 0 10px;
  padding: 25px 43px;
  position: relative;
}
.kv__cta.-banner .cta_button:hover {
  transform: translateX(11px);
  transition: 0.4s;
}
.kv__cta.-banner .cta_button_main {
  padding-top: 2px;
}

@media (max-width: 768px) {
  .banner {
    width: 200px;
  }
  .kv__cta.-banner .cta_button {
    padding: 22px 37px;
  }
  .kv__cta.-banner .cta_button_main::before {
    margin-right: 28px;
  }
  .kv__cta.-banner .cta_button_main::after {
    margin: 0 0 1px 26px;
  }
}
.kv {
  background: #E2BF5C;
  background: linear-gradient(45deg, rgb(226, 191, 92) 0%, rgb(236, 188, 133) 50%, rgb(205, 246, 252) 100%);
}
.kv__container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.kv__bg {
  position: absolute;
  left: 0;
  bottom: -30vh;
  max-width: 1000px;
  width: 70%;
  min-width: 800px;
  z-index: 0;
}
.kv__bg-01 {
  position: absolute;
  top: 63px;
  left: 63px;
  width: 7.8571vw;
}
.kv__bg-02 {
  position: absolute;
  top: 298px;
  left: 0;
  width: 6.25vw;
}
.kv__bg-03 {
  position: absolute;
  top: 464px;
  left: 0;
  width: 17.2619vw;
}
.kv__bg-04 {
  position: absolute;
  top: 0;
  right: 344px;
  width: 9.0476vw;
}
.kv__bg-05 {
  position: absolute;
  top: 0;
  right: 144px;
  width: 16.7857vw;
  max-width: 240px;
}
.kv__bg-06 {
  position: absolute;
  bottom: 363px;
  right: 0;
  width: 13.4524vw;
  max-width: 180px;
}
.kv__bg-07 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18.3333vw;
  max-width: 250px;
}
.kv__wrapper {
  max-width: 1040px;
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.kv__main-title {
  max-width: 766px;
  margin-top: 20vh;
  position: relative;
}
.kv__logo {
  width: 22%;
  position: absolute;
  top: 0;
  right: 0;
  translate: 46% -30%;
}
.kv__time {
  display: block;
  text-align: right;
}
.kv__time-img {
  padding-top: 7vh;
  max-width: 568px;
  width: 60%;
  min-width: 400px;
}
.kv__cta {
  text-align: center;
  margin-block: 10vh 4vh;
  position: relative;
}
.kv__cta.-sponsor {
  margin-block: 5vh 10vh;
  margin-left: 0.4em;
}
.kv__cta.-sponsor .cta_button {
  background: transparent;
  border-bottom: 3px solid var(--sub-color);
  padding: 0px 2px 6px 1px;
  border-radius: 0;
}
.kv__cta.-sponsor .cta_button .cta_button_main_02 {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.7rem;
  align-items: center;
}
.kv__cta.-sponsor .cta_button .cta_button_main_02::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 2px solid;
  border-color: transparent transparent #ffffff #ffffff;
  transform: rotate(225deg);
  margin-left: 13px;
}
.kv__info-wrapper {
  width: 100%;
  background-color: var(--main-color);
}
.kv__info-wrapper a {
  width: 72.5rem;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .kv__info-wrapper {
    padding-inline: 1rem;
  }
  .kv__info-wrapper a {
    width: 100%;
  }
}
.kv__info-link {
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
  color: #ffffff;
  font-size: var(--text-size);
  padding: 7px 0;
}
.kv__info-link:first-child {
  padding-top: 22px;
}
@media (max-width: 768px) {
  .kv__info-link:first-child {
    padding-top: 0.5rem;
  }
}
.kv__info-link:last-child {
  padding-bottom: 22px;
}
@media (max-width: 768px) {
  .kv__info-link:last-child {
    padding-bottom: 0.5rem;
  }
}
.kv__info-icon {
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta_button {
  background: #F09F8E;
  background: radial-gradient(circle, rgb(119, 180, 221) 0%, rgb(84, 172, 222) 88%, rgb(81, 187, 209) 100%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  padding: 17px 35px;
}
.cta_button_sub {
  position: absolute;
  top: 0;
  translate: 0 -50%;
  color: var(--sub-color);
  background-color: #fff;
  border: 1px solid var(--sub-color);
  padding-inline: 10px;
  border-radius: 3px;
  font-size: 1.4rem;
  line-height: 2.6rem;
}
.cta_button_main {
  color: #ffffff;
  padding-top: 6px;
  font-size: 2.2rem;
  font-weight: 900;
  align-items: center;
}
.cta_button_main::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 25px;
  background-image: url("../img/edit.svg");
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 28px;
}
.cta_button_main::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 3px solid;
  border-color: transparent transparent #ffffff #ffffff;
  transform: rotate(225deg);
  margin: 0 0 2px 28px;
}

@media (max-width: 768px) {
  .kv__wrapper {
    width: 90%;
  }
  .kv__time-img {
    min-width: 200px;
    padding-top: 7vh;
    width: 100%;
    max-width: 600px;
  }
  .kv__cta {
    margin-inline: auto;
  }
  .kv__info-link {
    padding: 10px 0;
  }
  .kv__info-date {
    font-size: 1.3rem;
  }
  .kv__info-text {
    font-size: 1.3rem;
  }
  .kv__main-title {
    margin-top: 16vh;
  }
  .kv__main-title picture img {
    margin-right: 20px;
    width: 90%;
  }
  .kv__logo {
    translate: 13% -43%;
    width: 24%;
  }
  .kv__bg {
    min-width: 360px;
    left: -34vw;
    bottom: -20vw;
  }
  .kv__bg-01 {
    width: 100px;
    left: 0;
  }
  .kv__bg-02 {
    width: 50px;
    left: 3vw;
  }
  .kv__bg-03 {
    width: 100px;
    left: 0;
  }
  .kv__bg-04 {
    width: 90px;
    right: 0;
  }
  .kv__bg-05 {
    width: 150px;
    right: -10vw;
    top: 12vh;
  }
  .kv__bg-06 {
    width: 70px;
    right: -2vw;
    top: 42vh;
  }
  .kv__bg-07 {
    width: 200px;
    bottom: -20vh;
    right: 1vw;
  }
  .cta_button_sub {
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
  .cta_button_main {
    font-size: 1.6rem;
  }
  .cta_button_main::before {
    width: 15px;
    height: 18px;
    margin-right: 17px;
  }
  .cta_button_main::after {
    width: 4px;
    height: 4px;
    margin: 0 0 1px 14px;
  }
  .kv__cta.-sponsor {
    margin-block: 3vh 10vh;
  }
  .kv__cta.-sponsor .cta_button .cta_button_main_02 {
    font-size: 1.5rem;
  }
}
.about {
  padding-top: 100px;
  font-size: var(--text-size);
}
.about__image {
  padding-top: 62px;
  text-align: center;
}
.about__sub-heading {
  text-align: center;
}
.about__sub-heading h3 {
  font-size: 3.4rem;
}
.about__sub-heading p {
  font-size: 2.4rem;
}
.about__intro, .about__description {
  text-align: center;
  font-size: var(--text-size);
  padding-top: 46px;
  line-height: 4.8rem;
}
.about__description {
  padding-top: 20px;
}
.about__bold {
  font-weight: bold;
}
.about__emphasis {
  color: var(--main-color);
}
.about__info {
  color: #ffffff;
  background-color: var(--main-color);
  margin: 53px auto 0 auto;
  padding: 32px 140px 38px 140px;
  text-align: left;
  border-radius: var(--main-radius);
}
.about__info-date {
  font-size: 2.4rem;
}
.about__info-big {
  font-size: 3.8rem;
}
.about__info-place {
  font-size: 24px;
  color: #333333;
}
.about__venue {
  display: grid;
  grid-auto-flow: column;
  margin-top: 30px;
  gap: 16px;
}
.about__venue--a, .about__venue--b {
  background-color: var(--about-sub-color);
  padding: 31px 39px 36px 36px;
  border-radius: 23px;
}
.about__venue-label {
  font-size: 1.6rem;
  margin-top: 1.5rem;
}
.about__venue-instructions {
  font-size: 1.6rem;
  margin-top: 2.6rem;
}
.about__venue-instructions ul {
  margin-left: 1.5rem;
}
.about__venue-instructions li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1.6rem;
}
.about__venue-instructions li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 12px;
  background-image: url("../img/bullet_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.about__venue-note {
  font-size: 1.2rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .about__venue-note {
    font-size: 1.4rem;
  }
}
.about__venue-big {
  font-size: 2.4rem;
}
.about__venue-button {
  color: #ffffff;
  margin-top: 24px;
  position: relative;
  margin-left: -14px;
}
.about__venue-button::after {
  content: "+";
  background-color: var(--sub-color);
  border-radius: 50%;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  margin-left: 5px;
}
.about__map-wrapper iframe {
  max-width: 720px;
  width: 100%;
  height: 330px;
  margin-top: 2.6rem;
}
.about__map-link {
  background-color: var(--sub-color);
  color: var(--font-color-white);
  padding: 14px 26px 14px 26px;
  border-radius: 10px;
}
.about__links {
  margin-top: 30px;
  display: grid;
  justify-content: center;
  grid-auto-flow: column;
  gap: 40px;
}
.about-detail {
  font-size: 3rem;
  padding-left: 10px;
}
.about-big {
  font-size: 3.5rem;
}
.about__note {
  margin-top: 30px;
  line-height: 3.6rem;
}
.about__access-link {
  display: block;
  background-color: var(--sub-color);
  color: var(--font-color-black);
  padding: 12px 31px 15px 37px;
  margin: 27px auto 0 auto;
  width: 50%;
  min-width: 300px;
  border-radius: 10px;
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 18px;
}
.about__access-link::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: transparent transparent var(--font-color-black) var(--font-color-black);
  transform: rotate(225deg);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .about {
    padding-top: 60px;
    padding-inline: 1.1rem;
  }
  .about__image {
    padding-top: 22px;
    width: 90%;
    max-width: 360px;
    margin-inline: auto;
  }
  .about__info {
    padding: 20px 16px 44px 16px;
    margin-top: 40px;
    border-radius: 14px;
  }
  .about__info-date {
    font-size: 1.9rem;
  }
  .about__info-big {
    font-size: 2.8rem;
  }
  .about__info-place {
    font-size: 2rem;
    margin-top: 3px;
  }
  .about__venue {
    grid-auto-flow: row;
    margin-top: 16px;
  }
  .about__venue--a {
    padding: 10px 10px 14px 10px;
    border-radius: 10px;
  }
  .about__venue--b {
    padding: 22px 30px;
    border-radius: 10px;
  }
  .about__venue-button {
    margin: 10px 0 0 3px;
  }
  .about__venue-detail {
    font-size: 2rem;
  }
  .about__venue-big {
    font-size: 2.4rem;
  }
  .about__intro, .about__description {
    font-size: var(--text-size-sp);
    line-height: 3.4rem;
    padding-top: 20px;
  }
  .about__intro {
    padding-top: 30px;
  }
  .about__note {
    margin-top: 14px;
    font-size: var(--text-size-sp);
    line-height: 3rem;
  }
}
.gem09 {
  left: -1.7vw;
  top: 61vh;
}

.gem10 {
  left: 9vw;
  top: 109vh;
  z-index: -50;
}

.gem11 {
  left: 8vw;
  top: 169vh;
}

.gem12 {
  right: 1.3vw;
  top: 150vh;
}

.speakers {
  position: relative;
  margin-top: 100px;
}
.speakers__bgimg {
  position: absolute;
  top: 80px;
  right: 0;
  width: 80%;
  max-width: 1000px;
  z-index: -999;
}
.speakers__featured {
  position: relative;
  display: grid;
  grid-auto-flow: row;
  justify-content: left;
  gap: 36px;
  margin: 58px auto 0 auto;
  background-color: #ffffff;
  border: 3px solid var(--main-color);
  padding: 56px 120px 35px 120px;
  overflow: hidden;
  border-radius: var(--main-radius);
}
.speakers__featured-image-box {
  display: flex;
  align-items: center;
}
.speakers__featured-name {
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.speakers__featured-name .speakers__item-button {
  text-align: left;
  line-height: 7rem;
  font-size: 2.4rem;
}
.speakers__session {
  background-color: #ffffff;
  border: 3px solid var(--main-color);
  padding: 56px 120px 46px 120px;
  margin: 38px auto 0 auto;
  border-radius: var(--main-radius);
}
.speakers__session-title {
  display: inline;
  font-weight: 600;
  line-height: 1.45em;
  padding: 0 5px;
  background: linear-gradient(transparent 0%, var(--main-color) 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #ffffff;
  font-size: 3.3rem;
}
.speakers__session-description {
  margin-top: 30px;
  text-align: justify;
  line-height: 3.6rem;
}
.speakers__session-description.description-en {
  text-align: left;
}
.speakers__profile-box {
  display: grid;
  grid-auto-flow: column;
  justify-content: left;
  gap: 30px;
}
.speakers__profile-button {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 110px;
  width: 110px;
  text-align: left;
  border-top-left-radius: 100%;
  border-top: 3px solid var(--sub-color);
  border-left: 3px solid var(--sub-color);
  text-align: right;
  line-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.speakers__profile-button:hover {
  opacity: 0.4;
}
.speakers__profile-text {
  display: inline-flex;
  align-items: center;
  translate: 5% 25%;
  color: var(--sub-color);
}
.speakers__profile-text::after {
  content: "+";
  padding-left: 2px;
}
.speakers__tags {
  display: grid;
  grid-auto-flow: column;
  justify-content: left;
  margin-bottom: 20px;
}
.speakers__tag {
  border: 1px solid var(--font-color-black);
  padding: 4px 7px;
}
.speakers__tag:first-child {
  margin-right: 10px;
}
.speakers__title {
  display: inline;
  font-weight: 600;
  line-height: 1.4em;
  padding: 5px;
  background: linear-gradient(transparent 0%, var(--main-color) 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #ffffff;
  font-size: 3.6rem;
}
.speakers__description {
  margin-top: 30px;
  text-align: justify;
  line-height: 3.6rem;
}
.speakers__company {
  margin-top: 10px;
  line-height: 3rem;
}
.speakers__name {
  line-height: 5rem;
}
.speakers__name-text {
  font-size: 2.2rem;
}
.speakers__list {
  margin-top: 55px;
  display: grid;
  width: 100%;
  gap: 5vh 1vw;
}
.speakers__item {
  display: grid;
  grid-auto-flow: column;
  justify-content: left;
}
.speakers__item-info {
  margin-left: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.speakers__item-name {
  margin-bottom: 2px;
}
.speakers__item-name-text {
  font-size: 2rem;
}
.speakers__item-company {
  margin-bottom: 6px;
}
.speakers__item-button {
  color: var(--sub-color);
}

@media (max-width: 768px) {
  .speakers {
    margin-top: 50px;
  }
  .speakers__bgimg {
    width: 100%;
    z-index: -9999;
    width: 130%;
    height: auto;
    right: -50%;
    top: 360px;
  }
  .speakers__featured {
    grid-auto-flow: row;
    padding: 22px 16px 30px 16px;
    margin-top: 24px;
    gap: 20px;
    border-radius: 14px;
  }
  .speakers__featured-image-box {
    text-align: center;
  }
  .speakers__featured-name {
    width: 50vw;
  }
  .speakers__featured-name .speakers__item-button {
    line-height: 3rem;
    font-size: 1.8rem;
  }
  .speakers__featured-name .speakers__name {
    line-height: 4rem;
  }
  .speakers__featured-name .speakers__name-text {
    font-size: 1.9rem;
  }
  .speakers__tags {
    margin-bottom: 10px;
  }
  .speakers__tag {
    font-size: 1.4rem;
  }
  .speakers__description {
    margin-top: 16px;
    line-height: 3rem;
    font-size: var(--text-size-sp);
  }
  .speakers__company {
    line-height: 2.2rem;
    font-size: 1.5rem;
  }
  .speakers__profile-box {
    justify-items: anchor-center;
    gap: 10px;
  }
  .speakers__profile-button {
    height: 100px;
    width: 100px;
  }
  .speakers__profile-text {
    font-size: 1.6rem;
  }
  .speakers__session {
    margin-top: 32px;
    padding: 30px 16px 30px 16px;
    border-radius: 14px;
  }
  .speakers__session-title {
    font-size: 2.2rem;
    line-height: 4rem;
  }
  .speakers__session-description {
    margin-top: 16px;
    line-height: 3rem;
    font-size: var(--text-size-sp);
  }
  .speakers__list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 3.8vh 0;
    margin-top: 20px;
  }
  .speakers__title {
    font-size: 2.2rem;
    line-height: 4rem;
  }
  .speakers__item-company {
    font-size: 1.5rem;
  }
  .speakers__item-image[src*=session_img_coming] {
    width: 124px;
  }
}
@media (min-width: 769px) {
  .speakers__modal-img {
    position: sticky;
    top: 0;
  }
}
.timetable {
  --timeline-border-color: #c1c1c1;
  --timeline-point-color: var(--main-color);
  --timeline-border-width: 3px;
  --timeline-point-position: 30px;
  --timeline-point-size: 10px;
  --timetable-line-gap: 20px;
  --timetable-row-unit: 48px;
  margin-top: 100px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .timetable__body {
    overflow: hidden;
  }
}
.timetable__content {
  display: grid;
  grid-template-columns: 1fr var(--timetable-line-gap) 1fr;
}
@media (max-width: 768px) {
  .timetable__content.js-table-slide-target {
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    transition: transform 0.25s ease, height 0.25s ease;
    transform: translateX(0);
  }
}
@media (min-width: 769px) {
  .timetable__content {
    --timeline-row-count: 45;
    grid-template-rows: repeat(var(--timeline-row-count), minmax(var(--timetable-row-unit), auto));
    grid-auto-rows: minmax(var(--timetable-row-unit), auto);
    row-gap: 10px;
    align-items: stretch;
  }
}
.timetable__vanue {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .timetable__vanue {
    flex: 0 0 50%;
    min-width: 0;
    gap: 0;
  }
}
@media (min-width: 769px) {
  .timetable__vanue {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1/-1;
    gap: 15px;
  }
}
.timetable__vanue-line {
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .timetable__vanue-line {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
  }
}
@media (min-width: 769px) {
  .timetable__vanue-line {
    grid-row: 2/-1;
  }
  .timetable__vanue-line::before {
    content: "";
    width: 2px;
    position: absolute;
    inset: var(--timeline-point-position) 0 0;
    margin: auto;
    background-color: var(--timeline-border-color);
  }
}
@media (max-width: 768px) {
  .timetable__vanue .timeline__hall-title {
    display: none;
  }
}
@media (max-width: 768px) {
  .timetable {
    margin-top: 50px;
    padding-bottom: 40px;
  }
  .timetable .timetable__vanue > .timeline__break:first-of-type {
    display: none;
  }
}

@media (min-width: 769px) {
  .timeline__break {
    grid-row: auto/span 2;
    min-height: 100%;
  }
}
@media (max-width: 768px) {
  .timeline__break {
    position: relative;
    height: var(--timeline-gap-height, 75px);
    flex-shrink: 0;
  }
  .timeline__break::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--timeline-border-color);
    transform: translateX(-50%);
  }
}
.timeline__block {
  display: block;
  border: var(--timeline-border-width) solid var(--main-color);
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  border-radius: 30px;
  padding: 50px;
  position: relative;
}
@media (min-width: 769px) {
  .timeline__block::before, .timeline__block::after {
    content: "";
    position: absolute;
  }
  .timeline__block::before {
    background-color: var(--timeline-border-color);
    height: 2px;
    width: calc(var(--timetable-line-gap) / 2);
    inset: calc(var(--timeline-point-position) - var(--timeline-point-size) / 2 + 1px) auto 0;
  }
  .timetable__vanue:first-of-type .timeline__block::before {
    right: calc(0px - var(--timeline-border-width) - var(--timetable-line-gap) / 2);
  }
  .timetable__vanue:last-of-type .timeline__block::before {
    left: calc(0px - var(--timeline-border-width) - var(--timetable-line-gap) / 2);
  }
  .timeline__block::after {
    background-color: var(--timeline-point-color);
    width: var(--timeline-point-size);
    height: var(--timeline-point-size);
    border-radius: 50%;
    inset: calc(var(--timeline-point-position) - var(--timeline-point-size) / 2 - var(--timeline-border-width)) auto auto;
  }
  .timetable__vanue:first-of-type .timeline__block::after {
    right: calc(0px - var(--timeline-border-width) - var(--timetable-line-gap) / 2);
    translate: 50% 0%;
  }
  .timetable__vanue:last-of-type .timeline__block::after {
    left: calc(0px - var(--timeline-border-width) - var(--timetable-line-gap) / 2);
    translate: -50% 0;
  }
}
@media (min-width: 769px) {
  .timeline__block {
    min-height: 100%;
    height: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .timeline__block {
    padding: 20px;
  }
}
@media (min-width: 769px) {
  .timeline__block--10min {
    grid-row: auto/span 1;
  }
}
@media (min-width: 769px) {
  .timeline__block--20min {
    grid-row: auto/span 2;
  }
}
@media (min-width: 769px) {
  .timeline__block--30min {
    grid-row: auto/span 3;
  }
}
@media (min-width: 769px) {
  .timeline__block--40min {
    grid-row: auto/span 4;
  }
}
@media (min-width: 769px) {
  .timeline__block--50min {
    grid-row: auto/span 5;
  }
}
@media (min-width: 769px) {
  .timeline__block--60min {
    grid-row: auto/span 6;
  }
}
@media (min-width: 769px) {
  .timeline__block--70min {
    grid-row: auto/span 7;
  }
}
@media (min-width: 769px) {
  .timeline__block--90min {
    grid-row: auto/span 9;
  }
}
.timeline__time {
  color: var(--main-color);
  font-family: "prompt", sans-serif;
  font-weight: 400;
  text-decoration: underline;
  font-size: 3rem;
  text-underline-offset: 8px;
}
.timeline__time-big {
  font-size: 3.8rem;
}
.timeline__title {
  margin-top: 26px;
}
.timeline__category {
  font-size: 1.4rem;
  border: 1px solid var(--font-color-black);
  display: inline;
  padding: 3px 5px 2px 5px;
}
.timeline__category-wrapper {
  margin-bottom: 10px;
}
.timeline__heading {
  font-size: 2.2rem;
  line-height: 3.2rem;
}
.timeline__unit {
  grid-auto-flow: column;
  grid-template-columns: 60px auto;
  margin-top: 16px;
  background-color: #feeeda;
  padding: 20px 26px;
  border-radius: 20px;
  font-weight: 500;
}
.timeline__item {
  position: relative;
}
.timeline__item p {
  color: var(--font-color-black);
  position: relative;
  margin-bottom: 10px;
}
.timeline__item:last-of-type p {
  margin-bottom: 0;
}
.timeline__border {
  position: absolute;
  top: 6px;
  left: -8px;
  border-left: 2px solid var(--main-color);
  width: 2px;
  height: calc(100% - 9px);
}
@media (max-width: 768px) {
  .timeline__border {
    top: 4px;
  }
}
.timeline__name {
  font-size: 1.8rem;
  font-weight: 700;
}
.timeline__desc {
  margin-top: 1.5rem;
}
.timeline__button {
  background-color: var(--sub-color);
  color: #ffffff;
  display: block;
  margin: 25px auto;
  padding: 14px 31px 14px 43px;
  border-radius: 50px;
}
.timeline__button::after {
  content: "+";
  margin-left: 16px;
}
.timeline__hall {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, 1fr);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  gap: 40px;
  text-align: center;
}
@media (min-width: 769px) {
  .timeline__hall {
    display: none;
  }
}
.timeline__hall-title {
  display: grid;
  align-items: center;
  text-align: center;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 768px) {
  .timeline__hall-title.js-table-slide-button {
    text-decoration: underline;
    color: var(--main-color);
  }
  .timeline__hall-title.js-table-slide-button.active {
    text-decoration: none;
    color: var(--font-color-black);
  }
}

.timeline-modal {
  padding-right: 6px;
}
@media (max-width: 768px) {
  .timeline-modal {
    padding-right: 12px;
  }
}

.gem13 {
  left: 0vw;
  top: 70vh;
}

.gem14 {
  left: 0vw;
  top: 40vh;
  z-index: -888888;
}

.gem15 {
  left: 7vw;
  top: 210vh;
}

.gem16 {
  left: 0;
  top: 300vh;
}

.gem17 {
  right: -1vw;
  top: -24vh;
}

.gem18 {
  right: -0.4vw;
  top: 137vh;
}

.gem19 {
  right: 1vw;
  top: 86vh;
  z-index: -888888;
}

.gem20 {
  right: 1vw;
  top: 150vh;
  z-index: -8888;
}

.access {
  margin-top: 70px;
}
.access__venue {
  background-color: var(--access-color);
  margin: 28px auto;
  border-radius: 35px;
  padding: 42px 120px 48px 120px;
  color: #ffffff;
}
.access__venue-name {
  font-size: 2.4rem;
  color: var(--sub-color);
}
.access__venue-address {
  font-style: normal;
  line-height: 3rem;
}
.access__directions {
  margin-block: 10px 20px;
}
.access__direction {
  line-height: 3rem;
}
.access__triangle {
  position: relative;
  padding-left: 16px;
}
.access__triangle::before {
  position: absolute;
  top: 0.8rem;
  left: 0px;
  width: 0px;
  height: 0px;
  border: 0.4em solid transparent;
  border-left: 0.6em solid var(--sub-color);
  content: "";
}
.access__links {
  margin-top: 30px;
  display: grid;
  justify-content: center;
  grid-auto-flow: column;
  gap: 40px;
}
.access__map-wrapper iframe {
  max-width: 720px;
  width: 100%;
  height: 330px;
}
.access__map-link, .access__map-button {
  background-color: var(--sub-color);
  color: var(--font-color-black);
  padding: 14px 26px 14px 40px;
  border-radius: 10px;
}
.access__map-link::after {
  content: url("../img/page_link.svg");
  margin-left: 39px;
}
.access__map-button::after {
  content: "+";
  margin-left: 32px;
}

@media (max-width: 768px) {
  .gem13 {
    top: -133vh;
    left: -17vw;
    width: 30%;
    height: auto;
  }
  .gem14 {
    top: -150vh;
    width: 80%;
    height: auto;
  }
  .gem15 {
    left: -6vw;
    top: 130vh;
    width: 30%;
    height: auto;
  }
  .gem16 {
    top: 170vh;
    width: 20%;
    height: auto;
  }
  .gem17 {
    right: -18vw;
    top: -2vh;
    width: 40%;
    height: auto;
  }
  .gem18 {
    width: 20%;
    height: auto;
  }
  .gem19 {
    right: -30vw;
    top: 41vh;
  }
  .gem20 {
    right: -43vw;
    top: 81vh;
  }
  .access {
    margin-top: 60px;
  }
  .access__venue {
    padding: 26px 18px 36px 18px;
    border-radius: 14px;
  }
  .access__diretions {
    margin-block: 4px 12px;
  }
  .access__links {
    grid-auto-flow: row;
    gap: 25px;
  }
  .access__map-link, .access__map-button {
    padding-block: 20px;
  }
}
.sponsor {
  margin-block: 70px 94px;
}
.sponsor__sponsorship {
  margin-top: 20px;
  text-align: center;
  line-height: 3rem;
}
.sponsor__sponsorship-link {
  color: var(--main-color);
  text-decoration: underline;
}
.sponsor__wrapper {
  max-width: 720px;
  margin: 45px auto 0 auto;
}
.sponsor__group {
  text-align: center;
}
.sponsor__tier-title {
  text-align: center;
  font-family: "prompt", sans-serif;
  font-size: 2rem;
  font-style: italic;
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 20px;
  margin-inline: auto;
}
.sponsor__tier-title--platinum {
  background-color: var(--platinum-color);
}
.sponsor__tier-title--gold {
  background-color: var(--gold-color);
}
.sponsor__tier-title--silver {
  background-color: var(--silver-color);
}
.sponsor__tier-title--special {
  background-color: var(--special-color);
}
.sponsor__tier-title--sponsorship {
  background-color: var(--sponsorship-color);
}
.sponsor__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  justify-content: center;
  align-items: center;
  margin: 30px 0 60px 0;
}
@media (min-width: 769px) {
  .sponsor__logos--cols-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sponsor__logos--cols-3 .sponsor__logo {
    flex: 0 0 calc((100% - 4vw) / 3);
    max-width: calc((100% - 4vw) / 3);
    height: auto;
  }
}

@media (max-width: 768px) {
  .sponsor {
    margin-block: 50px 74px;
  }
  .sponsor__wrapper {
    margin-top: 30px;
  }
  .sponsor__tier-title {
    font-size: var(--text-size-sp);
    padding: 1px 20px;
  }
  .sponsor__logos {
    grid-template-columns: repeat(2, 1fr);
    margin: 36px 20px 44px 20px;
    gap: 5vw 7vw;
  }
  .sponsor__logos img {
    margin: auto;
  }
}
.cta_button_close, .kv__cta.-banner .cta_button_close {
  display: none;
}
.cta_button.disable, .kv__cta.-banner .cta_button.disable {
  background: #b6b6b6;
}
.cta_button.disable_sub, .kv__cta.-banner .cta_button.disable_sub {
  display: none;
}
.cta_button.disable_main, .kv__cta.-banner .cta_button.disable_main {
  display: none;
}
.cta_button.disable_close, .kv__cta.-banner .cta_button.disable_close {
  display: block;
  color: #fff;
}

.modal_double_container {
  position: relative;
  padding-bottom: 5rem !important;
}
.modal_double_button {
  position: absolute;
  right: 2rem;
  bottom: 1rem;
}

@media (min-width: 769px) {
  .modal.modal_double .modal__container {
    width: 80%;
    max-width: 1000px;
  }
  .modal.modal_double .modal__wrapper {
    max-height: 55vh;
  }
}/*# sourceMappingURL=style.css.map */