@charset "UTF-8";

/* ======= CONFERENCE ============================================ */

/* merit リスト */
#conference .merit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  counter-reset: list-num;
}

#conference .merit li {
  display: block;
  width: calc((100% - 30px) / 4);
  border: 1px solid var(--conference);
  font-weight: 700;
  margin-bottom: 0.5em;
  padding: 40px 10px 10px 10px;
  position: relative;
}

#conference .l_container .container .merit li:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  counter-increment: list-num;
  content: counter(list-num);
  background: var(--conference);
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  height: 30px;
  line-height: 30px;
  border-radius: 0;
  font-size: 20px;
}

/* results リスト */
.c_section_block .flex_unit.results {
  gap: 0;
}

#conference .flex_unit.results {
  display: flex !important;
  align-items: stretch;
}

/* #conference .flex_unit.results > li {
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

#conference .results_wrap .results_item {
  width: 40%;
  color: #fff;
  background: var(--conference);
  border: 1px solid var(--conference);
  font-size: 35px;
  font-weight: 700;
  padding: 10px 10px 10px;
  text-align: center;
  /* margin: 0 auto 0.5em; */
}

#conference .results_wrap li p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

#conference .results_wrap span {
  font-size: 14px;
}

#conference .results_wrap li span.ttl {
  /* display: block; */
  font-size: 16px;
}

#conference .results_wrap .advantages {
  color: #fff;
  background: #e5308b;
  border: 1px solid #e5308b;
  width: 60%;
  font-size: 35px;
  font-weight: 700;
  padding: 22px;
  text-align: center;
  /* margin: 0 auto 0.5em; */
}

/* results_wrap 横並び・中央寄せ */
#conference .results_wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

#conference .results_wrap h5 {
  margin: 0;
  white-space: nowrap;
}


/* qualifications */
#conference .l_container .container .qualifications {
  margin-top: 2em;
  border: 1px solid var(--conference);
  align-items: stretch;
  justify-content: flex-start;
  padding: 10px;
}

#conference .l_container .container .qualifications h4 {
  background-color: var(--conference);
  margin-top: -10px;
  margin-bottom: -10px;
  margin-left: -10px;
  margin-right: 0.5em;
  line-height: 2.2;
  white-space: nowrap;
}

/* dl_plan_img テキストと画像を50%ずつ */
#conference .dl_plan_img dt,
#conference .dl_plan_img dd {
  width: 50%;
}

/* planimg02 画像の高さ制限（PC用）- 下から見切れる */
#conference .dl_plan_img .planimg img[src*="planimg02"] {
  max-height: 250px;
  overflow: hidden;
  object-fit: cover;
  object-position: top;
}

/* 見出しスタイル */
#conference .l_container .container h3::after {
  background-color: var(--conference);
}

#conference .l_container .container h4 {
  display: inline-block;
  color: #ffffff;
  padding: 2px 10px;
  background-color: var(--conference);
}

#conference .l_container .container h5 {
  position: relative;
}

/* 
#conference .l_container .container h5::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0;
  background-color: var(--conference);
  width: 16px;
  height: 16px;
} */

/* #conference .l_container .container .unc_list li a {
  width: 100%;
  color: var(--conference);
  border-color: var(--conference);
} */

#conference .l_container .container .unc_list li a:hover {
  color: #fff;
  background-color: var(--conference);
}

#conference .l_container .container .number_list li:before {
  background-color: var(--conference);
}

/* テーブルスタイル */
#conference .container table {
  width: 100%;
  border-collapse: collapse;
}

#conference .container table + table {
  margin-top: 5px;
}

#conference .container table thead th {
  white-space: nowrap;
  text-align: center;
  background-color: var(--conference);
  color: #ffffff;
  vertical-align: middle;
  line-height: 1.2;
  width: 20rem;
}

.scrollbox table thead td {
  white-space: nowrap;
}

#conference .container table th {
  padding: 1em 0.5em;
  white-space: nowrap;
  text-align: left;
}

/* コンファレンス申込方法のテーブルth */
#conference #guide04 table th {
  background-color: var(--conference);
  color: #fff;
}

#conference .container table td {
  padding: 1em 0.5em;
}

#conference .container table td.close {
  color: #000;
  background-color: rgba(0, 0, 0, 0.15);
  position: relative;
  text-decoration: line-through;
}

#conference .container table td.term {
  position: relative;
}

#conference .container table td.close::after {
  content: "ご案内終了";
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0%;
  left: 50%;
  top: auto;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
  line-height: 1.3;
  color: var(--conference);
  font-weight: 700;
  text-align: center;
}

#conference .container table td.term::after {
  content: "10/16のみ";
  display: block;
  position: absolute;
  width: 100%;
  bottom: 2%;
  left: 50%;
  top: auto;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
  line-height: 1;
  color: var(--conference);
  font-weight: 700;
  text-align: center;
}

#conference.en .container table td.close::after {
  content: "Not Selectable";
  font-size: 15px;
}

#conference .container table thead tr th:last-child,
#conference .container table tr td:last-child {
  min-width: 150px;
}

#conference .container table .nowrap {
  white-space: nowrap;
}

#conference .container table .v_align_m {
  vertical-align: middle;
}

#conference .container table.tbnol tr > td:nth-of-type(3),
#conference .container table.tbnol tr > td:nth-of-type(4) {
  text-align: right;
}

#conference .container table td.open {
  background: #ffe9dd9e;
  color: #ed5200;
}

#conference .container table td.info_end {
  position: relative;
  background: #e2e2e2;
  color: #5e5e5e;
}

/* .c_section_block内のテーブルセルの表示を修正 */
#conference .c_section_block table th,
#conference .c_section_block table td {
  display: table-cell;
  white-space: nowrap;
  vertical-align: middle;
}

/* dl スタイル */
#conference .container dl dt h4 {
  display: inline-block;
  color: #fff;
  margin-top: 0px;
  padding-left: 1em;
  padding-right: 1em;
  background-color: #eac21d;
}

#conference .container ul li h5 {
  margin-left: 0em;
}

/* img_hall */
#conference .container .img_hall .item {
  width: 33.33333%;
  margin-top: 10px;
}

#conference .container .img_hall .item figcaption {
  text-align: center;
  font-size: 10px;
  background-color: #eac21d;
  padding: 5px;
}

#conference .container .img_hall .item:nth-child(2) figcaption {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}

/* support01_list */
#conference .container .support01_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  position: relative;
}

#conference .container .support01_list::after {
  content: "";
  display: block;
  width: 48%;
}

#conference .container .support01_list li {
  padding: 20px;
  margin-bottom: 2em;
  border-width: 1px;
  border-style: solid;
  border-color: #eac21d;
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#conference .container .support01_list .c_btn {
  margin-top: auto;
}

#conference .container .support01_list dl {
  padding-bottom: 10px;
}

#conference .container .support01_list dt {
  font-size: 1.2rem;
  font-weight: 700;
}

#conference .container .support01_list .spimg {
  max-height: 130px;
  overflow: hidden;
}

#conference .container .support01_list .text {
  position: relative;
  padding: 0.5em 0 0 1.5em;
}

#conference .container .support01_list .text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.8em;
  left: 0;
  background-color: #eac21d;
  border-radius: 50px;
  width: 16px;
  height: 16px;
}

/* コンファレンス会場空き状況 */
#conference .container .availability_table th:first-child {
  width: 10rem;
  text-align: center;
}

h3#ac04 .sup_txt {
  font-size: 1.3rem;
}

#conference .container .availability_table table td,
#conference .container .availability_table table.tbnol tr > td:nth-of-type(3),
#conference .container .availability_table table.tbnol tr > td:nth-of-type(4) {
  text-align: center;
}

/* tb_style */
#conference .tb_style {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #c7c7c7;
}

#conference .tb_style dt,
#conference .tb_style dd {
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  border-bottom: 1px solid #c7c7c7;
  border-right: 1px solid #c7c7c7;
}

#conference .tb_style dt {
  width: 11em;
  font-weight: 700;
  background-color: var(--conference);
  color: #fff;
}

#conference .tb_style dd {
  width: calc(100% - 11em);
}

/* 申込書のボタン 左よせ */
#conference .tb_style .c_btn {
  margin-left: 0;
}

/* 「横スクロールでご覧ください」をPC時は非表示 */
#conference .scroll_txt {
  display: none;
}

/* 黄色マーカーcss */
#conference .marker_yl {
  background: linear-gradient(transparent 0%, #f6ff5f 0%);
}

/* 申込方法 期間 リストマーク追加 */
#conference .list_style_hyphen li:before {
  content: " - ";
  /* margin-left: 1rem; */
}

/* flex_unit figure幅調整 */
#conference .c_section_block .flex_unit figure {
  width: 90%;
  margin-left: auto;
}

#conference .c_section_block .flex_unit {
  align-items: flex-start;
}

/* テーブルスクロール（通常時は無効） */
#conference .scrollbox {
  overflow-x: visible;
}

/* PC/タブレット・スマホ表示切り替え */
#conference .pc_only {
  display: block;
}

#conference .sp_only {
  display: none;
}

/* 480px以下でbrを非表示 */
#conference .br_pc_only {
  display: block;
}


/* ======= メディアクエリ（大→小の順） ============================================ */


/* 1184px以下 */
@media screen and (max-width: 1184px) {
  #conference .scroll_txt.pc_cont {
    display: block;
  }
}

/* 1050px以下 */
@media screen and (max-width: 1050px) {
  #conference .scrollbox {
    overflow-x: auto;
  }

  #conference .pc_only {
    display: none;
  }

  #conference .sp_only {
    display: block;
  }
}

/* 1020px以下 */
@media screen and (max-width: 1020px) {
  .c_section_block .flex_unit {
    display: flex;
  }

  #conference .c_section_block .flex_unit figure {
    margin-top: 0;
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  #conference .flex_unit.results {
    flex-direction: column;
  }

  #conference .flex_unit.results > li {
    width: 100%;
  }
}

/* 948px以下 */
@media screen and (max-width: 948px) {
  #conference .scroll_txt.tab_cont {
    display: block;
  }
}

/* 850px以下 */
@media screen and (max-width: 850px) {
  #conference .dl_plan_img dt {
    width: 60%;
  }

  #conference .dl_plan_img dd {
    width: 40%;
  }
  #conference .results_wrap li {
    width: 100%
  }

  #conference .merit li {
    width: calc((100% - 30px) / 2);
  }
}

/* 640px以下 */
@media screen and (max-width: 640px) {
  #conference .dl_plan_img dt {
    width: 100%;
  }

  #conference .dl_plan_img dd {
    width: 100%;
  }

  #conference .l_container .container .qualifications h4 {
    width: 100%;
    height: 100%;
    text-align: center;
    margin-right: 0em;
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 10px;
    line-height: 2;
  }

  #conference .container .support01_list .text,
  #conference .container .support01_list .spimg {
    float: none;
    width: 100%;
  }

  #conference .container .support01_list .spimg {
    margin-top: 10px;
  }

  #conference .tb_style dt {
    width: 8em;
  }

  #conference .tb_style dd {
    width: calc(100% - 8em);
  }

  #conference .c_section_block .flex_unit {
    display: block;
  }
/* 
  #conference .l_container .container .dl_plan_img .planimg {
    width: 50%;
  } */

  #conference .c_section_block .flex_unit figure {
    margin: 20px auto 0;
  }

  #conference .merit {
    flex-direction: column;
  }

  #conference .merit li {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  #conference .br_pc_only {
    display: none;
  }
}


/* 580px以下 */
@media screen and (max-width: 580px) {
  #conference .container table.period tr > th,
  #conference .container table.period tr > td {
    display: block;
    width: 100%;
  }

  #conference .container table.period tr > th {
    border-right: none;
  }

  #conference .container .support01_list li {
    width: 100%;
  }

  h3#ac04 .sup_txt {
    display: block;
  }

  #conference .container .availability_table th:first-child {
    width: 8rem;
    font-size: 0.9rem;
  }

  #conference .results_wrap {
    flex-direction: column;
  }
}

/* ======= 英語 ============================================ */
#conference.en .results_wrap .results_item {
  width: 37%;
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
}

#conference.en .results_wrap .advantages {
  width: 63%;
  font-size: 30px;
}

@media screen and (max-width: 1184px) {
  #conference.en .results_wrap .results_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (max-width: 1000px) {
  #conference.en .results_wrap .results_item {
    width: 100%;
    min-height: 0;
    display: block;
  }

  #conference.en .results_wrap .advantages {
    width: 100%;
    max-height: none;
  }
}