@charset "UTF-8";
/* --------------------
media query

使い方
@include if-medium-screen-upper { }
@include if-large-screen-upper { }
-------------------- */
/* foundation
---------------------------------------------*/
body {
  font-family: "BIZ UDGothic", sans-serif;
  font-size: 18px;
}

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

p {
  line-height: 1.8;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.8;
}

/* layout
---------------------------------------------*/
.wrapper {
  padding-top: 100px;
}
@media screen and (min-width: 900px) {
  .wrapper {
    padding-top: 120px;
  }
}

.header-container {
  max-width: 1000px;
  width: 100%;
}

@media screen and (min-width: 900px) {
  .container {
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
  }
}

.footer-container {
  max-width: 900px;
  width: 100%;
}

/* object/component 
---------------------------------------------*/
.header {
  display: flex;
}

.header--fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
}

.header__logo {
  background: #3e6eb3;
  width: 140px;
}
@media screen and (min-width: 900px) {
  .header__logo {
    width: 300px;
  }
}

.header__logo-link {
  display: block;
  padding: 35px 20px;
}
@media screen and (min-width: 900px) {
  .header__logo-link {
    padding: 20px 20px;
  }
}

@media screen and (min-width: 900px) {
  .header__logo-img {
    height: 80px;
  }
}

.header__nav {
  flex: 1;
  background: #ecf1f7;
}

.header__main-nav {
  background: #3e6eb3;
  display: flex;
  justify-content: flex-end;
}

.header__main-nav-item {
  border-left: 1px solid #fff;
  list-style: none;
  text-align: center;
  width: 33.3%;
}
@media screen and (min-width: 600px) {
  .header__main-nav-item {
    width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .header__main-nav-item {
    width: 150px;
  }
}

.header__main-nav-link {
  display: block;
  padding: 15px 10px;
}

.header__main-nav-link--active {
  background: #02419b;
}

.header__main-nav-img {
  width: auto;
  height: 30px;
}
@media screen and (min-width: 900px) {
  .header__main-nav-img {
    height: 45px;
  }
}

.header__page-nav {
  display: flex;
  justify-content: end;
}

.header__page-nav-link {
  text-decoration: none;
  color: #3e6eb3;
  display: block;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
}

.header__page-nav-item {
  list-style: none;
}

.header__sp-btn-menu {
  display: block;
  text-align: right;
  text-decoration: none;
  color: #3e6eb3;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  cursor: pointer;
}

.box {
  background: #ecf1f7;
  margin-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .box {
    margin-bottom: 40px;
  }
}

.box__content {
  padding: 25px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .box__content {
    padding: 35px;
  }
}

.box__title {
  background: #3e6eb3;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  letter-spacing: 0.3em;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .box__title {
    font-size: 25px;
    padding: 15px;
  }
}

.box__date {
  font-size: 17px;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .box__date {
    font-size: 25px;
  }
}

@media screen and (min-width: 900px) {
  .box__unit {
    display: flex;
    justify-content: center;
  }
}

.box__unit-item-title {
  width: 160px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #ff7516;
  border: 3px solid #ff7516;
  background: #fff;
  padding: 7px;
  margin-bottom: 20px;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .box__unit-item-title {
    padding: 25px;
    margin-right: 20px;
    margin-bottom: 0;
    width: auto;
    font-size: 24px;
  }
}

.box__place {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: bold;
}
.box__place .small {
  font-size: 15px;
}
@media screen and (min-width: 900px) {
  .box__place {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .box__place .small {
    font-size: 30px;
  }
}

.box__free {
  background: #3e6eb3;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  border-radius: 40px;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 900px) {
  .box__free {
    font-size: 30px;
    padding: 15px 20px;
    width: 200px;
  }
}

.section-title-underline {
  border-bottom: 1px solid #ff7516;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.forum-vertical-btn {
  position: fixed;
  bottom: 0;
  display: flex;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 900px) {
  .forum-vertical-btn {
    top: 210px;
    right: 0;
    display: block;
    width: auto;
  }
}

.forum-vertical-btn__list {
  list-style: none;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  background: #ED7700;
}
@media screen and (min-width: 900px) {
  .forum-vertical-btn__list {
    border-radius: 10px 0 0 10px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    width: auto;
  }
}
.forum-vertical-btn__list.disabled {
  background: #9e9e9e;
}
.forum-vertical-btn__list.disabled a {
  color: #ccc;
}

.forum-vertical-btn__link {
  color: #fff;
  display: block;
  padding: 15px 10px;
  text-align: center;
  font-size: 13px;
}
.forum-vertical-btn__link .triangle {
  font-size: 13px;
  margin-left: 2px;
}
@media screen and (min-width: 900px) {
  .forum-vertical-btn__link .triangle {
    font-size: 17px;
    margin-left: 0;
  }
}
@media screen and (min-width: 600px) {
  .forum-vertical-btn__link {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .forum-vertical-btn__link {
    padding: 30px 15px;
    font-size: 18px;
  }
}

.triangle {
  transform: rotate(-90deg);
  display: inline-block;
}

/* object/project
---------------------------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #ecf1f7;
  /*動き*/
  transition: all 0.6s;
  /*アクティブクラスがついたら位置を0に*/
  /*ナビゲーションの縦スクロール*/
  /*ナビゲーション*/
  /*リストのレイアウト設定*/
}
#g-nav.panelactive {
  top: 0;
}
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  padding: 0 20px;
  /*ナビゲーション天地中央揃え*/
}
#g-nav li {
  list-style: none;
  text-align: right;
  margin-bottom: 30px;
}
#g-nav li a {
  color: #3e6eb3;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 18px;
}
#g-nav li a.disabled {
  color: #9e9e9e;
}
#g-nav .header__sp-btn-menu {
  padding: 0 0 20px;
  border-bottom: 1px solid #3e6eb3;
  margin: 20px 20px 40px;
}

.topview {
  background: url(../img/bg_topview_sp.jpg?202309262) repeat center top;
  background-size: cover;
  padding: 60px 0 40px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .topview {
    background: url(../img/bg_topview.jpg?20230926) repeat center top;
    background-size: cover;
    padding: 80px 0 40px;
  }
}

.bg-subpage {
  background: url(../img/bg_topview_sp.jpg) repeat center top;
  background-size: cover;
  padding: 60px 0 40px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .bg-subpage {
    background: url(../img/bg_topview-sub.jpg?20230927) repeat left top;
    background-size: cover;
    padding: 80px 0 40px;
  }
}

.topview__title {
  text-align: center;
  margin-bottom: 20px;
}

.topview__logo-img {
  width: 80%;
  max-width: 500px;
}
@media screen and (min-width: 900px) {
  .topview__logo-img {
    width: 640px;
    max-width: none;
  }
}

.topview__online-movie {
  font-size: 11px;
  background: #fff;
  padding: 5px 20px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-block;
  color: #3e6eb3;
}
@media screen and (min-width: 900px) {
  .topview__online-movie {
    font-size: 16px;
    padding: 10px 30px;
  }
}

.topview__lead {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 60px;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .topview__lead {
    font-size: 30px;
    line-height: 1.3;
  }
}
.topview__lead span {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .topview__lead span {
    font-size: 23px;
  }
}

.btn-cpd-point {
  background: #ff0000;
  padding: 10px 20px;
  border-radius: 100px;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
  display: block;
  text-decoration: none;
  box-shadow: 4px 5px #3e6eb3;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .btn-cpd-point {
    font-size: 25px;
    padding: 15px 20px;
  }
}
.btn-cpd-point.disabled {
  color: #dcdcdc;
  background-color: #9e9e9e;
  box-shadow: 4px 5px #ccc;
}
.btn-cpd-point .small {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .btn-cpd-point .small {
    font-size: 25px;
  }
}

.btn-cpd-point--large {
  padding: 25px;
}

.box--cpd-point {
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .box--cpd-point .box__unit {
    align-items: baseline;
  }
}

.content-nav {
  background-color: #ecf1f7;
  padding: 20px;
}
@media screen and (min-width: 900px) {
  .content-nav {
    padding: 15px 0;
  }
}

.content-nav__lists {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 900px) {
  .content-nav__lists {
    justify-content: center;
    flex-wrap: nowrap;
  }
}

.content-nav__list {
  width: 50%;
  list-style: none;
  text-align: center;
}
.content-nav__list:nth-of-type(1), .content-nav__list:nth-of-type(2) {
  border-bottom: 1px solid #3e6eb3;
  padding-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .content-nav__list:nth-of-type(1), .content-nav__list:nth-of-type(2) {
    border: none;
    padding: 0;
  }
}
.content-nav__list:nth-of-type(3), .content-nav__list:nth-of-type(4) {
  padding-top: 20px;
}
@media screen and (min-width: 900px) {
  .content-nav__list:nth-of-type(3), .content-nav__list:nth-of-type(4) {
    border: none;
    padding: 0;
  }
}
.content-nav__list:nth-child(even) a {
  border: none;
}
@media screen and (min-width: 900px) {
  .content-nav__list:nth-child(even) a {
    border-right: 1px solid #3e6eb3;
  }
}
@media screen and (min-width: 900px) {
  .content-nav__list:last-child a {
    border-right: none;
  }
}
@media screen and (min-width: 900px) {
  .content-nav__list {
    width: 25%;
  }
}

.content-nav__link {
  text-decoration: none;
  color: #3e6eb3;
  font-size: 16px;
  font-weight: bold;
  border-right: 1px solid #3e6eb3;
  display: block;
}
@media screen and (min-width: 900px) {
  .content-nav__link {
    padding: 0 40px;
    font-size: 16px;
  }
}

.footer {
  background: #3e6eb3;
  padding: 30px 20px;
}

.organizer {
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .organizer {
    margin-bottom: 50px;
  }
}

.organizer__title {
  margin-bottom: 30px;
}

.organizer__title-img {
  width: auto;
  height: 20px;
  vertical-align: bottom;
}
@media screen and (min-width: 900px) {
  .organizer__title-img {
    height: 28px;
  }
}

.organizer__list {
  list-style: none;
  font-size: 16px;
  margin-bottom: 20px;
  text-decoration: underline;
}
.organizer__list:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .organizer__list {
    font-size: 20px;
  }
}
.organizer__list a {
  color: #fff;
  text-decoration: none;
}

.section-forum {
  padding: 40px 20px;
}
@media screen and (min-width: 900px) {
  .section-forum {
    padding: 60px 0 70px;
  }
}

.section-forum__title {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .section-forum__title {
    margin-bottom: 40px;
  }
}

.section-forum__title-img {
  width: 90%;
  max-width: 400px;
}
@media screen and (min-width: 900px) {
  .section-forum__title-img {
    width: 600px;
    max-width: none;
  }
}

.section-forum__lead {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.8;
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .section-forum__lead {
    font-size: 29px;
    margin-bottom: 70px;
  }
}

.section-forum__group {
  margin-bottom: 40px;
}
.section-forum__group:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .section-forum__group {
    margin-bottom: 70px;
  }
}

.section-forum__group-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-forum__group-title--bg {
  background: url(../img/bg_ttl.svg) no-repeat right bottom -1px;
  background-size: 65px;
}
@media screen and (min-width: 900px) {
  .section-forum__group-title--bg {
    background-size: 80px;
  }
}

.section-forum__group-title-img {
  width: auto;
  height: 20px;
  vertical-align: bottom;
}
@media screen and (min-width: 900px) {
  .section-forum__group-title-img {
    height: 28px;
  }
}

.section-forum__title-comment {
  font-size: 11px;
  font-weight: bold;
  color: #ff7516;
  margin-left: 10px;
}
@media screen and (min-width: 900px) {
  .section-forum__title-comment {
    font-size: 16px;
  }
}

.section-forum__group-lead {
  margin-bottom: 30px;
  text-align: justify;
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .section-forum__group-lead {
    font-size: 20px;
  }
}
.section-forum__group-lead.mb15 {
  margin-bottom: 15px;
}

.section-forum__group-link {
  font-size: 20px;
}
@media screen and (min-width: 900px) {
  .section-forum__group-link {
    font-size: 25px;
  }
}
.section-forum__group-link a {
  color: #00AAFF;
}

.section-forum__group-lists {
  margin-left: 20px;
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .section-forum__group-lists {
    font-size: 20px;
  }
}

.section-forum__group-list {
  margin-bottom: 10px;
  line-height: 1.6;
}

.section-forum__small {
  font-size: 13px;
  padding: 10px 0;
}
.section-forum__small.red {
  color: #FF0000;
}
@media screen and (min-width: 900px) {
  .section-forum__small {
    font-size: 16px;
  }
}

.section-forum__group-period {
  font-size: 16px;
  font-weight: bold;
  color: #3e6eb3;
}
@media screen and (min-width: 900px) {
  .section-forum__group-period {
    font-size: 20px;
  }
}
.section-forum__group-period span {
  font-size: 22px;
}
@media screen and (min-width: 900px) {
  .section-forum__group-period span {
    font-size: 30px;
  }
}

.section-forum__group-box {
  background: #ecf1f7;
  padding: 25px;
}
@media screen and (min-width: 900px) {
  .section-forum__group-box {
    padding: 20px 35px 30px;
  }
}

.section-forum__group-box-tr {
  padding-bottom: 20px;
  border-bottom: 1px solid #3e6eb3;
  margin-bottom: 20px;
}
.section-forum__group-box-tr:last-child {
  padding-bottom: 0;
  border: none;
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .section-forum__group-box-tr {
    display: flex;
    align-items: baseline;
  }
}

.section-forum__group-box-tr--step {
  align-items: center;
}

.section-forum__group-box-th {
  color: #ff7516;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .section-forum__group-box-th {
    width: 150px;
    font-size: 20px;
    margin-bottom: 0;
    margin-right: 40px;
    text-align-last: justify; /* Chrome・Firefox用 */
    text-justify: inter-ideograph; /* IE・Edge用 */
  }
}

@media screen and (min-width: 900px) {
  .section-forum__group-box-th--online {
    width: 200px;
  }
}

@media screen and (min-width: 900px) {
  .section-forum__group-box-th--step {
    width: 110px;
  }
}

.section-forum__group-box-td {
  font-size: 16px;
}
.section-forum__group-box-td .large {
  font-size: 20px;
}
@media screen and (min-width: 900px) {
  .section-forum__group-box-td {
    flex: 1;
    font-size: 20px;
  }
  .section-forum__group-box-td .large {
    font-size: 30px;
  }
}

.cr {
  color: #fff;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .cr {
    font-size: 15px;
  }
}

.box__cpd-point-lead {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .box__cpd-point-lead {
    font-size: 19px;
    margin-bottom: 30px;
  }
}

.exhibitor-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.exhibitor-list__item {
  width: 100%;
  height: 70px;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .exhibitor-list__item {
    width: 48%;
    height: 90px;
    margin-bottom: 3%;
  }
}

.exhibitor-list__link {
  background: #ecf1f7;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 0;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .exhibitor-list__link {
    padding: 10px 20px 10px 0;
  }
}

.exhibitor-list__num {
  position: absolute;
  left: 0;
  top: 0;
}

.exhibitor-list__name {
  flex: 1;
  padding-left: 80px;
  line-height: 1.4;
  color: #3e6eb3;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .exhibitor-list__name {
    font-size: 24px;
    padding-left: 100px;
  }
}
.exhibitor-list__name.small {
  font-size: 13px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .exhibitor-list__name.small {
    font-size: 18px;
  }
}

.exhibitor-list__movie {
  width: 75px;
  margin-left: 15px;
  vertical-align: top;
  text-align: center;
}

.exhibitor-list__movie-icon {
  margin-bottom: 4px;
  width: 40px;
}

.exhibitor-list__movie-text {
  font-size: 13px;
  font-weight: bold;
  color: #ED7700;
}

.shape-homebase {
  width: 60px;
  background: #3e6eb3;
  padding: 21px 14px;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  box-sizing: border-box;
}
@media screen and (min-width: 900px) {
  .shape-homebase {
    width: 80px;
    padding: 28px 20px;
    font-size: 35px;
  }
}

.shape-homebase:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -10px;
  left: 0;
  border-style: solid;
  border-color: #3e6eb3 transparent transparent transparent;
  border-width: 10px 30px 0 30px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .shape-homebase:after {
    border-width: 10px 40px 0 40px;
  }
}

.exhibitor-intro {
  margin-bottom: 50px;
}

.exhibitor-intro__item {
  border: 2px solid #3e6eb3;
  padding: 15px;
  margin-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__item {
    padding: 30px;
  }
}

.exhibitor-intro__head {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #3e6eb3;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__head {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.exhibitor-intro__logo {
  width: 120px;
  padding: 20px 20px 20px 0;
  border-right: 1px solid #3e6eb3;
  margin-right: 20px;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__logo {
    width: 225px;
    padding: 20px 40px 20px 0;
    margin-right: 20px;
  }
}

.exhibitor-intro__name {
  flex: 1;
  font-weight: bold;
  line-height: 1.4;
  color: #3e6eb3;
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__name {
    font-size: 35px;
  }
}
.exhibitor-intro__name .small {
  font-size: 14px;
  line-height: 1.4;
  display: block;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__name .small {
    font-size: 25px;
  }
}

.exhibitor-intro__texts {
  line-height: 1.8;
  word-break: break-all;
  margin-bottom: 40px;
}

.exhibitor-intro__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #3e6eb3;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__title {
    font-size: 25px;
  }
}

.exhibitor-intro__title--inq {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  background: #ff7516;
  border-radius: 20px;
  padding: 0 20px;
  margin-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__title--inq {
    font-size: 20px;
  }
}

.exhibitor-intro__text {
  font-size: 16px;
  font-weight: normal;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__text {
    font-size: 20px;
  }
}

.exhibitor-intro__imgs {
  display: flex;
  flex-wrap: wrap;
}

.exhibitor-intro__img-wrap {
  width: 30%;
  border: 2px solid #ff7516;
  box-sizing: border-box;
  margin-right: 5%;
  margin-bottom: 5%;
}
.exhibitor-intro__img-wrap:nth-child(3) {
  margin-right: 0;
}

.exhibitor-intro__img-link {
  display: block;
  position: relative;
}

.exhibitor-intro__icon {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(237, 119, 0, 0.8);
  padding: 6px;
  border-radius: 10px 0 0 0;
  text-align: center;
  width: 30px;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__icon {
    padding: 10px;
    width: 55px;
  }
}

.exhibitor-intro__movie-wrap {
  background: #FEEADC;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__movie-wrap {
    padding: 25px;
    margin-bottom: 40px;
  }
}
.exhibitor-intro__movie-wrap:last-child {
  margin-bottom: 0;
}

.exhibitor-intro__movie-link {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__movie-link {
    width: 55%;
    margin-right: 30px;
    margin-bottom: 0;
  }
}

.exhibitor-intro__movie-modal {
  position: relative;
}
.exhibitor-intro__movie-modal::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.45;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

.modaal-video-wrap {
  margin: auto 0;
}
@media screen and (min-width: 900px) {
  .modaal-video-wrap {
    margin: auto 50px;
  }
}

.exhibitor-intro__movie-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  opacity: 0.9;
  z-index: 100;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__movie-icon {
    width: auto;
  }
}

.exhibitor-intro__movie-texts {
  width: 100%;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__movie-texts {
    width: auto;
    flex: 1;
  }
}

.exhibitor-intro__movie-title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #3e6eb3;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__movie-title {
    font-size: 25px;
  }
}

.exhibitor-intro__movie-text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .exhibitor-intro__movie-text {
    font-size: 20px;
  }
}
.exhibitor-intro__movie-text a {
  word-break: break-all;
}

.exhibitor-embed-youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.exhibitor-embed-youtube iframe {
  width: 100%;
  height: 100%;
}

.box-cpd-point {
  padding: 40px 20px 0;
}
@media screen and (min-width: 900px) {
  .box-cpd-point {
    padding: 60px 0 0;
  }
}
.box-cpd-point .box {
  margin-bottom: 0;
}

.exhibitor-map {
  max-width: 100%;
  height: auto;
}

.program {
  padding-top: 10px;
}

.program__link {
  background: #ecf1f7;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-direction: column;
  color: #333;
}
@media screen and (min-width: 900px) {
  .program__link {
    flex-direction: row;
  }
}

.program-date-time {
  line-height: 1.6;
  font-size: 16px;
  width: 100%;
  color: #3e6eb3;
}
@media screen and (min-width: 900px) {
  .program-date-time {
    width: 190px;
    padding: 30px;
    font-size: 20px;
    display: flex;
    align-items: center;
  }
}
.program-date-time br {
  display: none;
}
@media screen and (min-width: 900px) {
  .program-date-time br {
    display: block;
  }
}

.program-date-time--coloring {
  background: #3e6eb3;
  color: #fff;
  padding: 5px 20px;
}

.program-date-time__bold {
  font-size: 22px;
}
@media screen and (min-width: 900px) {
  .program-date-time__bold {
    font-size: 30px;
  }
}

.program__title {
  font-size: 20px;
  font-weight: bold;
  color: #ff7516;
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .program__title {
    font-size: 30px;
    margin-bottom: 0;
  }
}

.program__sub-title {
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .program__sub-title {
    font-size: 20px;
  }
}

.program__content {
  flex: 1;
  padding: 20px;
}
@media screen and (min-width: 900px) {
  .program__content {
    padding: 30px;
    width: 500px;
    flex: none;
  }
}

.program__sponsoring {
  padding: 0 20px 20px;
  align-self: end;
  font-size: 14px;
  line-height: 1.4;
  text-align: right;
}
@media screen and (min-width: 900px) {
  .program__sponsoring {
    padding: 30px 30px 35px;
    font-size: 20px;
    width: 300px;
  }
}

.program-content {
  margin-bottom: 50px;
}
.program-content .exhibitor-intro__movies {
  text-align: center;
}
.program-content .exhibitor-intro__movie-link {
  display: inline-block;
  margin-right: 0;
  width: 100%;
}
.program-content .exhibitor-intro__movie-icon {
  width: 60px;
}
@media screen and (min-width: 900px) {
  .program-content .exhibitor-intro__movie-icon {
    width: 100px;
  }
}
.program-content .previous-note {
  position: absolute;
  text-align: center;
  bottom: 20px;
  width: 100%;
  color: #3e6eb3;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .program-content .previous-note {
    bottom: 130px;
    font-size: 35px;
  }
}

.program-content__item {
  border: 2px solid #3e6eb3;
  padding: 15px;
  margin-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .program-content__item {
    padding: 30px;
  }
}

.program-content__head {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #3e6eb3;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .program-content__head {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.program-content__head .program-date-time {
  padding: 0 0 0 0;
  border-right: 1px solid #3e6eb3;
  margin-right: 10px;
  width: 120px;
}
@media screen and (min-width: 900px) {
  .program-content__head .program-date-time {
    padding: 0 20px 0 0;
    margin-right: 20px;
    width: 170px;
  }
}
.program-content__head .program-date-time br {
  display: block;
}

.program-content__title {
  padding-bottom: 20px;
  border-bottom: 1px solid #3e6eb3;
  margin-bottom: 20px;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .program-content__title {
    padding-bottom: 30px;
    font-size: 25px;
    margin-bottom: 30px;
  }
}

.btn-link-top__circle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(62, 110, 179, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 900px) {
  .btn-link-top__circle {
    width: 110px;
    height: 110px;
    font-size: 25px;
    line-height: 1.2;
  }
}

.btn-link-top__circle span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .btn-link-top__circle span {
    width: 110px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 102;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (min-width: 900px) {
  #page-top {
    right: 15px;
  }
}

.pagetop-bottom-position {
  bottom: 50px !important;
}
@media screen and (min-width: 900px) {
  .pagetop-bottom-position {
    bottom: 15px !important;
  }
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.btn-link-top.DownMove {
  bottom: -20px !important;
}

/* page - exhibitor
---------------------------------------------*/
.exhibitor .topview__logo-img {
  width: 250px;
}
@media screen and (min-width: 900px) {
  .exhibitor .topview__logo-img {
    width: 450px;
  }
}

.vendor .topview__logo-img {
  width: 300px;
}
@media screen and (min-width: 900px) {
  .vendor .topview__logo-img {
    width: 750px;
  }
}

.request .topview__logo-img {
  width: 280px;
}
@media screen and (min-width: 900px) {
  .request .topview__logo-img {
    width: 730px;
  }
}
.request .topview__title {
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .request .topview__title {
    margin-bottom: 30px;
  }
}

/* object/utility
---------------------------------------------*/
.mg-b-30 {
  margin-bottom: 30px;
}

.mg-b-40 {
  margin-bottom: 40px;
}

.mg-b-150 {
  margin-bottom: 150px;
}

@media (min-width: 900px) {
  .sp-visible {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .pc-visible {
    display: none !important;
  }
}
.disabled {
  pointer-events: none;
  color: #9e9e9e;
}

.large {
  font-size: 21px;
}
@media screen and (min-width: 900px) {
  .large {
    font-size: 35px;
  }
}

.strong {
  font-weight: bold;
}

/* ---------------------------
終了対応
-----------------------------*/
.done .box__title {
  background-color: #bbb;
}
.done .box__unit-item-title {
  border-color: #bbb;
  color: #bbb;
}
.done .box__free {
  background-color: #bbb;
}
.done .forum-vertical-btn {
  display: none;
}
.done .exhibitor-list__movie,
.done .exhibitor-intro__movie-wrap {
  display: none;
}
.done .exhibitor-intro__movies {
  display: none;
}

.forum-memo {
  font-size: 11px;
  line-height: 1.4;
  margin-left: 10px;
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .forum-memo br {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .forum-memo {
    font-size: 14px;
    margin-left: 20px;
    margin-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */