@charset "UTF-8";
* {
  list-style: none;
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  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, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

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

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

body {
  background-color: #000;
}

@media all and (min-width: 767px) {
  body {
    min-width: 1200px;
    margin: 0 auto;
  }
}
.only_sp {
  display: block;
}

.only_pc {
  display: none;
}

@media all and (min-width: 767px) {
  .only_pc {
    display: block;
  }
  .only_sp {
    display: none;
  }
}
/* --------------
ナビ とか
-------------- */
#hamburger {
  position: fixed;
  top: 0;
  right: 10px;
  z-index: 9999;
  padding: 23px 8px 8px;
  width: 45px;
}
#hamburger span {
  display: block;
  margin-bottom: 10px;
  height: 2px;
  background: #fff;
  transform: 0;
  transition: 0.3s;
  box-shadow: 0 0 5px #ff7d97;
}
#hamburger.open span:first-child {
  transform: translate(0, 6px) rotate(45deg);
}
#hamburger.open span:last-child {
  transform: translate(0, -6px) rotate(-45deg);
}

@media all and (min-width: 767px) {
  #hamburger {
    display: none;
  }
}
nav {
  position: fixed;
  top: 0;
  right: -200px;
  z-index: 5;
  padding-top: 60px;
  width: 200px;
  background-color: #ff7d97;
  height: 100%;
  transition: 0.7s;
}
nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
nav li {
  padding: 10px 25px;
}
nav.act {
  right: 0;
}

@media all and (min-width: 767px) {
  nav {
    position: relative;
    top: 0;
    right: 0;
    background: none;
    width: 400px;
    padding-top: 0px;
    height: auto;
  }
  nav ul {
    display: flex;
    justify-content: right;
  }
  nav li {
    padding: 0px 15px;
  }
  nav a {
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    transition: 0.3s;
  }
  nav a {
    position: relative;
    display: inline-block;
  }
  nav a::after {
    position: absolute;
    bottom: 1px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  nav a:hover::after {
    bottom: -4px;
    opacity: 1;
    visibility: visible;
  }
}
.wrapper {
  position: relative;
}

.linkBtn {
  position: fixed;
  width: 100%;
  bottom: 20px;
}
.linkBtn a {
  width: 80%;
  z-index: 100;
  display: block;
  margin: 0 auto;
  background-color: #ff4876;
  color: #fff;
  font-size: 21px;
  text-align: center;
  font-weight: bold;
  border-radius: 99px;
  padding: 12px 10px;
  transition: 0.5s;
  box-shadow: 0px 0px 10px 3px #fff;
  animation: btn_animation 4s 2s infinite normal;
  border: 2px solid transparent;
}
.linkBtn a:hover {
  transform: translateY(10px);
  opacity: 0.9;
}

@media all and (min-width: 767px) {
  .linkBtn {
    min-width: 1200px;
    bottom: 80px;
  }
  .linkBtn a {
    width: 280px;
    font-size: 30px;
    box-shadow: 0px 5px 16px 2px #fff;
    border-radius: 99px 0 0 99px;
    margin: 0 0 0 auto;
    padding: 22px 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: none;
  }
}
@keyframes btn_animation {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: #fff;
  }
  to {
    border-color: transparent;
  }
}
@media all and (min-width: 767px) {
  @keyframes btn_animation {
    0% {
      padding-top: 22px;
      padding-bottom: 22px;
      padding-left: 0;
      border-color: transparent;
      box-shadow: 0px 5px 16px 2px #fff;
    }
    50% {
      padding-top: 25px;
      padding-bottom: 25px;
      padding-left: 5px;
      border-color: #fff;
      box-shadow: 0px 8px 20px 4px #fff;
    }
    to {
      padding-top: 22px;
      padding-bottom: 22px;
      padding-left: 0;
      border-color: transparent;
      box-shadow: 0px 5px 16px 2px #fff;
    }
  }
}
/* --------------
ヘッダー
-------------- */
header {
  background-image: url(../images/hd_bg.png);
  background-position: 25% top;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
}
header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  height: 60px;
}
header > div > a {
  width: 35%;
  max-width: 160px;
  display: block;
}

@media all and (min-width: 767px) {
  header {
    background-position: center top;
  }
  header > div {
    width: 1200px;
    margin: 0 auto;
    height: 80px;
    padding: 0 20px;
  }
}
/* --------------
メイン
-------------- */
.topCts {
  background-image: url(../images/bg.jpg?0515);
  background-size: cover;
  background-position: 65% top;
  padding-top: 5%;
  margin-bottom: 10%;
}
.topCts h1 {
  width: 90%;
  margin: 0 auto 5%;
}
.topCts .topimg {
  margin-bottom: 5%;
}
.topCts .topimg + div {
  width: 90%;
  margin: 0 auto 5%;
}
.topCts .topimg + div p {
  color: #fff;
  font-size: 4.7vw;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 0.3em;
}
.topCts .topimg + div p small {
  display: block;
  color: #fff;
  font-size: 65%;
  font-weight: 400;
}
.topCts .topimg + div span {
  display: block;
  width: 60%;
  min-width: 180px;
  font-size: 13px;
  line-height: 30px;
  background-color: #ff4876;
  text-align: center;
  color: #fff;
  font-weight: 700;
  border-radius: 99px;
  margin: 10px auto;
}

@media all and (min-width: 767px) {
  .topCts {
    min-width: 1200px;
    overflow-x: hidden;
    position: relative;
    margin: 0 auto;
    padding-top: 40px;
    background-position: center bottom;
  }
  .topCts > div {
    width: 1200px;
    margin: 0 auto 80px;
  }
  .topCts > div h1 {
    width: 497px;
    margin: 0 0 35px 30px;
  }
  .topCts > div h1 + div {
    width: 497px;
    margin: 0 0 0 30px;
  }
  .topCts > div h1 + div p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.7;
  }
  .topCts > div h1 + div p small {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
  }
  .topCts > div h1 + div span {
    display: block;
    width: 220px;
    font-size: 15px;
    line-height: 32px;
    background-color: #ff4876;
    text-align: center;
    color: #fff;
    font-weight: 700;
    border-radius: 99px;
    margin: 10px auto 0 0;
  }
  .topCts .topimg {
    position: absolute;
    top: 40px;
    right: 50%;
    margin-right: -610px;
    width: 680px;
  }
}
.leadCts {
  width: 90%;
  margin: 0 auto 15%;
  position: relative;
}
.leadCts a {
  background-color: #ccc;
  border: solid 2px #FF4876;
  box-shadow: 0 0 15px 3px rgb(255, 72, 118);
  border-radius: 15px;
  margin: 8% auto;
  padding: 10px;
}
.leadCts a div {
  color: #000;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.7;
}
.leadCts a div strong {
  display: block;
  font-size: 130%;
  color: #000;
  font-weight: 900;
  margin-bottom: 10px;
}
.leadCts a div br {
  display: none;
}
.leadCts a:first-of-type {
  display: flex;
  align-items: center;
}
.leadCts a:first-of-type img {
  width: 30%;
  box-shadow: 3px 3px 6px #000;
}
.leadCts a:first-of-type div {
  width: 70%;
  padding-left: 10px;
}
.leadCts a:last-of-type {
  text-align: center;
  display: block;
}
.leadCts a:last-of-type div {
  width: 100%;
}
.leadCts .leadWrap {
  background-color: #ccc;
  border: solid 2px #FF4876;
  box-shadow: 0 0 15px 3px rgb(255, 72, 118);
  border-radius: 15px;
  padding: 5%;
}
.leadCts .leadWrap p {
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  font-weight: bold;
}

@media all and (min-width: 767px) {
  .leadCts {
    margin-bottom: 80px;
  }
  .leadCts a {
    margin: 0;
    box-shadow: 0 0 17px 7px rgb(255, 72, 118);
    border-width: 3px;
    border-radius: 40px;
    padding: 12px;
    padding: 20px 12px;
  }
  .leadCts a div {
    font-size: 17px;
    line-height: 1.6;
    padding: 0;
    text-align: center;
  }
  .leadCts a div br {
    display: block;
  }
  .leadCts a div strong {
    font-size: 140%;
    margin-bottom: 8px;
  }
  .leadCts a:first-of-type {
    width: 525px;
    justify-content: center;
  }
  .leadCts a:first-of-type img {
    width: auto;
    height: 128px;
  }
  .leadCts a:first-of-type div {
    width: 360px;
    margin-left: 10px;
    padding-left: 0;
  }
  .leadCts a:last-of-type {
    width: 345px;
  }
  .leadCts a:last-of-type div {
    height: 128px;
  }
  .leadCts .pointWrap {
    width: 900px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .leadCts .leadWrap {
    width: 900px;
    margin: 20px auto;
    padding: 40px;
    background-color: #ccc;
    border: solid 3px #FF4876;
    box-shadow: 0 0 17px 7px rgb(255, 72, 118);
    border-radius: 40px;
  }
  .leadCts .leadWrap p {
    color: #000;
    font-size: 16px;
    line-height: 2;
  }
}
main section {
  width: 90%;
  margin: 0 auto 10%;
  background-color: #fff;
  border: solid 2px #FF4876;
  box-shadow: 0 0 15px 3px rgb(255, 72, 118);
  border-radius: 20px;
  padding: 5%;
}
main section h2 {
  width: 90%;
  margin: 3% 0 8%;
}

@media all and (min-width: 767px) {
  main section {
    width: 1100px;
    margin: 0 auto 80px;
    box-shadow: 0 0 20px 8px rgb(255, 72, 118);
    border-width: 3px;
    border-radius: 40px;
    padding: 80px 100px;
  }
  main section h2 {
    width: 360px;
    margin: 0 0 50px;
  }
}
.timetableCts .tableBox {
  margin: 0 auto 30px;
}
.timetableCts .tableBox:last-of-type {
  margin-bottom: 0;
}
.timetableCts .tableTime {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.timetableCts .tableTime::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #ff4876;
  margin-left: 1rem;
}
.timetableCts .tableTime_wrap {
  display: flex;
  align-items: center;
}
.timetableCts .tableTime_wrap p {
  font-family: "Sora", sans-serif;
  flex-shrink: 0;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  padding: 5px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  background-color: #ff4876;
}
.timetableCts .tableTime_wrap span {
  margin-left: 10px;
  font-size: min(4vw, 15px);
  line-height: 1.3;
  font-weight: 400;
}
.timetableCts .tableContents {
  width: 100%;
}
.timetableCts .tableContents .speaker {
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.timetableCts .tableContents .speaker .profile_btn {
  border: solid 1px #ff4876;
  color: #ff4876;
  text-align: center;
  font-size: 11px;
  padding: 4px 8px 4px 10px;
  border-radius: 25px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  margin: 10px auto 0;
}
.timetableCts .tableContents .speaker .profile_btn small {
  display: inline-block;
  color: #ff4876;
  transform: scale(0.7);
}
.timetableCts .tableContents .speaker .profile_btn:hover {
  cursor: pointer;
}
.timetableCts .tableContents .speaker-photo {
  width: 100px;
  flex-shrink: 0;
  margin-right: 10px;
}
.timetableCts .tableContents .speaker-text {
  width: calc(100% - 110px);
  padding-top: 5px;
}
.timetableCts .tableContents .speaker-name {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}
.timetableCts .tableContents .speaker-name span {
  display: inline-block;
  margin-left: 0.4em;
  font-size: 75%;
  font-weight: 700;
}
.timetableCts .tableContents .speaker-position {
  font-size: 11px;
  line-height: 1.5;
}
.timetableCts .tableContents .speaker-position span + span::before {
  content: "／";
}
.timetableCts .tableContents .session-name {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}
.timetableCts .tableContents .session-title {
  margin: 10px 0 15px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  color: #FF4876;
}
.timetableCts .tableContents .session-title span {
  font-size: 85%;
  font-weight: bold;
}
.timetableCts .tableContents .session-title small {
  display: inline-block;
  margin-left: 1em;
  font-size: 75%;
  font-weight: 400;
}
.timetableCts .tableContents .session-text {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}
.timetableCts .tableContents .session-text span {
  cursor: pointer;
}
.timetableCts .tableContents .session-text span:hover {
  text-decoration: underline;
}
.timetableCts .tableContents .session-btn {
  position: relative;
  display: block;
  width: 8em;
  margin: 0 auto 0;
  padding: 7px 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  background: #999;
  border-radius: 15px;
  transition: 0.5s;
}
.timetableCts .tableContents .session-btn.hide {
  opacity: 0;
  pointer-events: none;
}
.timetableCts .tableContents .tableTime {
  margin-top: 10px;
}
.timetableCts .tableContents .tableTime::after {
  display: none;
}
.timetableCts .line {
  width: 70%;
  height: 1px;
  margin: 20px auto;
  display: block;
  background-color: #4546E0;
}

@media all and (min-width: 767px) {
  .timetableCts .tableBox {
    margin-bottom: 40px;
  }
  .timetableCts .tableTime {
    position: relative;
  }
  .timetableCts .tableTime::after {
    margin-left: 28px;
  }
  .timetableCts .tableTime .tableTime_wrap p {
    padding: 8px 0;
    font-size: 28px;
    width: 198px;
    text-align: center;
  }
  .timetableCts .tableTime .tableTime_wrap span {
    margin-left: 20px;
    font-size: 18px;
  }
  .timetableCts .tableTime .tableTime_wrap span br {
    display: none;
  }
  .timetableCts .tableContents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .timetableCts .tableContents .speaker {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 285px;
    margin-top: 15px;
    margin-bottom: 0;
  }
  .timetableCts .tableContents .speaker .profile_btn {
    transition: 0.3s;
  }
  .timetableCts .tableContents .speaker .profile_btn:hover {
    background-color: rgba(255, 72, 118, 0.2784313725);
  }
  .timetableCts .tableContents .speaker-name {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .timetableCts .tableContents .speaker-position {
    font-size: 12px;
  }
  .timetableCts .tableContents .speaker-position span {
    display: block;
  }
  .timetableCts .tableContents .speaker-position span + span::before {
    content: "";
  }
  .timetableCts .tableContents .session {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .timetableCts .tableContents .session:last-of-type {
    margin-bottom: 0;
  }
  .timetableCts .tableContents .session-name {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .timetableCts .tableContents .session-title {
    margin: 0;
    font-size: 28px;
  }
  .timetableCts .tableContents .session-text {
    max-height: none;
    font-size: 15px;
  }
  .timetableCts .tableContents .session-btn {
    display: none;
  }
  .timetableCts .tableContents.typB .speaker {
    width: 440px;
  }
  .timetableCts .line {
    width: 500px;
    margin: 50px auto 25px;
  }
}
@media all and (max-width: 375px) {
  .timetableCts .tableTime.sp_af::after {
    display: none;
  }
}
.outlineCts table {
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px;
}
.outlineCts table tr:nth-of-type(2) span {
  display: block;
  font-size: 12px;
}
.outlineCts table th {
  display: block;
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background-color: #ff4876;
}
.outlineCts table td {
  display: block;
  text-align: left;
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  background: rgba(249, 234, 249, 0.6);
}
.outlineCts table td img.logo_2 {
  width: 41%;
  margin: 0 auto 10px;
}
.outlineCts table td img.logo_3 {
  width: 79%;
  margin: 0 auto;
}
.outlineCts .cap {
  margin: 10px auto 15%;
  font-size: 12px;
  line-height: 1.6;
}
.outlineCts .mapArea h3 {
  font-size: min(4vw, 16px);
  line-height: 1.85;
  font-weight: 700;
}
.outlineCts .mapArea p {
  font-size: 13px;
  line-height: 1.85;
}
.outlineCts .mapArea .train {
  font-size: min(4vw, 16px);
  font-weight: 700;
  margin-top: 1em;
}
.outlineCts .mapArea a {
  font-size: 13px;
  margin-bottom: 1em;
  display: inline-block;
  text-decoration: underline;
}
.outlineCts .mapArea .map {
  width: 100%;
  height: 300px;
  margin: 30px auto 10px;
}

@media all and (min-width: 767px) {
  .outlineCts table {
    width: 860px;
    border-spacing: 5px 5px;
  }
  .outlineCts table th {
    display: table-cell;
    width: 200px;
    padding: 15px 0;
    font-size: 16px;
  }
  .outlineCts table td {
    display: flex;
    padding: 15px;
    font-size: 16px;
  }
  .outlineCts table td img.logo_2 {
    width: 115px;
    margin: 0 20px 0 0;
  }
  .outlineCts table td img.logo_3 {
    width: 220px;
    margin: 0;
  }
  .outlineCts .cap {
    width: 850px;
    margin-bottom: 80px;
  }
  .outlineCts .mapArea {
    width: 850px;
    margin: 0 auto;
  }
  .outlineCts .mapArea .mpFlex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .outlineCts .mapArea .mpFlex .mr20 {
    margin-right: 20px;
  }
  .outlineCts .mapArea .mpFlex a {
    transition: all 0.3s;
  }
  .outlineCts .mapArea .mpFlex a:hover {
    color: #ff4876;
  }
  .outlineCts .mapArea .map {
    width: 390px;
    height: 440px;
    margin: 0;
  }
  .outlineCts .mapArea p {
    font-size: 15px;
  }
  .outlineCts .mapArea h3, .outlineCts .mapArea .train {
    font-size: 17px;
  }
}
.sponsorCts h2 {
  margin-bottom: 10%;
}
.sponsorCts div span {
  display: block;
  margin: 0 auto 15%;
}
.sponsorCts div:first-of-type span:first-of-type {
  width: 55%;
}
.sponsorCts div:first-of-type span:last-of-type {
  width: 65%;
}
.sponsorCts div:last-of-type span:first-of-type {
  width: 50%;
}
.sponsorCts div:last-of-type span:last-of-type {
  width: 90%;
  margin-bottom: 10%;
}

@media all and (min-width: 767px) {
  .sponsorCts h2 {
    margin-bottom: 80px;
  }
  .sponsorCts div {
    display: flex;
    width: 940px;
    align-items: center;
  }
  .sponsorCts div:first-of-type span:first-of-type, .sponsorCts div:first-of-type span:last-of-type {
    width: 470px;
    margin-bottom: 80px;
  }
  .sponsorCts div:last-of-type span:first-of-type, .sponsorCts div:last-of-type span:last-of-type {
    width: 470px;
    margin-bottom: 20px;
  }
  .sponsorCts div img {
    margin: 0 auto;
  }
  .sponsorCts div img.logo-1 {
    width: 240px;
  }
  .sponsorCts div img.logo-2 {
    width: 325px;
  }
  .sponsorCts div img.logo-3 {
    width: 194px;
  }
  .sponsorCts div img.logo-4 {
    width: 380px;
  }
}
.othersCts {
  margin-bottom: 15%;
}
.othersCts h2 {
  text-align: center;
  font-family: "Sora", sans-serif;
  color: #ff4876;
  font-weight: 600;
  font-size: min(8vw, 32px);
  line-height: 1.4;
  margin-bottom: 7%;
}
.othersCts h2 span {
  display: block;
  text-align: center;
  color: #fff;
  font-size: min(4vw, 14px);
  font-weight: 600;
  letter-spacing: 0.2em;
}
.othersCts p {
  width: 90%;
  margin: 0 auto;
  color: #fff;
  font-size: 13px;
  line-height: 1.8;
}
.othersCts > div {
  display: flex;
  justify-content: center;
}
.othersCts > div a {
  display: block;
  width: 60px;
  margin: 30px;
}

@media all and (min-width: 767px) {
  .othersCts {
    margin-bottom: 60px;
  }
  .othersCts h2 {
    margin-bottom: 50px;
  }
  .othersCts p {
    width: 800px;
    font-size: 15px;
  }
  .othersCts > div {
    margin-top: 20px;
  }
}
/* --------------
フッター
-------------- */
footer {
  border-top: solid 1px #fff;
}
footer p {
  text-align: center;
  line-height: 2;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  padding: 30px 0 100px;
}
footer p strong {
  color: #fff;
  font-weight: bold;
}

@media all and (min-width: 767px) {
  footer {
    min-width: 1200px;
  }
  footer p {
    padding: 32px 0;
  }
}
/* --------------
ポップアップ
-------------- */
.popupCts .speaker-profile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.popupCts .speaker-profile.show {
  opacity: 1;
  pointer-events: auto;
}
.popupCts .speaker-profile .speaker-profile-inner {
  width: 84%;
  background-color: #fff;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  overflow: scroll;
  max-height: 70%;
}
.popupCts .speaker-profile .speaker-profile-inner img {
  width: 50%;
  margin: 0 auto 20px;
}
.popupCts .speaker-profile .speaker-profile-inner .speaker-name {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
}
.popupCts .speaker-profile .speaker-profile-inner .speaker-name span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 75%;
}
.popupCts .speaker-profile .speaker-profile-inner .speaker-position {
  font-size: 11px;
  line-height: 1.5;
}
.popupCts .speaker-profile .speaker-profile-inner .speaker-position span + span::before {
  content: "／";
}
.popupCts .speaker-profile .speaker-profile-inner .speaker-position + p {
  font-size: 13px;
  line-height: 1.6;
  margin: 1em 0 0;
  padding-top: 1em;
  border-top: solid 1px #4546E0;
}
.popupCts .speaker-profile .close-btn {
  display: block;
  width: 40px;
  height: 40px;
  background: #ddd;
  position: relative;
  border-radius: 20px;
  margin: -10px 0 0 auto;
  transform: translateX(10px);
  cursor: pointer;
}
.popupCts .speaker-profile .close-btn::before {
  content: "";
  display: block;
  width: 23px;
  height: 3px;
  background: #000;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: 11px;
  left: 12px;
}
.popupCts .speaker-profile .close-btn::after {
  content: "";
  display: block;
  width: 23px;
  height: 3px;
  background: #000;
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  position: absolute;
  top: 11px;
  right: 12px;
}

@media all and (min-width: 767px) {
  .popupCts .speaker-profile .speaker-profile-inner {
    width: 880px;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-height: none;
    overflow: visible;
  }
  .popupCts .speaker-profile .speaker-profile-inner img {
    width: 250px;
    margin: 0 0 20px 0;
  }
  .popupCts .speaker-profile .speaker-profile-inner img + div {
    width: 510px;
  }
  .popupCts .speaker-profile .speaker-profile-inner .speaker-name {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .popupCts .speaker-profile .speaker-profile-inner .speaker-position {
    font-size: 12px;
  }
  .popupCts .speaker-profile .speaker-profile-inner .speaker-position span {
    display: block;
  }
  .popupCts .speaker-profile .speaker-profile-inner .speaker-position span + span::before {
    content: "";
  }
  .popupCts .speaker-profile .close-btn {
    position: absolute;
    top: 0;
    right: 0;
    margin: -20px 0 0 auto;
    transform: translateX(20px);
  }
}