@charset "UTF-8";

:root {
  --step01: #7bc4d2;
  --step02: #53aed1;
  --step03: #2a99cf;
  --step04: #0283ce;
  --step04_sub: #e3f3fd;
  --step05: #045bb0;
  --step06: #2b4b8b;
  --step07: #0e1053;
}


/* ======= 出展申込方法と出展申込フローページのみに上書きしたいスタイル ==================== */

.page_exb_request .indentbefore,
.page_exb_request .en_indentbefore {
  width: 100%;
  font-size: .875rem;
}

.page_exb_request main .exhibitor-style {
    border:0;
}
.page_exb_request main .border_box {
    border: 1px solid #454545;
}

.page_exb_request main .disc_list li {
  width: 43%;
  float: left;
  margin-right: 7%;
}

@media screen and (max-width: 480px) {
  .page_exb_request.flow .l-2column-contents__main {
    padding: 0;
  }

  .page_exb_request .c-button--arrow::after {
    right: 10px;
    font-size: 12px;
  }
  
  .page_exb_request .c-button--arrow {
    padding: 15px 20px 15px 10px;
  }
}


/* ======= 出展申込フロー ==================== */
.app--flow {
  padding-bottom: 10px;
}

.att {
  color: #b30828;
  font-weight: 700;
}

.att a {
  color: #b30828;
}

.font-bold .atttxt {
  color: #b30828;
  text-decoration: underline;
  font-size: 125%;
}
.sec--app--att {
  color: #fff;
  padding: 1.5em;
  background-color: var(--ceatecblue);
}
.sec--app--att p{
  font-weight: 700;
}
.sec--app--att .start--day{
  font-size: 165%;
}

.app--flow .item {
  position: relative;
  margin-bottom: 30px;
  border-radius: 0 0 7px 7px;
  border: 2px solid #efefef;
  border-top: none;
  text-align: center;
  padding: 15px;
}

.app--flow .item.normal {
  border-radius: 7px;
  border-top: 2px solid #efefef;
}

.app--flow .item.normal.step03 {
  border-top-color: var(--step03);
}

.app--flow .item.normal.step04 {
  border-top-color: var(--step04);
}

.app--flow .item.normal.step05 {
  border-top-color: var(--step05);
}

.app--flow .item .flex_unit {
  justify-content: space-around;
}

.app--flow .item .day {
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  border-radius: 10px;
  line-height: 100%;
}

.en .app--flow .item .day {
  font-size: 22px;
}

.en .app--flow .item .day .num {
  font-size: 28px;
  font-weight: bold;
}

.app--flow .item .day.day--box {
  font-size: 32px;
  padding: 7px 10px 5px;
}

.en .app--flow .item .day.day--box {
  font-size: 22px;
  padding: 10px 20px;
}

.app--flow .step_ttl {
  padding: 10px;
  background-color: var(--step01);
  border-radius: 7px 7px 0 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.app--flow .step_ttl.step02 {
  background-color: var(--step02);
}

.app--flow .step_ttl.step06 {
  background-color: var(--step06);
}

.app--flow .item .item_ttl {
  font-size: 20px;
  font-weight: 700;
}

.app--flow .item::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 100px 0 100px;
  border-color: #efefef transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 480px) {
  .app--flow {
    padding-bottom: unset;
  }

  .app--flow .item {
    padding: 10px;
  }

  .app--flow .item .day {
    font-size: 28px;
  }

  .app--flow .item .day.day--box {
    font-size: 24px;
  }

  .en .app--flow .item .day.day--box {
    font-size: 14px;
  }

  .app--flow .item .item_ttl {
    font-size: 1rem;
  }

  .app--flow .item.step02 .item_ttl {
    font-size: 1rem;
  }

  .en .app--flow .item .day {
    font-size: 18px;
  }

  .en .app--flow .item .day .num {
    font-size: 22px;
  }
}

@keyframes stepnumUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------ step01 ------ */
.app--flow .step01 {
  animation-delay: 0.3s;
  border-color: var(--step01);
}

.app--flow .step01::after {
  border-color: var(--step01) transparent transparent transparent;
}

.app--flow .step01 .day {
  color: var(--step01);
}

.app--flow .step01 .day.day--box {
  background-color: var(--step01);
  color: #fff;
}

/* ------ step02 ------ */
.app--flow .step02 {
  animation-delay: 0.6s;
  border-color: var(--step02);
}

.app--flow .step02::after {
  border-color: var(--step02) transparent transparent transparent;
}

.app--flow .item.step02 .item_ttl {
  font-size: 16px;
}

.app--flow .step02 .day {
  color: var(--step02);
}

.app--flow .step02 ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.en .app--flow .step02 ul li {
  margin-bottom: 10px;
}

.en .app--flow .step02 ul li:last-of-type {
  margin-bottom: unset;
}

@media screen and (max-width: 480px) {
  .en .app--flow .step02 ul li {
    flex-direction: column;
  }
}

/* ------ step03 ------ */
.app--flow .step03 {
  animation-delay: 0.9s;
  border-color: var(--step03);
}

.app--flow .step03::after {
  border-color: var(--step03) transparent transparent transparent;
}

.app--flow .step03 a {
  color: var(--step03);
}

.app--flow .item.step03 {
  padding: unset;
}

.app--flow .item.step03 .flex_item {
  flex: 1;
  margin-bottom: unset;
  padding: 0 0 15px;
  text-align: left;
}

.app--flow .item.step03 .flex_item.left {
  border-right: 2px solid var(--step03);
}

.app--flow .item.step03 .item_ttl {
  display: grid;
  place-items: center;
  height: 50px;
  background-color: var(--step03);
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.app--flow .item.step03 .right .item_ttl {
  border-left: 2px solid #fff;
}

.app--flow .step03 .item_txt_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 95%;
  padding: 10px 15px 30px;
}

.app--flow .step03 .c-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  height: 25%;
  background-color: var(--step03);
  border-color: var(--step03);
  color: #fff;
  font-size: 18px;
}

.en .app--flow .step03 .c-button {
  height: 18%;
}

@media screen and (max-width: 850px) {
  .app--flow .step03 .item_txt_wrap {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .app--flow .step03 .item_txt_wrap {
    padding: 10px 10px 30px;
  }

  .app--flow .item.step03 .item_ttl {
    font-size: 16px
  }

  .en .app--flow .item.step03 .item_ttl {
    font-size: 14px;
  }

  .app--flow .step03 .c-button {
    font-size: .875rem;
  }

  .en .app--flow .step03 .c-button {
    height: 14%;
  }
}

/* ------ step04 ------ */
.app--flow .step04 {
  animation-delay: 1.2s;
  border-color: var(--step04);
  background-color: var(--step04_sub);
  color: var(--step04);
}

.app--flow .step04::after {
  border-color: var(--step04) transparent transparent transparent;
}

/* ------ step05 ------ */
.app--flow .step05 {
  animation-delay: 1.5s;
  border-color: var(--step05);
}

.app--flow .step05::after {
  border-color: var(--step05) transparent transparent transparent;
}

/* ------ step06 ------ */
.app--flow .step06 {
  animation-delay: 1.8s;
  border-color: var(--step06);
}

.app--flow .step06 .day {
  color: var(--step06);
}

.app--flow .step06::after {
  left: 75%;
  border-width: 50px 160px 0 160px;
  border-color: var(--step06) transparent transparent transparent;
}

.en .app--flow .step06::after {
  border-width: 60px 160px 0 160px;
}

.app--flow .item.step06::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 160px 0 160px;
  border-color: var(--step06) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 25%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.en .app--flow .step06::before {
  border-width: 60px 160px 0 160px;
}

.app--flow .step06 ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.en .app--flow .step06 ul li {
  margin-bottom: 10px;
}

.en .app--flow .step06 ul li:last-of-type {
  margin-bottom: unset;
}

.app--flow .step_ttl.step06 {
  font-size: 18px;
}

.app--flow .item.step06 .item_ttl {
  font-size: 16px;
}

.app--flow .triangle-txt {
  position: absolute;
  top: calc(100% - -2px);
  z-index: 2;
  width: 200px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  transform: translateX(-50%);
  text-align: center;
  line-height: 30px;
  pointer-events: none;
}

.en .app--flow .triangle-txt {
  top: calc(100% - -4px);
  font-size: 1rem;
  line-height: 110%;
}

.app--flow .triangle-txt.second {
  left: 75%;
}

.app--flow .triangle-txt.first {
  left: 25%;
}

@media screen and (max-width: 850px) {
  .app--flow .item.step06::before,
  .app--flow .step06::after {
    border-width: 50px 92px 0 92px;
  }

  .app--flow .triangle-txt {
    font-size: .875rem;
  }

  .en .app--flow .step06::before,
  .en .app--flow .step06::after {
    border-width: 60px 86px 0 86px;
  }

  .en .app--flow .triangle-txt {
    font-size: .875rem;
  }
}

@media screen and (max-width: 480px) {
  .en .app--flow .step06 ul li {
    flex-direction: column;
  }
}

/* ------ step07 ------ */
.app--flow .item.step07 {
  animation-delay: 2.1s;
  margin-top: 50px;
  padding: unset;
  border: none;
}

.en .app--flow .item.step07 {
  margin-top: 60px;
}

.app--flow .step07 .day.day--box {
  background-color: var(--step07);
  color: #fff;
}

.app--flow .step07::after {
  display: none;
}

.app--flow .step07 .flex_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  padding: 15px;
  border: 2px solid var(--step07);
  border-radius: 7px;
}

.app--flow .step07 .c-button {
  width: 60%;
  margin: 0 auto;
  background-color: var(--step07);
  border-color: var(--step07);
  font-size: 1rem;
}

.en .app--flow .step07 .c-button {
  width: 65%;
}

@media screen and (max-width: 480px) {
  .app--flow .step07 .c-button {
    width: 70%;
    font-size: .875rem;
  }

  .app--flow .step07 .flex_item {
    padding: 10px;
  }
}
