@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:wght@400,500,700,900&display=swap&subset=japanese");
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, main, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

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

ul, ol, li {
  list-style: none;
}

a {
  color: inherit;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: all .25s;
}

a:hover {
  color: #ec1e79;
  opacity: .9;
}

a:link img, a:visited img, a:hover img, a img {
  border: none;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  height: auto;
  max-width: 100%;
}

body {
  background: #fff;
  color: #010a1d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.wrapper .closed {
  text-align: center;
  font-size: 24px;
  color: #f00;
}

.wrapper .tentative {
  color: #fff;
}

.wrapper .header {
  background: #001e58;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.wrapper .header .header__inner {
  align-items: center;
  display: flex;
  height: 52px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1356px;
  width: 90%;
}

.wrapper .header .header__inner figure {
  z-index: 999;
}

@media screen and (max-width: 768px) {
  .wrapper .header .header__inner .header__navi {
    background: #001e58;
    height: 100vh;
    left: -200vw;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    position: fixed;
    text-align: center;
    top: 0;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    transition: all .5s;
    transition: .25s ease-in-out;
    width: 100%;
    z-index: 998;
  }
}

.wrapper .header .header__inner .header__navi.panel-active {
  left: 0;
  overflow: auto;
  transition: all .25s ease-in-out;
}

.wrapper .header .header__inner .header__navi .header__navi-items {
  align-items: center;
  display: flex;
}

@media screen and (max-width: 768px) {
  .wrapper .header .header__inner .header__navi .header__navi-items {
    align-items: flex-start;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    padding: 0 24px;
  }
}

.wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  height: 52px;
  position: relative;
}

@media screen and (min-width: 769px) and (max-width: 938px) {
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item {
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item {
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
    flex-direction: column;
    height: auto;
    width: 100%;
  }
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item:first-child {
    border-top: 1px solid #ccc;
  }
}

@media screen and (min-width: 769px) and (max-width: 938px) {
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item:first-child {
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item a {
    display: block;
    padding: 10px 0;
    text-align: left;
    width: 100%;
  }
}

.wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda:after {
  background: #fff;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  height: 5px;
  position: absolute;
  right: -14px;
  top: calc(50% - 2px);
  width: 10px;
}

@media screen and (max-width: 768px) {
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda:after {
    content: none;
  }
}

.wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda:hover .dropdown-items {
  display: block;
}

.wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items {
  background: #001e58;
  display: none;
  max-width: 100%;
  padding: 0 20px 10px;
  position: fixed;
  top: 52px;
  width: 260px;
}

@media screen and (max-width: 768px) {
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items {
    background: transparent;
    display: block;
    height: auto;
    padding: 0;
    position: relative;
    text-align: left;
    top: 0;
    width: 100%;
  }
}

.wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items .dropdown-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items .dropdown-item {
    border-bottom: none;
    font-size: 12px;
    padding: 0;
  }
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items .dropdown-item:first-child a {
    padding-top: 0;
  }
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items .dropdown-item:last-child a {
    padding-bottom: 10px;
  }
}

.wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items .dropdown-item::before {
  content: "";
  display: block;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items .dropdown-item a {
    display: block;
    padding: 5px 5px 5px 10px;
    width: 100%;
  }
}

.wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items .dropdown-item a span {
  display: block;
}

@media screen and (max-width: 768px) {
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items .dropdown-item a span {
    display: inline-block;
    position: relative;
  }
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item.agenda .dropdown-items .dropdown-item a span:before {
    content: "-";
    display: inline-block;
    left: -10px;
    position: absolute;
    top: 0;
  }
}

.wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item:first-child:before {
  content: none;
}

.wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item:before {
  color: #fff;
  content: "/";
  display: inline-block;
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  .wrapper .header .header__inner .header__navi .header__navi-items .header__navi-item:before {
    content: none;
    margin: 0;
  }
}

.wrapper .drawer-hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .wrapper .drawer-hamburger {
    background: transparent;
    cursor: pointer;
    display: block;
    height: 40px;
    position: relative;
    right: 0;
    top: 0;
    width: 40px;
    z-index: 999;
  }
}

.wrapper .drawer-hamburger span {
  background: #fff;
  display: inline-block;
  height: 2px;
  left: 14px;
  position: absolute;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  width: 50%;
}

.wrapper .drawer-hamburger span:first-child {
  top: 10px;
}

.wrapper .drawer-hamburger span:nth-child(2) {
  top: 20px;
  width: 45%;
}

.wrapper .drawer-hamburger span:last-child {
  top: 30px;
}

.wrapper .drawer-hamburger.active span:first-child {
  background: #fff;
  left: 6px;
  top: 13px;
  transform: translateY(6px) rotate(-135deg);
  width: 80%;
}

.wrapper .drawer-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.wrapper .drawer-hamburger.active span:last-child {
  background: #fff;
  left: 6px;
  top: 25px;
  transform: translateY(-6px) rotate(135deg);
  width: 80%;
}

.wrapper .main {
  padding-top: 52px;
}

.wrapper .main .section {
  background: #4561a1;
  overflow: hidden;
  padding: 60px 0;
  width: 100%;
}

.wrapper .main .section .section--background-circle {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  width: 1400px;
}

.wrapper .main .section .section--background-circle:before {
  background-image: url(bg_circle1.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  height: 680px;
  left: -200px;
  position: absolute;
  top: -100px;
  width: 680px;
  z-index: 0;
}

.wrapper .main .section .section--background-circle:after {
  background-image: url(bg_circle1.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: -50px;
  content: "";
  display: block;
  height: 680px;
  position: absolute;
  right: -200px;
  width: 680px;
  z-index: 0;
}

.wrapper .main .section.section--background-white {
  background: #fff;
}

.wrapper .main .section.section--padding-top-none {
  padding-top: 0;
}

.wrapper .main .section.section--padding-none {
  padding: 0;
}

.wrapper .main .section .section__main-visual {
  position: relative;
}

.wrapper .main .section .section__main-visual .main-visual__movie {
  height: 100vh;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100vw;
}

.wrapper .main .section .section__main-visual .main-visual__movie video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.wrapper .main .section .section__main-visual .main-visual__title {
  left: 50%;
  margin: 0;
  position: absolute;
  text-align: center;
  top: calc(50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

@media screen and (max-width: 834px) {
  .wrapper .main .section .section__main-visual .main-visual__title {
    width: 90%;
  }
}

.wrapper .main .section .section__main-visual .main-visual__title figure {
  background: #fff;
  margin: 0 auto 27px;
  max-width: 100%;
  padding: 18px;
  width: 336px;
}

.wrapper .main .section .section__main-visual .main-visual__title h1 img {
  display: inline-block;
}

.wrapper .main .section .section__main-visual .main-visual__title h2 {
  line-height: 1;
}

.wrapper .main .section .section__main-visual .main-visual__title h2 span {
  background: linear-gradient(90deg, #13b5d8, #b73dda 36%, #e658b4 95%);
  background: -webkit-linear-gradient(0deg, #13b5d8, #b73dda 36%, #e658b4 95%);
  color: #fff;
  display: inline-block;
  font-size: clamp(1.125rem, 1.021rem + 0.56vw, 1.438rem);
  font-weight: 500;
  padding: 12px;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__main-visual .main-visual__title h2 span {
    line-height: 1.2;
  }
}

.wrapper .main .section .section__main-visual .main-visual__title h2 span:first-child {
  margin-bottom: 5px;
}

.wrapper .main .section .section__heading {
  margin: 0 auto 60px;
  width: min(90%, 900px);
}

.wrapper .main .section .section__heading.section__heading--lead {
  margin-bottom: 100px;
}

.wrapper .main .section .section__heading .section__title {
  font-size: clamp(1.313rem, 1.125rem + 1vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0 auto 30px;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__heading .section__title {
    line-height: 1.2;
  }
}

.wrapper .main .section .section__heading .section__title.section__title--lead {
  background: linear-gradient(90deg, #13b5d8, #907eff 55%, #e177f0 80%);
  background: -webkit-linear-gradient(0deg, #13b5d8, #907eff 55%, #e177f0 80%);
  -webkit-background-clip: text;
  color: #fff;
  position: relative;
  -webkit-text-fill-color: transparent;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__heading .section__title.section__title--lead {
    width: 90%;
  }
}

.wrapper .main .section .section__heading .section__title.section__title--lead span:before {
  background: #fff;
  bottom: -50px;
  box-shadow: 0 0 20px;
}

.wrapper .main .section .section__heading .section__title.font--white {
  color: #fff;
}

.wrapper .main .section .section__heading .section__title span {
  display: block;
}

.wrapper .main .section .section__heading .section__title span.background-white:before {
  background: #fff;
}

.wrapper .main .section .section__heading .section__title span:before {
  background: #010a1d;
  border-radius: 10px;
  bottom: -25px;
  content: "";
  display: block;
  height: 3px;
  left: calc(50% - 75px);
  position: absolute;
  width: 150px;
}

.wrapper .main .section .section__inner {
  background: #fff;
  margin: 0 auto;
  padding: 60px 60px;
  position: relative;
  width: min(90%, 1054px);
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__inner {
    padding: 40px 0;
  }
}

.wrapper .main .section .section__inner.section__inner--background-geometry {
  background-color: #001e58;
}

.wrapper .main .section .section__inner.section__inner--background-geometry:before {
  background-image: url(bg_geometry.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.wrapper .main .section .section__body {
  margin: 0 auto;
  width: 100%;
}

.wrapper .main .section .section__body .lead {
  margin: 0 auto;
  padding-top: 60px;
  position: relative;
  width: min(90%, 815px);
  z-index: 10;
}

.wrapper .main .section .section__body .lead .seemore-button {
  bottom: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  left: 0;
  margin: auto;
  padding: 5px 15px;
  position: absolute;
  right: 0;
  text-align: center;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  transition: all .5s;
  transition: .25s ease-in-out;
  width: fit-content;
  z-index: 10;
}

.wrapper .main .section .section__body .lead .seemore-button:after {
  content: "+ see more";
}

.wrapper .main .section .section__body .lead .seemore-button.is-show {
  bottom: -2.5em;
}

.wrapper .main .section .section__body .lead .seemore-button.is-show:after {
  content: "- close";
}

.wrapper .main .section .section__body .lead .seemore-text {
  color: #ccc;
  overflow: hidden;
  position: relative;
}

.wrapper .main .section .section__body .lead .seemore-text.is-hide {
  height: 300px;
}

.wrapper .main .section .section__body .lead .seemore-text:before {
  background: -webkit-linear-gradient(top, rgba(0, 30, 88, 0) 0%, rgba(0, 30, 88, 0.9) 50%, rgba(0, 30, 88, 0.9) 50%, #001e58 100%);
  background: linear-gradient(top, rgba(0, 30, 88, 0) 0%, rgba(0, 30, 88, 0.9) 50%, rgba(0, 30, 88, 0.9) 50%, #001e58 100%);
  bottom: 0;
  content: "";
  height: 60px;
  position: absolute;
  width: 100%;
}

.wrapper .main .section .section__body .lead .seemore-button.is-show + .seemore-text::before {
  display: none;
}

.wrapper .main .section .section__body .lead .lead__text {
  color: #fff;
  font-size: clamp(1rem, 0.958rem + 0.22vw, 1.125rem);
  line-height: 1.8;
}

.wrapper .main .section .section__body .speakers-wrap .speakers {
  margin: 0 auto;
  max-width: 100%;
  width: 1054px;
}

.wrapper .main .section .section__body .agenda-box {
  margin: 0 auto 30px;
  width: min(90%, 1054px);
}

.wrapper .main .section .section__body .agenda-box .agenda-tab {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 1px;
  line-height: 1.2;
}

@media screen and (max-width: 428px) {
  .wrapper .main .section .section__body .agenda-box .agenda-tab {
    font-size: 12px;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-tab .tab {
  max-width: 100%;
  width: 180px;
}

@media screen and (max-width: 640px) {
  .wrapper .main .section .section__body .agenda-box .agenda-tab .tab {
    width: 49%;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-tab .tab a {
  align-items: center;
  background: #bbb;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 54px;
  padding: 10px;
  position: relative;
  width: 100%;
}

.wrapper .main .section .section__body .agenda-box .agenda-tab .tab a:before {
  background: #999;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  content: "";
  display: block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  width: 18px;
}

.wrapper .main .section .section__body .agenda-box .agenda-tab .tab a:hover {
  color: #ec1e79;
}

.wrapper .main .section .section__body .agenda-box .agenda-tab .tab a.current {
  background: #ec1e79;
  color: #fff;
  font-weight: 700;
}

.wrapper .main .section .section__body .agenda-box .agenda-tab .tab a.current:hover {
  background: #ec1e79;
  opacity: 1;
}

.wrapper .main .section .section__body .agenda-box .agenda-tab .tab a.current:before {
  background: #ecdbe3;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf-wrap {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf-wrap {
    flex-direction: column;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf--background-geometory {
  background-image: url(bg.jpg);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: auto;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf--background-geometory {
    background-size: 100%;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf {
  background-color: #fff;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf.agenda-ndf--rows {
  background-color: transparent;
  background-image: none;
  position: relative;
  width: calc((100% / 2) - 10px);
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf.agenda-ndf--rows {
    width: 100%;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf.agenda-ndf--rows:first-child:after {
  background: #001e58;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: -10px;
  top: 0;
  width: .5px;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf.agenda-ndf--rows:first-child:after {
    content: none;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf.agenda-ndf--rows:first-child .agenda-ndf__box {
  padding-right: 0;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf.agenda-ndf--rows:first-child .agenda-ndf__box {
    padding-right: 20px;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf.agenda-ndf--rows:last-child .agenda-ndf__box {
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf.agenda-ndf--rows:last-child .agenda-ndf__box {
    padding-left: 20px;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf.agenda-ndf--rows .agenda-ndf__box {
  width: 100%;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf.agenda-ndf--rows .agenda-ndf__box .speakers .speaker {
  width: 100%;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box {
  border-bottom: 1px solid #001e58;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box {
    padding: 20px;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box.agenda-ndf__box--border-none {
  border-bottom: none;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .break-time {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .break-time span {
  border: 1px solid #001e58;
  display: block;
  font-size: 12px;
  padding: 4px 20px;
  text-align: center;
  width: 180px;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .break-time:before, .wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .break-time:after {
  background-color: #001e58;
  border-radius: 1px;
  content: "";
  flex-grow: 1;
  height: 1px;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .time {
  background: #001e58;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 20px;
  max-width: 100%;
  padding: 7px 0 6px;
  text-align: center;
  width: 180px;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .sponsor {
  font-size: 14px;
  font-weight: 600;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box h3 {
  font-size: clamp(1rem, 0.958rem + 0.22vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box h3 span {
  display: block;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers {
    flex-direction: column;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers .speaker {
  background: #fff;
  border: 1px solid #001e58;
  display: flex;
  margin-bottom: 20px;
  padding: 20px;
  width: calc((100% / 2) - 10px);
}

@media screen and (max-width: 428px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers .speaker {
    padding: 12px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers .speaker {
    margin-bottom: 15px;
    width: 100%;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers .speaker .photo {
  flex-shrink: 0;
  width: 120px;
}

@media screen and (max-width: 1000px) {
  .wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers .speaker .photo {
    max-width: 120px;
    width: 30%;
  }
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers .speaker .photo img {
  border: 1px solid #ccc;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers .speaker div {
  width: 100%;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers .speaker div .moderator {
  font-size: 14px;
  font-weight: bold;
  padding: 0 0 0 10px;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers .speaker div .name {
  border-bottom: 1px solid #001e58;
  font-size: clamp(1rem, 0.917rem + 0.44vw, 1.25rem);
  font-weight: 600;
  padding: 0 0 5px 10px;
  line-height: 1.2;
}

.wrapper .main .section .section__body .agenda-box .agenda-ndf .agenda-ndf__box .speakers .speaker div .biography {
  color: #444;
  font-size: 12px;
  line-height: 1.25;
  padding: 5px 0 0 10px;
}

.wrapper .main .section .section__body .about {
  color: #fff;
  margin: 0 auto;
  width: min(90%, 815px);
}

.wrapper .main .section .section__body .about .about__text {
  line-height: 1.8;
  margin-bottom: 20px;
}

.wrapper .main .section .section__body .outline dl {
  border-top: 1px dotted #ccc;
  display: flex;
  font-size: 14px;
  margin: 0 auto;
  padding: 1.4em 2em;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .outline dl {
    flex-direction: column;
    padding: 1.4em 0;
  }
}

.wrapper .main .section .section__body .outline dl:last-of-type {
  border-bottom: 1px dotted #ccc;
}

.wrapper .main .section .section__body .outline dl dt {
  margin-right: 2em;
  min-width: 25%;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .outline dl dt {
    margin: 0 0 .4em 0;
    min-width: 100%;
    width: 100%;
  }
}

.wrapper .main .section .section__body .outline dl dd .map {
  background: #001e58;
  border-radius: 5px;
  color: #fff;
  display: block;
  margin: 10px 0 0;
  max-width: 100%;
  padding: 2px 0;
  position: relative;
  text-align: center;
  width: 84px;
}

.wrapper .main .section .section__body .outline dl dd .map:hover {
  color: #f4cd1f;
}

.wrapper .main .section .section__body .outline dl dd .map:before {
  background: url(icon_map.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 16px;
  left: calc(50% - 32px);
  position: absolute;
  top: calc(50% - 7px);
  width: 16px;
}

.wrapper .main .section .section__body .outline dl dd img {
  display: inline;
  margin: 0 5px 0 0;
  vertical-align: middle;
  width: 150px;
}

@media screen and (max-width: 768px) {
  .wrapper .main .section .section__body .outline dl dd img {
    height: auto;
    margin-bottom: 5px;
    width: 25%;
  }
}

.wrapper .main .section .section__body .outline dl dd img.sponsor-logo {
  margin: 0 20px 10px 0;
  width: 200px;
}

.wrapper .main .section .section__body .outline dl dd img.sponsor-logo.sponsor-logo--diamond {
  width: 320px;
}

.wrapper .main .section .section__body .outline dl dd img.sponsor-logo.sponsor-logo--platinum {
  width: 280px;
}

.wrapper .main .section .section__body .outline dl dd img.sponsor-logo.sponsor-logo--platinum.sponsor-logo--sojitz {
  margin-top: 30px;
}

.wrapper .main .section .section__body .outline dl dd img.sponsor-logo.sponsor-logo--gold {
  width: 220px;
}

.wrapper .main .section .section__body .outline dl dd img.sponsor-logo.sponsor-logo--bronze {
  width: 120px;
}

.wrapper .main .section .section__body .outline dl dd img.sponsor-logo.sponsor-logo--shrink {
  width: 90px;
}

.wrapper .main .section .section__body .registration .registration__link {
  align-items: center;
  background: #001e58;
  border-radius: 45px;
  color: #fff;
  display: flex;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 1px;
  margin: 0 auto;
  padding: 1.4em 12px;
  width: min(90%, 400px);
}

.wrapper .main .section .section__body .registration .registration__link:hover {
  color: #f4cd1f;
}

.wrapper .main .section .section__body .registration .registration__link span:first-child {
  margin-right: 6px;
  margin-top: 2px;
}

.wrapper .main .section .section__body .contact .contact__link {
  align-items: center;
  background: #fff;
  border-radius: 45px;
  color: #fff;
  color: #001e58;
  display: flex;
  font-weight: 500;
  justify-content: center;
  margin: 0 auto;
  padding: 1.4em 12px;
  width: min(90%, 400px);
}

.wrapper .main .section .section__body .contact .contact__link:hover {
  color: #f4cd1f;
}

.wrapper .main .section .section__body .contact .contact__link span:first-child {
  margin-right: 6px;
  margin-top: 2px;
}

.wrapper .footer {
  background-color: #fff;
  margin: 0;
  padding: 40px 0;
  position: relative;
}

.wrapper .footer .footer__navi {
  font-size: 12px;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 428px) {
  .wrapper .footer .footer__navi {
    text-align: left;
  }
}

.wrapper .footer .footer__navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  width: min(90%, 764px);
}

@media screen and (max-width: 428px) {
  .wrapper .footer .footer__navi ul {
    flex-direction: column;
  }
}

.wrapper .footer .footer__navi ul li {
  border-left: 1px solid #001e58;
  margin-bottom: 12px;
  margin-left: 12px;
  padding-left: 12px;
}

@media screen and (max-width: 428px) {
  .wrapper .footer .footer__navi ul li {
    border-left: none;
    margin-left: 0;
  }
}

.wrapper .footer .footer__navi ul li a {
  position: relative;
}

@media screen and (max-width: 428px) {
  .wrapper .footer .footer__navi ul li a:before {
    content: "-";
    display: block;
    left: -10px;
    position: absolute;
    top: 0;
  }
}

.wrapper .footer .footer__navi ul li a:hover {
  color: #4561a1;
}

.wrapper .footer .footer__navi ul li:last-child {
  border-right: 1px solid #001e58;
  margin-right: 12px;
  padding-right: 12px;
}

@media screen and (max-width: 428px) {
  .wrapper .footer .footer__navi ul li:last-child {
    border-right: none;
  }
}

.wrapper .footer .footer__copyright {
  color: #333;
  font-size: 12px;
  margin: 0 auto 5px;
  text-align: center;
  width: auto;
}

.wrapper .footer .footer__copyright img {
  display: inline-block;
  margin-left: 10px;
}

.wrapper .speakers-wrap .speakers .slick-arrow:before {
  content: "" !important;
  height: 44px !important;
  left: 0;
  position: absolute;
  top: -13px;
  width: 44px !important;
}

.wrapper .speakers-wrap .speakers .slick-prev {
  left: 0;
  z-index: 10;
}

.wrapper .speakers-wrap .speakers .slick-prev:before {
  background: url(slick_arrow_left.png);
  background-repeat: no-repeat;
}

.wrapper .speakers-wrap .speakers .slick-next {
  right: 24px;
  z-index: 10;
}

.wrapper .speakers-wrap .speakers .slick-next:before {
  background: url(slick_arrow_right.png);
  background-repeat: no-repeat;
}

.wrapper .speakers-wrap .slick-initialized {
  display: block !important;
}

.wrapper .speakers-wrap .speakers .slick-slide {
  height: auto !important;
}
