@font-face {
  font-family: "ClashDisplay-r";
  src: url("../fonts/ClashDisplay-Regular.ttf") format("truetype");
  src: url("../fonts/ClashDisplay-Regular.woff") format("woff");
}

@font-face {
  font-family: "ClashDisplay-m";
  src: url("../fonts/ClashDisplay-Medium.ttf") format("truetype");
  src: url("../fonts/ClashDisplay-Medium.woff") format("woff");
}

html {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    color: #171717;
}

body {
    min-width: 390px;
}

body.no-scroll {
  overflow: hidden;
}

main {
    overflow: hidden;
}

picture {
    display: block;
}

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

a {
    display: inline-block;
    color: #2b2b2b;
}

@media screen and (min-width: 901px) {
    a.--nomal {
        transition: opacity .5s;
    }

    a.--nomal:hover {
        opacity: 0.7;
    }
}

/* utility */
.u-en {
  font-family: "Unbounded", sans-serif;
  font-style: normal;
}

/* layout */
.l-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.l-inner {
  width: 100%;
  margin: 0 auto;
  max-width: 1060px;
}

.l-inner-2 {
  width: 100%;
  margin: 0 auto;
  max-width: 878px;
}

@media screen and (max-width: 900px) {
    .l-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .l-inner,
    .l-inner-2{
        max-width: 520px;
    }
}

/* common */
.pc-only {
    display: block;
}

.br-pc-only {
    display: inline-block;
}

.sp-only {
    display: none;
}

.br-sp-only {
    display: none;
}

@media screen and (max-width: 900px) {
    .pc-only {
        display: none;
    }

    .br-pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .br-sp-only {
        display: inline-block;
    }
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
body{
  padding-top: 96px;
}

.p-header{
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 50px;
  padding-right: 50px;
  z-index: 9000;
}

.p-header__inner{
  height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.p-header__logo{
  width: 260px;
}

.p-header__menu{
  display: flex;
  align-items: center;
  gap: 30px;
}

.p-mainMenu{
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.36px;
}

.p-header__contact{
  padding: 22px 30px;
  border-radius: 9999px;
  background: linear-gradient(96deg, #0054FA -8.57%, #17D4BC 85.42%);
  display: flex;
  align-items: center;
  gap: 19px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
}

@media screen and (max-width: 1100px){
  .p-header{
    padding-left: 40px;
    padding-right: 40px;
  }

  .p-header__logo{
    width: 240px;
  }

  .p-header__menu{
    gap: 20px;
  }

  .p-mainMenu{
    gap: 20px;
    font-size: 15px;
  }

  .p-header__contact{
    padding: 22px 20px;
    gap: 10px;
    font-size: 15px;
  }
}

@media screen and (max-width: 900px){
  body{
    padding-top: 62px;
    padding-bottom: 79px;
  }

  .p-header{
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-header__inner{
    height: 62px;
  }

  .p-header__logo{
    width: 154px;
  }

  .p-header__menu{
    display: block;
  }

  .p-ham-menu{
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    width: 100vw;
  }

  .p-mainMenu{
    flex-direction: column;
    gap: 30px;
    font-size: 18px;
    padding: 35px 0 40px;
    background: linear-gradient(96deg, #0054FA -8.57%, #17D4BC 85.42%);
  }

  .p-mainMenu a{
    color: #fff;
  }

  .p-header__menu .p-header__contact{
    display: none;
  }

  .p-float{
    z-index: 1000;
    position: fixed;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100vw;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
  }

  .p-header__contact{
    width: 238px;
    display: inline-flex;
    justify-content: center;
  }

  .ham-btn{
    position: relative;
    width: 25px;
    height: 14px;
    cursor: pointer;
  }

  .ham-btn span{
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #0469F0;
    border-radius: 5px;
    transition: .3s;
  }

  .ham-btn span:nth-child(1){
    top: 0;
  }
  .ham-btn span:nth-child(2){
    top: 6px;
  }
  .ham-btn span:nth-child(3){
    top: 12px;
  }

  .ham-btn.active span:nth-child(1){
    top: 6px;
    transform: rotate(45deg);
  }
  .ham-btn.active span:nth-child(2){
    background: transparent;
  }
  .ham-btn.active span:nth-child(3){
    top: 6px;
    transform: rotate(-45deg);
  }
}

/*===========================================================================*/
/*  mv  */
/*===========================================================================*/


/*===========================================================================*/
/*  相互副業  */
/*===========================================================================*/
.p-about{
  background: linear-gradient(96deg, #2ED8C0 -8.56%, #0058F8 82.37%);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  padding-left: 60px;
  padding-right: 60px;
}

.p-about::before{
  content: "";
  position: absolute;
  top: 0;
  left: 44px;
  width: 1px;
  height: 100%;
  background: #fff;
}

.p-about::after{
  content: "";
  position: absolute;
  top: 0;
  right: 44px;
  width: 1px;
  height: 100%;
  background: #fff;
}

.p-about__side{
  align-items: center;
  color: #fff;
  display: flex;
  width: 100%;
  white-space:nowrap;
  position: absolute;
  z-index: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: 0.32px;
  top: 0;
}

.p-about__side-left{
  left: 13px;
  transform: rotate(90deg);
  transform-origin: left bottom;
}

.p-about__side-right{
  right: 13px;
  transform: rotate(-90deg);
  transform-origin: right bottom;
}

.p-about__side ul {
  animation: flowing 80s linear infinite;
  transform:translateX(100%);
  margin: 0;
  padding: 0;
}
.p-about__side ul li{
  display: inline-block;
  padding-right: 10px;
}
@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}

.p-about__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.p-about__ttl{
  flex-shrink: 0;
}

.p-about__ttl{
  font-size: min(4.07vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -2.4px;
  color: #fff;
}

.p-about__text{
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  max-width: 525px;
}

.p-about__text p:not(:first-child){
  margin-top: 20px;
}

.p-about__bottom{
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.p-about__box{
  padding: 21px 12px 12px;
  border-radius: 15px;
  text-align: center;
}

.p-about__box h3{
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 21px;
  position: relative;
  display: inline-block;
}

.p-about__box:first-child h3::after{
  content: "";
  width: 157px;
  height: 9px;
  background-image: url(../img/until-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.p-about__box:last-child h3::after{
  content: "";
  width: 294.595px;
  height: 112.218px;
  transform: rotate(-5.046deg);
  background-image: url(../img/from-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -38px;
  left: -60px;
}

.p-about__box:first-child{
  background: rgba(0, 255, 255, 0.3);
}

.p-about__box:last-child{
  background: rgba(0, 46, 130, 0.3);
}

.p-about .text-only{
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}


@media screen and (max-width: 900px){
  .p-about{
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 89px;
    padding-bottom: 89px;
  }

  .p-about::before{
    top: 39px;
    left: 0px;
    width: 100%;
    height: 1px;
  }

  .p-about::after{
    top: initial;
    bottom: 39px;
    left: 0px;
    width: 100%;
    height: 1px;
  }

  .p-about__side{
    font-size: 12px;
    letter-spacing: 0.24px;
  }

  .p-about__side-left{
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform-origin: left bottom;
  }

  .p-about__side-right{
    top: initial;
    bottom: 12px;
    right: initial;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    -webkit-transform: translateX(-50%) rotate(180deg);
    -ms-transform: translateX(-50%) rotate(180deg);
    transform-origin: center;
  }

  .p-about__top{
    flex-direction: column;
    gap: 30px;
  }

  .p-about__ttl{
    flex-shrink: 0;
  }

  .p-about__ttl{
    font-size: 30px;
    letter-spacing: -1.5px;
  }

  .p-about__text{
    font-size: 14px;
    max-width: 100%;
  }

  .p-about__text p:not(:first-child){
    margin-top: 10px;
  }

  .p-about__bottom{
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .p-about__box{
    padding: 10px;
  }

  .p-about__box h3{
    font-size: 24px;
    margin-bottom: 20px;
  }

  .p-about__box:first-child h3::after{
    width: 115px;
    height: 8px;
    top: calc(100% + 4px);
  }

  .p-about__box:last-child h3::after{
    width: 243.192px;
    height: 92.637px;
    transform: rotate(-2.046deg);
    top: -30px;
    left: -50px;
  }

  .p-about .text-only{
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
  }
}

/*===========================================================================*/
/*  セクションタイトル  */
/*===========================================================================*/

.p-section-title h2{
  text-align: center;
  font-size: 96px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -1.92px;
  background: linear-gradient(96deg, #0054FA -8.57%, #17D4BC 85.42%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-section__title-sub{
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.p-section__title-sub.--bold{
  font-weight: 700;
}

.p-section__title-annotation{
  color: #000;
  text-align: center;
  font-size: 12px;
  margin-top: 16px;
  line-height: 1.5;
}
.p-section__title-annotation__text{
  margin-bottom: 10px;
}

@media screen and (max-width: 900px){

  .p-section-title h2{
    font-size: 48px;
    letter-spacing: -0.96px;
  }

  .p-section__title-sub{
    font-size: 16px;
  }
}

/*===========================================================================*/
/*  講演内容  */
/*===========================================================================*/
.p-session{
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  background: #fff;
  overflow: hidden;
}

.p-session-bg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  height: 98%;
  width: auto;
}

@supports not (backdrop-filter: blur(30px)) {
  .p-session::after {
    background: rgba(255,255,255, .8);
  }
}

@media all and (-ms-high-contrast: none) {
  .p-session::after {
    background: rgba(255,255,255,.8);
  }
}

.p-session .l-inner{
  position: relative;
  z-index: 2;
}

.p-session .p-section-title{
  margin-bottom: 60px;
}

.p-session__box{
  border-radius: 30px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 15px 15px 43px 0px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(46.29999923706055px);
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 50px;
  margin-top: 20px;
}

.p-session__box.--fukidashi{
  margin-top: 140px;
  position: relative;
}

.p-session__box.--fukidashi::before{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: calc(100% + 14px);
  aspect-ratio: 36/26;
  width: 36px;
  background: url(../img/fukidasi.png) no-repeat center center / contain;
}

.p-session__box.--fukidashi::after{
  content: "リアル参加者限定セッション";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: calc(100% + 27px);
  padding: 15px 38px 17px;
  background: linear-gradient(90deg, #0362F3 0%, #17D4BC 100%);
  border-radius: 9999px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 140%;
}

.p-session__box.--center{
  align-items: center;
}

.p-session__box--time{
  flex-shrink: 0;
  width: 200px;
  border-radius: 18px;
  background: linear-gradient(96deg, #0054FA -8.57%, #17D4BC 85.42%);
  box-shadow: 15px 15px 45px 0px rgba(0, 0, 0, 0.18);
  position: relative;
  padding: 20px 0 25px 53px;
}

.p-session__box--time.--pivot{
  background: linear-gradient(90deg, #C71FF8 0%, #2280BF 100%);
  padding: 53px 0 25px 53px;
  position: relative;
}

.box-header{
  position: absolute;
  top: 3px;
  width: calc(100% - 6px);
  left: 3px;
  z-index: 1;
  box-shadow: 15px 15px 45px rgba(0, 0, 0, 0.18);
  background: #fff;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px 16px 0 0;
}

.box-header img{
  width: 156px;
}

.p-session__box--time::after{
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 33px;
  bottom: 0;
}

.p-session__box--time.--pivot::after{
  height: calc(100% - 3px);
}

.p-section__time-side{
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  line-height: 105%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  position: absolute;
  top: 24px;
  left: 10px;
  transform: rotate(90deg);
  transform-origin: left bottom;
}
.p-session__box--time.--pivot .p-section__time-side{
  top: 45px;
}

.p-section__time-side-ja{
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  position: absolute;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: 19px;
  left: 10px;
}

.p-session__box--head{
  border-radius: 8px;
  background: linear-gradient(90deg, #C71FF8 0%, #2280BF 100%);
  display: inline-block;
  padding: 4px 12px 6px;
  position: relative;
  margin-bottom: 8px;
}

.p-session__box--head::before{
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #fff;
  border-radius: 6px;
  top: 2px;
  left: 2px;
}

.p-session__box--head span{
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #C71FF8 0%, #2280BF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
}

.p-section__time-ttl{
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: 105%;
  letter-spacing: -0.64px;
}

.p-section__time-tag-wrap{
  margin-top: 15px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.p-section__time-tag{
  border-radius: 6px;
  background: #FFF;
  padding: 2px 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 3px;
}

.p-section__time-tag.--online{
  color: #0054FA;
}

.p-section__time-tag.--offline{
  color: #18AB98;
}

.p-session__box--content{
  width: 100%;
}

.p-session__box--ttl{
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
}

.p-session__box--ttl.--small{
  font-size: 30px;
}

.p-session__box--txt{
  font-size: 13px;
  font-weight: 500;
  line-height: 170%;
  margin-top: 20px;
}

.p-session__box--speaker{
  margin-top: 20px;
}

.p-session__box--speaker-ttl{
  display: flex;
  align-items: center;
  gap: 7px;
}

.p-session__box--speaker-ttl-main{
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
}

.p-session__box--speaker-ttl .border{
  width: 100%;
  height: 1px;
  background: #171717;
}

.p-session__box--speaker-person{
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #BEBEBE;
  margin-top: 12px;
}

.p-session__box--speaker-person.--flex-start{
  align-items: flex-start;
}

.p-session__box--speaker-person-img{
  border-radius: 14px;
  border: 1px solid #1A04F8;
  background: #FFF;
  width: 95px;
  height: 95px;
  flex-shrink: 0;
  padding: 5px;
  flex-shrink: 0;
}

.p-session__box--speaker-person figure{
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
}

.p-session__box--speaker-person__info.--flex{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.p-speaker__list--btn{
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  color: #0058F8;
  font-size: 11px;
  font-weight: 500;
  line-height: 140%;
  cursor: pointer;
  padding-bottom: 3px;
  border-bottom: 1px solid #0058F8;
}

.p-session__box--speaker-person__supple{
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 9px;
}

.p-session__box--speaker-person__name__wrap{
  display: flex;
  align-items: flex-end;
}

.p-session__box--speaker-person__name{
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}

.p-session__box--speaker-person__en{
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
}

.p-session__box--speaker-person__post{
  margin-top: 9px;
}

.speaker-company{
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
}

.speaker-text{
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
}

.p-session__box--img{
  margin-top: 40px;
  display: block;
}

.popup-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
}

.popup-mask.active {
  display: block;
}

.p-popup {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 22px;
  border: 1px solid #D8D8D8;
  background: #FFF;
  z-index: 9999;
  width: 100%;
  max-width: 898px;
  padding: 50px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.p-popup.active {
  display: block; /* アクティブなときに表示 */
}

.p-popup__inner{
  position: relative;
}

.p-popup__close{
  position: absolute;
  bottom: 100%;
  left: 100%;
}

.p-popup__speaker--list li{
  padding-bottom: 22px;
  border-bottom: 1px dashed #BEBEBE;
}

.p-popup__speaker--list li:not(:first-child){
  margin-top: 25px;
}

.p-popup__speaker--list li .wrap{
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.p-popup__speaker--list--img{
  border-radius: 14px;
  border: 1px solid #1A04F8;
  background: #FFF;
  width: 107px;
  height: 107px;
  padding: 5px;
  flex-shrink: 0;
}

.p-popup__speaker--list--img figure{
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.p-popup__speaker--list__name__wrap{
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.p-popup__speaker--list__name{
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}

.p-popup__speaker--list__en{
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
}

.p-popup__speaker--list__post{
  margin-top: 5px;
}

.p-popup__speaker-company{
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
}

.p-popup__speaker-text{
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
  margin-top: 4px;
}

.p-popup__speaker--bottom{
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.42px;
}

@media screen and (max-width: 900px){
  .p-session{
    padding-top: 60px;
    padding-bottom: 240px;
    position: relative;
  }

  .p-session-bg{
    position: absolute;
    height: auto;
    width: 1500px;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

  .p-session .p-section-title{
    margin-bottom: 50px;
  }

  .p-session__box{
    border-radius: 20px;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin-top: 15px;
  }

  .p-session__box.--fukidashi{
    margin-top: 74px;
  }

  .p-session__box.--fukidashi::before{
    bottom: calc(100% + 10px);
    width: 32px;
  }

  .p-session__box.--fukidashi::after{
    white-space: nowrap;
    bottom: calc(100% + 16px);
    padding: 6px 15px 9px;
    font-size: 16px;
  }

  .p-session__box.--center{
    align-items: flex-start;
  }

  .p-session__box--time{
    flex-shrink: 0;
    width: 100%;
    border-radius: 15px;
    padding: 20px 0 20px 51px;
  }

  .p-session__box--time.--pivot{
    padding: 53px 0 25px 53px;
  }

  .box-header{
    top: 2px;
    width: calc(100% - 4px);
    left: 2px;
    height: 30px;
    border-radius: 13px 13px 0 0;
  }

  .box-header img{
    width: 130px;
  }

  .p-session__box--time::after{
    left: 31px;
  }

  .p-session__box--time.--pivot::after{
    height: calc(100% - 2px);
  }

  .p-section__time-side{
    font-size: 10px;
    line-height: 117%;
    top: 3px;
  }

  .p-section__time-side-ja{
    font-size: 11px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .p-session__box--head{
    border-radius: 6px;
    padding: 2px 10px 4px;
    margin-bottom: 5px;
  }

  .p-session__box--head::before{
    border-radius: 4px;
  }

  .p-session__box--head span{
    font-size: 13px;
  }

  .p-section__time-ttl{
    font-size: 26px;
    letter-spacing: -0.52px;
  }

  .p-section__time-tag-wrap{
    margin-top: 10px;
    display: inline-flex;
    flex-direction: row;
    gap: 5px;
  }

  .p-section__time-tag{
    border-radius: 4px;
    font-size: 10px;
  }

  .p-session__box--ttl{
    font-size: 20px;
  }

  .p-session__box--ttl.--small{
    font-size: 20px;
  }

  .p-session__box--txt{
    font-size: 12px;
    margin-top: 8px;
  }

  .p-session__box--speaker{
    margin-top: 15px;
  }

  .p-session__box--speaker-ttl{
    gap: 6px;
  }

  .p-session__box--speaker-ttl-main{
    gap: 5px;
    font-size: 12px;
  }

  .p-session__box--speaker-person{
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .p-session__box--speaker-person__wrap{
    margin-top: 12px;
  }

  .p-session__box--speaker-person:not(:first-child){
    margin-top: 9px;
  }

  .p-session__box--speaker-person-img{
    border-radius: 10px;
    width: 70px;
    height: 70px;
    padding: 3.6px;
  }

  .p-session__box--speaker-person figure{
    border-radius: 7px;
  }

  .p-session__box--speaker-person__info.--flex{
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .p-session__box--speaker-person__info.--flex .text-box{
    width: 100%;
  }

  .p-speaker__list--btn {
    font-size: 10px;
  }

  .p-speaker__list--btn svg{
    width: 10px;
  }

  .p-session__box--speaker-person__supple{
    font-size: 10px;
    margin-bottom: 5px;
  }

  .p-session__box--speaker-person__name{
    font-size: 16px;
  }

  .p-session__box--speaker-person__en{
    font-size: 10px;
  }

  .p-session__box--speaker-person__post{
    margin-top: 5px;
  }

  .speaker-company{
    font-size: 12px;
  }

  .speaker-text{
    margin-top: 3px;
    font-size: 10px;
  }

  .p-session__box--img{
    margin-top: 20px;
  }

  .p-popup {
    border-radius: 20px;
    z-index: 9999;
    width: calc(100vw - 40px);
    padding: 30px 20px;
  }

  .p-popup__close{
    transform: translateX(-50%);
  }

  .p-popup__speaker--list li{
    padding-bottom: 20px;
  }

  .p-popup__speaker--list li:not(:first-child){
    margin-top: 20px;
  }

  .p-popup__speaker--list li .wrap{
    align-items: center;
    gap: 12px;
  }

  .p-popup__speaker--list--img{
    border-radius: 10px;
    width: 68px;
    height: 68px;
    padding: 3.6px;
  }

  .p-popup__speaker--list--img figure{
    border-radius: 8px;
  }

  .p-popup__speaker--list__name__wrap{
    gap: 0 5px;
    flex-wrap: wrap;
  }

  .p-popup__speaker--list__name{
    font-size: 16px;
  }

  .p-popup__speaker--list__en{
    font-size: 10px;
  }

  .p-popup__speaker-company{
    font-size: 12px;
  }

  .p-popup__speaker-text{
    font-size: 10px;
    margin-top: 3px;
  }

  .p-popup__speaker--bottom{
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 0.36px;
  }
}

/*===========================================================================*/
/*  スケジュール  */
/*===========================================================================*/
.p-schedule{
  margin-top: 60px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

.p-schedule .p-section__ttl .title-en{
  color: #2B2B2B;
}

.p-schedule .p-section__ttl .title-ja{
  color: #2B2B2B;
}

.p-section__img{
  margin-top: 50px;
}

@media screen and (max-width: 900px){
  .p-schedule{
    margin-top: -160px;
    padding-bottom: 60px;
  }

  .p-section__img{
    margin-top: 33px;
  }
}

/*===========================================================================*/
/*  申し込み  */
/*===========================================================================*/
.p-contact{
  background: #F3F4F8;
  padding-top: 120px;
  padding-bottom: 120px;
}
.p-contact.--thanks{
  background: linear-gradient(96deg, #2ED8C0 -8.56%, #0058F8 82.37%);
  padding-top: 140px;
  padding-bottom: 120px;
}

.p-contact__ttl-box{
  text-align: center;
  color: #fff;
}

.p-contact-en{
  font-size: 25px;
  font-weight: 500;
  line-height: 100%;
}

.p-contact__ttl{
  font-size: 50px;
  font-weight: 700;
  line-height: 125%;
  margin-top: 25px;
}

.p-contact__text{
  margin-top: 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 175%;
}

.p-contact__btn{
  width: 478px;
  height: 82px;
  border-radius: 9999px;
  background: linear-gradient(93deg, #3DCEBF 5.67%, #1D73F9 101.74%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.88px;
}

.p-contact__btn::after{
  content: "";
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 8px;
  height: 12px;
  position: absolute;
  right: 31px;
  top: 50%;
  transform: translateY(-50%);
}

.form-box{
  border-radius: 30px;
  background: #FFF;
  backdrop-filter: blur(54.5px);
  margin-top: 50px;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.p-thanks__text{
  margin-top: 25px;
  font-size: 34px;
  font-weight: 700;
  line-height: 42px;
}

.p-top__back{
  width: 369px;
  height: 72px;
  border-radius: 9999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  color: #0469F0;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  position: relative;
}

.p-top__back::after{
  content: "";
  width: 8px;
  height: 12px;
  background-image: url(../img/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
}

.p-contact__ttl-box .mktoForm .mktoField{
  border-radius: 4px;
  border: 1px solid #E1E1E1 !important;
  background: #FCFCFC;
  padding: 15px;
  font-size: 13px !important;
  line-height: 1;
  box-shadow: none;
}

.p-contact__ttl-box .mktoForm .mktoButton{
  width: 369px;
  height: 72px;
  border-radius: 9999px;
  background: linear-gradient(96deg, #2ED8C0 -8.56%, #0058F8 82.37%) !important;
  color: #fff !important;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 4px;
}

.p-contact__ttl-box .mktoForm .mktoButton{
  position: relative;
}

.p-contact__ttl-box .mktoForm .mktoLabel{
  font-weight: 600;
}

.p-contact__ttl-box .mktoForm .mktoButton::after{
  content: "";
  width: 8px;
  height: 12px;
  position: absolute;
  right: 30px;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.p-contact__ttl-box div:has(.mktoButtonWrap){
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.p-contact__ttl-box div:has(.mktoFormCol){
  padding: 30px 0 20px;
  border-bottom: 1px solid #D6D6D6;
}

.mktoForm .mktoFormRow:nth-child(n+21){
  border-bottom: none;
  padding: 0;
}

.mktoForm .mktoFormRow:nth-child(17){
  padding-bottom: 0;
  border-bottom: none;
}
.mktoForm .mktoFormRow:nth-child(18){
  padding-top: 0;
}
.mktoForm .mktoFormRow:nth-child(19){
  padding-bottom: 0;
  border-bottom: none;
}
.mktoForm .mktoFormRow:nth-child(20){
  padding-top: 0;
}

.mktoForm .mktoFormRow:nth-child(21){
  padding-top: 30px;
}
.mktoForm .mktoFormRow:nth-child(22) .mktoFormCol{
  display: flex;
  align-items: center;
}

.form-box.--cancel .mktoForm .mktoFormRow:nth-child(5){
  display: none;
}

.form-box.--cancel .mktoForm .mktoFormRow:nth-child(6){
  border-bottom: none;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.form-box.--questionnaire .mktoForm .mktoFormRow:nth-child(n+15){
  padding-bottom: 0;
  border-bottom: none;
}

.form-box.--questionnaire .mktoForm .mktoFormRow:nth-child(17){
  display: flex;
  align-items: center;
}

.p-contact__ttl-box .mktoButtonWrap{
  margin-left: auto !important;
  margin-right: auto !important;
}

.p-contact__ttl-box form{
  width: 100%;
}

@media screen and (max-width: 900px){
  .p-contact{
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .form-box{
    border-radius: 16px;
    margin-top: 30px;
    padding: 25px 20px;
  }

  .p-thanks__text{
    margin-top: 20px;
    font-size: 16px;
    line-height: 20px;
  }

  .p-top__back{
    width: 100%;
    max-width: 369px;
    height: 60px;
    margin: 40px auto 0;
    font-size: 16px;
  }

  .p-top__back::after{
    right: 35px;
  }

  .p-contact__ttl-box .mktoForm .mktoButton{
    width: 285px;
    height: 62px;
    font-size: 16px;
  }

  .p-contact__ttl-box div:has(.mktoButtonWrap){
    margin-top: 30px;
  }

  .p-contact__ttl-box div:has(.mktoFormCol){
    padding: 16px 0 10px;
    border-bottom: 1px solid #D6D6D6;
  }

  .mktoForm .mktoFormRow:nth-child(n+21){
    border-bottom: none;
    padding: 0;
  }

  .mktoForm .mktoFormRow:nth-child(17){
    padding-bottom: 0;
    border-bottom: none;
  }
  .mktoForm .mktoFormRow:nth-child(18){
    padding-top: 0;
  }
  .mktoForm .mktoFormRow:nth-child(19){
    padding-bottom: 0;
    border-bottom: none;
  }
  .mktoForm .mktoFormRow:nth-child(20){
    padding-top: 0;
  }
  .mktoForm .mktoFormRow:nth-child(21){
    padding-top: 16px;
  }
  .mktoForm .mktoFormRow:nth-child(22){
    display: flex;
    align-items: center;
  }

}

/*===========================================================================*/
/*  faq  */
/*===========================================================================*/
.p-faq{
  padding-top: 120px;
  padding-bottom: 80px;
}

.p-section__title-2{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p-section__title-2-ja{
  font-size: 46px;
  font-weight: 700;
  line-height: 140%;
}

.p-faq__list{
  width: 100%;
  margin-top: 60px;
}

.p-faq__list dt{
  border-radius: 12px;
  background: #F3F4F8;
  backdrop-filter: blur(32.5px);
  padding: 27px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.p-faq__list dd{
  padding: 20px 30px 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.p-faq__list dt > p{
  font-size: 24px;
  font-weight: 700;
  line-height: 125%;
}

.p-faq__list dd > p{
  font-size: 16px;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0.48px;
}

.p-faq__list dd a{
  text-decoration: underline;
  display: inline;
}

.p-faq__list--num{
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-faq__list dt .p-faq__list--num{
  background: #0469F0;
}

.p-faq__list dd .p-faq__list--num{
  background: #2ED0AC;
}

@media screen and (max-width: 900px){
  .p-faq{
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .p-section__title-2{
    gap: 10px;
  }

  .p-section__title-2-en{
    font-size: 16px;
  }

  .p-section__title-2-ja{
    font-size: 34px;
  }

  .p-faq__list{
    margin-top: 30px;
  }

  .p-faq__list dt{
    border-radius: 10px;
    padding: 12px 18px;
    gap: 14px;
  }

  .p-faq__list dd{
    padding: 10px 0 20px 18px;
    gap: 14px;
  }

  .p-faq__list dt > p{
    font-size: 17px;
    line-height: 135%;
  }

  .p-faq__list dd > p{
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0.42px;
  }

  .p-faq__list--num{
    font-size: 18px;
    width: 30px;
    height: 30px;
  }

}

/*===========================================================================*/
/*  注意事項  */
/*===========================================================================*/
.p-info{
  background: #F1F2F4;
  padding-top: 120px;
  padding-bottom: 120px;
}

.p-info__list{
  margin-top: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.48px;
  padding-left: 1em;
}

.p-info__list li{
  list-style: disc;
}

@media screen and (max-width: 900px){
  .p-info{
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .p-info__list{
    margin-top: 25px;
    font-size: 14px;
    line-height: 170%;
  }
}

/*===========================================================================*/
/*  開催概要  */
/*===========================================================================*/
.p-outline{
  padding-top: 120px;
  padding-bottom: 120px;
}

.p-outline__table{
  margin-top: 35px;
}

.p-outline__table dl{
  display: flex;
}

.p-outline__table dt{
  padding: 35px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #0469F0;
  width: 217px;
  color: #0469F0;
  font-size: 18px;
  font-weight: 700;
  line-height: 125%;
}

.p-outline__table dd{
  padding: 35px 0;
  border-bottom: 1px solid #DBDBDB;
  width: calc(100% - 217px);
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
}

@media screen and (max-width: 900px){
  .p-outline{
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .p-outline__table{
    margin-top: 10px;
  }

  .p-outline__table dl{
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid #DBDBDB;
    position: relative;
  }

  .p-outline__table dl::after{
    content: "";
    width: 62px;
    height: 1px;
    background: #1D73F9;
    position: absolute;
    bottom: -1px;
  }

  .p-outline__table dt{
    padding: 0;
    border-bottom: none;
    width: 100%;
    font-size: 14px;
  }

  .p-outline__table dd{
    padding: 0;
    border-bottom: none;
    width: 100%;
    font-size: 14px;
  }
}

/*===========================================================================*/
/*  フッター  */
/*===========================================================================*/
.p-footer{
  background: #2B2B2B;
  padding-top: 60px;
  padding-bottom: 95px;
}

.p-footer-menu a{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.p-footer-menu{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

@media screen and (max-width: 900px){
  .p-footer{
    padding-bottom: 100px;
  }

  .p-footer-menu{
    flex-direction: column;
    gap: 35px;
  }
}



