@charset "UTF-8";
/* =================================================================
 base
================================================================= */
*::before, *::after {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}
body.fixed {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
iframe {
  max-width: 100%;
  height: auto;
}
main {
  flex: 1;
}
/* 共通クラス
-------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.sp {
    display: block;
  }
}
/* =================================================================
 header
================================================================= */
.header {
  background: #FFF;
  height: auto;
  box-shadow: none;
  position: fixed;
}
.header .header_inner {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 17px 50px;
  width: 100%;
  max-width: calc(1300px + 100px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .header .header_inner {
    padding: 17px 20px;
  }
}
.header .header_inner h1 {
  max-width: 223px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header .header_inner h1 img {
    width: auto;
    height: 50px;
  }
}
.header .header_inner .gnav {
  height: auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .header .header_inner .gnav {
    width: 100%;
    background: rgba(7, 15, 38, 0.9);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: -235px;
    left: 0;
    transition: top 0.5s, visibility 0.4s, opacity 0.4s;
  }
}
.header .header_inner .gnav.active {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.header .header_inner .gnav ul {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 30px;
  height: auto;
}
@media print, screen and (max-width: 1000px) {
  .header .header_inner .gnav ul {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header .header_inner .gnav ul {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px 0 30px;
  }
}
.header .header_inner .gnav ul li {
  margin: 0;
  height: auto;
}
.header .header_inner .gnav ul li.current a::after {
  opacity: 1;
}
.header .header_inner .gnav ul a {
  display: block;
  padding: 10px;
  width: fit-content;
  color: #070F26;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header .header_inner .gnav ul a {
    color: #FFF;
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .header .header_inner .gnav ul a:hover::after {
    opacity: 1;
  }
}
.header .header_inner .gnav ul a:after {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 4px;
  background: #00DFED;
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translate(-50%, 0);
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .header .header_inner .gnav ul a:after {
    height: 3px;
    bottom: -2px;
  }
}
.header .header_inner .menu_button {
  display: none;
}
@media screen and (max-width: 767px) {
  .header .header_inner .menu_button {
    display: block;
    width: 32px;
    height: 12px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    position: fixed;
    top: 29px;
    right: 20px;
    z-index: 899;
  }
}
.header .header_inner .menu_button::before, .header .header_inner .menu_button::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #070F26;
  transition: color 0.2s, transform 0.2s;
  position: absolute;
  left: 0;
}
.header .header_inner .menu_button::before {
  top: 1px;
}
.header .header_inner .menu_button::after {
  bottom: 1px;
}
.header .header_inner .menu_button.active::before, .header .header_inner .menu_button.active::after {
  background-color: #FFF;
}
.header .header_inner .menu_button.active::before {
  transform: translateY(4px) rotate(-15deg);
}
.header .header_inner .menu_button.active::after {
  transform: translateY(-4px) rotate(15deg);
}
/* =================================================================
 footer
================================================================= */
.footer {
  display: block;
  margin: 0;
  padding: 0;
  background: #070F26;
  font-size: 15px;
  line-height: calc(24 / 15);
}
@media screen and (max-width: 767px) {
  .footer {
    font-size: 14px;
  }
}
.footer .footer-top {
  background: #FFF;
  color: #070F26;
  position: relative;
}
.footer .footer-top .page-top {
  position: absolute;
  top: -90px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .footer .footer-top .page-top {
    top: -70px;
  }
}
.footer .footer-top .page-top a {
  display: flex;
  align-items: flex-end;
  flex-flow: row nowrap;
  justify-content: flex-end;
  width: 0;
  height: 0;
  border-top: 45px solid transparent;
  border-left: 45px solid transparent;
  border-right: 45px solid #0072BC;
  border-bottom: 45px solid #0072BC;
  color: #FFF;
  transition: opacity 0.2s;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer .footer-top .page-top a:hover {
    opacity: 0.9;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-top .page-top a {
    border-width: 35px;
  }
}
.footer .footer-top .page-top a span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1428571429;
  letter-spacing: 0;
  font-family: "Roboto", sans-serif;
  position: absolute;
  right: -31px;
  bottom: -39px;
}
@media screen and (max-width: 767px) {
  .footer .footer-top .page-top a span {
    right: -29px;
    bottom: -32px;
    font-size: 13px;
  }
}
.footer .footer-top .page-top a span::before {
  content: url(../media/images/expoline/img/arrow_top.svg);
  display: block;
  position: absolute;
  top: -20px;
  right: 7px;
}
@media screen and (max-width: 767px) {
  .footer .footer-top .page-top a span::before {
    top: -16px;
    right: 6px;
  }
}
.footer .footer-top .contact {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 40px;
  margin: 0 auto;
  padding: 50px;
  max-width: calc(1200px + 100px);
}
@media screen and (max-width: 767px) {
  .footer .footer-top .contact {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 30px 20px;
    max-width: 100%;
  }
}
.footer .footer-top .contact h2 {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: calc(48 / 24);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer .footer-top .contact h2 {
    font-size: 22px;
  }
}
.footer .footer-top .contact ul {
  display: flex;
  align-items: stretch;
  flex-flow: row nowrap;
  justify-content: flex-start;
  border-left: solid 1px #070F26;
}
@media screen and (max-width: 767px) {
  .footer .footer-top .contact ul {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
    border: 0;
  }
}
.footer .footer-top .contact ul li {
  margin: 0;
  padding: 0 40px;
  border-right: solid 1px #070F26;
}
@media screen and (max-width: 767px) {
  .footer .footer-top .contact ul li {
    padding: 0;
    width: 100%;
    border: 0;
  }
  .footer .footer-top .contact ul li:first-of-type {
    padding: 0 0 30px;
    border-bottom: solid 1px #070F26;
  }
}
.footer .footer-top .contact .contact_button {
  display: block;
  margin: 11px auto 0;
  padding: 4px 0 3px;
  width: 100%;
  max-width: 200px;
  border: solid 1px #070F26;
  color: #070F26;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: calc(26 / 14);
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 2px;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .footer .footer-top .contact .contact_button:hover {
    background: #070F26;
    color: #FFF;
    text-decoration: none;
  }
}
.footer .footer-top .contact .contact_button::after {
  content: none;
}
.footer .footer-top .contact .mail {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 10px;
  margin: 10px auto 0;
  width: fit-content;
  color: #070F26;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: calc(26 / 15);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer .footer-top .contact .mail {
    margin: 5px auto 0;
  }
}
.footer .footer-top .contact .mail::before {
  content: "";
  display: block;
  width: 17px;
  height: 12px;
  background: url(../media/images/expoline/img/icon_mail.svg) no-repeat;
  background-size: 100%;
  position: relative;
  top: 0.15em;
}
.footer .footer-bottom {
  margin: 0 auto;
  padding: 32px 50px 20px;
  max-width: calc(1300px + 100px);
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom {
    padding: 20px;
  }
}
.footer .footer-bottom .logo-wrap {
  display: flex;
  align-items: flex-end;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .logo-wrap {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 15px;
  }
}
.footer .footer-bottom .logo-wrap .logo img {
  display: block;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .logo-wrap .logo img {
    width: auto;
    height: 30px;
  }
}
.footer .footer-bottom .logo-wrap .policy {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 15px;
  color: #FFF;
  text-decoration: none;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .footer .footer-bottom .logo-wrap .policy:hover {
    text-decoration: underline;
  }
}
.footer .footer-bottom .logo-wrap .policy::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../media/images/expoline/img/icon_play.svg) no-repeat;
  background-size: 100%;
}
.footer .footer-bottom .copyright {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 0 20px;
  margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .copyright {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
  }
}
.footer .footer-bottom .copyright .author {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: calc(26 / 13);
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .copyright .author {
    font-size: 12px;
    line-height: calc(24 / 12);
  }
}
.footer .footer-bottom .copyright .notes {
  font-size: 12px;
  line-height: calc(19 / 12);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .copyright .notes {
    font-size: 11px;
    line-height: calc(17 / 11);
  }
}
/* =================================================================
 main
================================================================= */
main {
  margin: 0;
  padding: 0 0 100px;
  background: #005B96;
}
main .phase-outer .phase {
  padding: 30px 50px 0;
  width: 100%;
  max-width: 1300px;
}
@media screen and (max-width: 767px) {
  main .phase-outer .phase {
    padding: 30px 20px 0;
    max-width: 100%;
  }
}
main .phase-outer .phase li {
  border: solid 1px #FFF;
  background: none;
  color: #FFF;
}
main .phase-outer .phase li:not(:last-child):after {
  content: url(../media/images/expoline/img/icon_phase_arrow.svg);
}
main .phase-outer .phase li.current {
  background: #FFF;
  color: #0072BC;
  font-weight: 700;
}
main .description-wrap {
  margin: 50px 0 0;
}
@media screen and (max-width: 767px) {
  main .description-wrap {
    margin: 30px 0 0;
  }
}
main .description-wrap p {
  color: #FFF;
}
main .description-wrap p a {
  color: #fff;
  border-color: #fff;
}
main .description-wrap + section h2 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  main .description-wrap + section h2 {
    margin-top: 35px;
  }
}
main section {
  padding: 0 50px;
  width: 100%;
  max-width: calc(1200px + 100px);
}
@media screen and (max-width: 767px) {
  main section {
    padding: 0 20px;
    max-width: 100%;
  }
}
main section.no-padd {
  padding: 0;
}
main section a {
  color: #0072BC;
  border-bottom: 1px solid #0072BC;
  transition: border-bottom 0.1s;
}
@media screen and (min-width: 768px) {
  main section a:hover {
    border-bottom: 1px solid transparent;
  }
}
main section form {
  margin: 0;
}
main section form > section .inner-section:first-of-type {
  margin-top: 0;
}
main section form .required {
  position: relative;
  top: 2px;
}
main section form p.example span.point {
  background: #070F26;
}
main section form .smp_tmpl h3.form-heading {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl h3.form-heading {
    font-size: 17px;
  }
}
main section form .smp_tmpl h4.date {
  margin: 0 0 20px;
  padding: 0 0 8px;
  font-size: 16px;
  line-height: calc(32 / 16);
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 2px solid #B7B7B7;
  position: relative;
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl h4.date {
    margin: 0 0 15px;
    padding: 0 0 5px;
    font-size: 15px;
  }
}
main section form .smp_tmpl h4.date::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #0072BC;
  position: absolute;
  left: 0;
  bottom: -2px;
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl dl.first-input .first-input-box {
    display: block;
  }
}
main section form .smp_tmpl dl.first-input .first-input-box dt {
  font-size: 15px;
  line-height: calc(30 / 15);
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl dl.first-input .first-input-box dt {
    margin-bottom: 5px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl dl.first-input .first-input-box dd {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl dl.personal-input .personal-input-box {
    display: block;
  }
}
main section form .smp_tmpl dl.personal-input .personal-input-box dt {
  font-size: 15px;
  line-height: calc(24 / 15);
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl dl.personal-input .personal-input-box dt {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl dl.personal-input .personal-input-box dt {
    margin-bottom: 5px;
    width: 100%;
  }
}
main section form .smp_tmpl dl.personal-input .personal-input-box dd {
  font-size: 15px;
  line-height: calc(24 / 15);
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl dl.personal-input .personal-input-box dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl dl.personal-input .personal-input-box dd {
    width: 100%;
  }
}
main section form .smp_tmpl dl.personal-input .personal-input-box dd .select-box {
  width: 100%;
}
main section form .smp_tmpl ol.questionnaire li .questionnaire-box {
  text-align: left;
}
main section form .smp_tmpl ol.questionnaire li .questionnaire-box p {
  font-size: 15px;
  line-height: calc(24 / 15);
}
main section form .smp_tmpl ol.questionnaire li .questionnaire-box p.error {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl ol.questionnaire li .questionnaire-box p {
    font-size: 14px;
  }
}
main section form .smp_tmpl ol.questionnaire li::before {
  padding: 1px 5px 3px;
  background: #070F26;
  line-height: 1;
}
main section form .smp_tmpl .output {
  font-size: 15px;
  line-height: calc(24 / 15);
  flex: 0 1 auto;
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl .output {
    font-size: 14px;
  }
}
main section form .smp_tmpl .output.questionnaire li:before::before {
  line-height: 1;
}
main section form .smp_tmpl .policy {
  font-size: 15px;
  line-height: calc(24 / 15);
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl .policy {
    font-size: 14px;
  }
}
main section form .smp_tmpl .policy h3 {
  margin: 0 0 20px;
  padding: 0 0 8px;
  font-size: 16px;
  line-height: calc(32 / 16);
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 2px solid #B7B7B7;
  position: relative;
}
@media screen and (max-width: 767px) {
  main section form .smp_tmpl .policy h3 {
    margin: 0 0 15px;
    padding: 0 0 5px;
    font-size: 15px;
  }
}
main section form .smp_tmpl .policy h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #0072BC;
  position: absolute;
  left: 0;
  bottom: -2px;
}
main section h2 {
  margin: 70px 0 25px;
  padding: 0 0 0 22px;
  border: 0;
  color: #FFF;
  font-size: 30px;
  line-height: calc(60 / 30);
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  main section h2 {
    margin: 35px 0 15px;
    padding: 0 0 0 14px;
    font-size: 20px;
  }
}
main section h2::before {
  content: "";
  display: block;
  width: 7px;
  height: 50%;
  background: #00DFED;
  position: absolute;
  top: calc(50% + 0.1em);
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  main section h2::before {
    width: 4px;
    top: calc(50% + 0.05em);
  }
}
main section h2::after {
  content: none;
}
main section h2.en {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 0 16px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 37px;
  line-height: calc(59 / 37);
}
@media screen and (max-width: 767px) {
  main section h2.en {
    gap: 0 10px;
    font-size: 25px;
  }
}
main section h2.en .sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: calc(23 / 15);
}
@media screen and (max-width: 767px) {
  main section h2.en .sub {
    font-size: 12px;
  }
}
main section h2.en::before {
  top: calc(50% - 0.02em);
}
main section h2 + .inner-section {
  margin: 0;
}
main section p {
  color: #000;
  font-size: 15px;
  line-height: calc(24 / 15);
  font-weight: 400;
  letter-spacing: 0;
}
main section .smp_tmpl {
  padding: 40px;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  main section .smp_tmpl {
    padding: 20px 18px 25px;
  }
}
main section .smp_tmpl .description {
  font-size: 15px;
  line-height: calc(24 / 15);
}
@media screen and (max-width: 767px) {
  main section .smp_tmpl .description {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  main section .smp_tmpl .description {
    padding: 0;
    text-align: left;
  }
}
main section .smp_tmpl .description:last-child {
  margin: 20px 0 0;
}
main section .smp_tmpl h4.date {
  margin: 0 0 20px;
  padding: 0 0 8px;
  font-size: 16px;
  line-height: calc(32 / 16);
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 2px solid #B7B7B7;
  position: relative;
}
@media screen and (max-width: 767px) {
  main section .smp_tmpl h4.date {
    margin: 0 0 15px;
    padding: 0 0 5px;
    font-size: 15px;
  }
}
main section .smp_tmpl h4.date::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #0072BC;
  position: absolute;
  left: 0;
  bottom: -2px;
}
main section .smp_tmpl .textlink.return {
  margin: 50px auto;
}
main section .smp_tmpl .textlink.return a {
  display: block;
  margin: 0 auto;
  padding: 15px 20px 13px;
  width: 290px;
  max-width: 100%;
  border: solid 1px #070F26;
  background: #070F26;
  color: #FFF;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(26 / 16);
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all 0.2s;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  main section .smp_tmpl .textlink.return a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  main section .smp_tmpl .textlink.return a {
    padding: 6px 15px 4px;
    font-size: 14px;
    line-height: calc(22 / 14);
  }
}
main section .smp_tmpl .textlink.return a::after {
  content: none;
}
main section .smp_tmpl .submit-button:first-child {
  margin: 0;
}
main section .heading-date {
  margin: 0;
  padding: 0;
}
main section .heading-date#day1, main section .heading-date#day2 {
  margin: 0;
  padding: 0;
}
main section .heading-date .day1-title, main section .heading-date .day2-title {
  margin: 70px 0 30px;
}
@media screen and (max-width: 767px) {
  main section .heading-date .day1-title, main section .heading-date .day2-title {
    margin: 40px 0 15px;
  }
}
main section .heading-date .day1-title.fixed, main section .heading-date .day2-title.fixed {
  margin: 0;
  left: 0;
}
main section .heading-date + .inner-section {
  margin: 0;
}
main section .inner-section {
  margin: 80px 0 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  main section .inner-section {
    margin: 40px 0 0;
  }
}
main section .inner-section p {
  text-align: left;
}
main section .inner-section + .smp_tmpl {
  margin: 70px 0 0;
}
@media screen and (max-width: 767px) {
  main section .inner-section + .smp_tmpl {
    margin: 35px 0 0;
  }
}
main section .time-title {
  margin: 0 0 30px;
  padding: 6px 0 9px;
  border: 0;
  background: #070F26;
  color: #FFF;
  font-size: 22px;
  line-height: calc(35.2 / 22);
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  main section .time-title {
    margin: 0 0 15px;
    font-size: 18px;
  }
}
main section .time-title::after {
  content: none;
}
main section .time-title.with-icon {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 8px;
  padding: 5px 0 8px;
  font-size: 23px;
  line-height: calc(36.8 / 23);
}
@media screen and (max-width: 767px) {
  main section .time-title.with-icon {
    font-size: 19px;
  }
}
main section .time-title.with-icon::before {
  content: "";
  display: block;
  width: 0.78em;
  height: 0.78em;
  background: url(../media/images/expoline/img/icon_time.svg) no-repeat;
  background-size: 100%;
  position: relative;
  top: 0.05em;
}
main section .seminar-schedule {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 23px;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule {
    display: flex;
    align-items: stretch;
    flex-flow: column wrap;
    justify-content: flex-start;
    gap: 15px;
  }
}
main section .seminar-schedule li {
  list-style: none;
}
main section .seminar-schedule .seminar-box {
  padding: 0 18px 28px;
  width: 100%;
  background: #FFF;
  display: flex;
  align-items: stretch;
  flex-flow: column;
  justify-content: flex-start;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box {
    padding: 0 18px 25px;
    width: 100%;
  }
}
main section .seminar-schedule .seminar-box .seminar-header {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box .seminar-header {
    gap: 10px;
  }
}
main section .seminar-schedule .seminar-box .seminar-header .seminar-name {
  padding: 5px 18px 4px;
  background: #070F26;
  color: #FFF;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: calc(26 / 14);
  white-space: nowrap;
}
main section .seminar-schedule .seminar-box .seminar-header .seminar-name.purple-col {
  background-color: #7251b4;
}
main section .seminar-schedule .seminar-box .seminar-header .seminar-name.green-col {
  background-color: #068941;
}
main section .seminar-schedule .seminar-box .seminar-header .seminar-name.blue-col {
  background-color: #0072bc;
}
main section .seminar-schedule .seminar-box .seminar-header .time {
  padding: 5px 0 0;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
}
main section .seminar-schedule .seminar-box .seminar-content {
  display: flex;
  align-items: stretch;
  flex-flow: column;
  justify-content: flex-start;
  flex: 1 0 auto;
}
main section .seminar-schedule .seminar-box .seminar-content .seminar-title {
  display: flex;
  align-items: flex-start;
  flex-flow: column wrap;
  justify-content: flex-start;
  gap: 2px;
  margin: 12px 0 0;
  color: #070F26;
  font-size: 17px;
  line-height: calc(23 / 17);
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box .seminar-content .seminar-title {
    font-size: 16px;
  }
}
main section .seminar-schedule .seminar-box .seminar-content .seminar-title .sub {
  font-size: 15px;
  line-height: calc(23 / 15);
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box .seminar-content .seminar-title .sub {
    font-size: 14px;
  }
}
main section .seminar-schedule .seminar-box .seminar-content .seminar-name.lunch {
  font-size: 0.8em;
  font-weight: bold;
  text-indent: 1em;
  margin-top: 4px;
}
main section .seminar-schedule .seminar-box .seminar-content .tag-list {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 5px;
  margin: 15px 0 0;
}
main section .seminar-schedule .seminar-box .seminar-content .tag-list .tag {
  padding: 5px 10px 6px;
  background: #E8E8E8;
  color: #070F26;
  font-size: 12px;
  line-height: calc(15 / 12);
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box .seminar-content .tag-list .tag {
    font-size: 11px;
  }
}
main section .seminar-schedule .seminar-box .seminar-content .tag-list .tag::before {
  content: "#";
  padding-right: 3px;
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 13px;
  margin: 22px 0 0;
  flex: 1 0 auto;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box .seminar-content .speaker-list {
    display: flex;
    align-items: stretch;
    flex-flow: column nowrap;
    justify-content: flex-start;
  }
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: calc((100% - 22px) / 2);
  gap: 10px;
}
@media print, screen and (max-width: 1000px) {
  main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker {
    width: 100%;
  }
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .img-box {
  width: calc(45.9% - 5px);
}
@media print, screen and (max-width: 1000px) {
  main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .img-box {
    width: calc(31.66% - 5px);
  }
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .img-box img {
  display: block;
  width: 100%;
  height: auto;
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .text-box {
  width: calc(54.1% - 5px);
}
@media print, screen and (max-width: 1000px) {
  main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .text-box {
    width: calc(68.34% - 5px);
  }
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .text-box .company {
  margin: 0 0 5px;
  font-size: 13px;
  line-height: calc(18 / 13);
  font-weight: 500;
  letter-spacing: 0;
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .text-box .business {
  margin: 0 0 5px;
  color: #777;
  font-size: 13px;
  line-height: calc(18 / 13);
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .text-box .name {
  font-size: 16px;
  line-height: calc(22 / 16);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .text-box .name {
    font-size: 15px;
  }
}
main section .seminar-schedule .seminar-box .seminar-content .explanation {
  margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box .seminar-content .explanation {
    font-size: 14px;
  }
}
main section .seminar-schedule .seminar-box .seminar-content .image-list {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  justify-content: center;
  gap: 25px;
  margin: 35px auto 22px;
  max-width: 950px;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box .seminar-content .image-list {
    margin: 25px auto 0;
    display: flex;
    align-items: center;
    flex-flow: column wrap;
    justify-content: flex-start;
    gap: 10px;
  }
}
main section .seminar-schedule .seminar-box .seminar-content .image-list .image {
  width: calc((100% - 50px) / 3);
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box .seminar-content .image-list .image {
    width: 100%;
    max-width: 300px;
  }
}
main section .seminar-schedule .seminar-box .seminar-content .image-list .image img {
  display: block;
  width: 100%;
  height: auto;
}
main section .seminar-schedule .seminar-box .seminar-footer {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 18px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: solid 1px #B7B7B7;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box .seminar-footer {
    gap: 12px;
  }
}
main section .seminar-schedule .seminar-box .seminar-footer .seminar-detail {
  display: block;
  margin: 0 auto;
  padding: 0 15px 0 0;
  width: fit-content;
  border: 0;
  color: #070F26;
  font-size: 15px;
  line-height: calc(26 / 15);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}
@media screen and (min-width: 768px) {
  main section .seminar-schedule .seminar-box .seminar-footer .seminar-detail:hover {
    opacity: 0.8;
  }
}
main section .seminar-schedule .seminar-box .seminar-footer .seminar-detail::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background: url(../media/images/expoline/img/icon_link_arrow.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox] + label {
  display: block;
  padding: 9px;
  width: 170px;
  background: #0072BC;
  color: #FFF;
  font-size: 14px;
  line-height: calc(17 / 14);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  border-radius: 999px;
  transition: all 0.2s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox] + label:hover {
    opacity: 0.8;
  }
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox] + label::before, main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox] + label::after {
  content: none;
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox] + label .text {
  padding: 0 calc(0.95em + 6px) 0 0;
  width: fit-content;
  position: relative;
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox] + label .text::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #FFF;
  border-radius: 3px;
  position: absolute;
  top: calc(50% + 0.05em);
  right: 0;
  transform: translate(0, -50%);
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox]:checked + label .text::before {
  background: #FFF;
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox]:checked + label .text::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-style: solid;
  border-width: 0 0 3px 3px;
  border-color: #BC4328;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translate(0, -50%) rotate(-45deg);
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox]:focus + label::before {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox].full + label {
  background: #2E404D;
  cursor: auto;
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox].full + label .text {
  padding: 0;
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox].full + label .text::before {
  display: none;
}
main section .seminar-schedule .seminar-box .seminar-footer .reserve input[type=checkbox].full_color + label {
  background: #2E404D;
}
main section .seminar-schedule .seminar-box.organizer {
  width: 100%;
  padding: 0 38px 38px;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer {
    padding: 0 18px 25px;
  }
}
main section .seminar-schedule .seminar-box.organizer .seminar-header {
  margin: 0 0 0 -20px;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-header {
    display: flex;
    align-items: flex-start;
    flex-flow: row nowrap;
    justify-content: flex-start;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-header {
    gap: 10px;
  }
}
main section .seminar-schedule .seminar-box.organizer .seminar-content .seminar-title {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 4px 15px;
  margin: 20px 0 0;
  font-size: 19px;
  line-height: calc(23 / 19);
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .seminar-title {
    display: flex;
    align-items: flex-start;
    flex-flow: column wrap;
    justify-content: flex-start;
    gap: 2px;
    margin: 12px 0 0;
    color: #070F26;
    font-size: 17px;
    line-height: calc(23 / 17);
    font-weight: 700;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .seminar-title {
    font-size: 16px;
  }
}
main section .seminar-schedule .seminar-box.organizer .seminar-content .seminar-title .sub {
  font-size: 17px;
  line-height: calc(23 / 17);
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .seminar-title .sub {
    font-size: 15px;
    line-height: calc(23 / 15);
    font-weight: 500;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .seminar-title .sub {
    font-size: 14px;
  }
}
main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list {
  gap: 20px;
  margin: 30px 0 0;
  flex-flow: row wrap;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list {
    display: flex;
    align-items: stretch;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 13px;
    margin: 22px 0 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list {
    display: flex;
    align-items: stretch;
    flex-flow: column nowrap;
    justify-content: flex-start;
  }
}
main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list .speaker {
  align-items: center;
  gap: 10px;
  width: auto;
  height: auto;
  flex: 1 0 40%;
}
@media print, screen and (max-width: 1000px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list .speaker {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list .speaker {
    display: flex;
    align-items: flex-start;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: calc((100% - 22px) / 2);
    gap: 10px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1000px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list .speaker {
    width: 100%;
  }
}
main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list .speaker .img-box {
  /*width: calc(26.3% - 5px);*/
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list .speaker .img-box {
    width: calc(45.9% - 5px);
  }
}
@media screen and (max-width: 767px) and (max-width: 1000px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list .speaker .img-box {
    width: calc(31.66% - 5px);
  }
}
main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list .speaker .text-box {
  width: calc(73.7% - 5px);
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list .speaker .text-box {
    width: calc(54.1% - 5px);
  }
}
@media screen and (max-width: 767px) and (max-width: 1000px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-content .speaker-list .speaker .text-box {
    width: calc(68.34% - 5px);
  }
}
main section .seminar-schedule .seminar-box.organizer .seminar-footer {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  margin: 30px 0 0;
  padding: 30px 0 0;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-footer {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 18px;
    margin: 22px 0 0;
    padding: 18px 0 0;
    border-top: solid 1px #B7B7B7;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-footer {
    gap: 12px;
  }
}
main section .seminar-schedule .seminar-box.organizer .seminar-footer .seminar-detail {
  margin: 0;
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-footer .seminar-detail {
    display: block;
    margin: 0 auto;
    padding: 0 15px 0 0;
    width: fit-content;
    border: 0;
    color: #070F26;
    font-size: 15px;
    line-height: calc(26 / 15);
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-footer .seminar-detail:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-footer .seminar-detail::after {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    background: url(../media/images/expoline/img/icon_link_arrow.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
}
main section .seminar-schedule .seminar-box.organizer .seminar-footer .reserve {
  margin: 0 auto 0 auto;
  transform: translateX(-25%);
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.organizer .seminar-footer .reserve {
    transform: translateX(0);
  }
}
main section .seminar-schedule .seminar-box.default {
  padding: 0 18px 28px;
  width: calc((100% - 46px) / 2);
}
main section .seminar-schedule .seminar-box.multi {
  width: calc((100% - 46px) / 3);
}
@media screen and (max-width: 767px) {
  main section .seminar-schedule .seminar-box.default, main section .seminar-schedule .seminar-box.multi {
    width: 100%;
  }
}
main section .submit-button {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  main section .submit-button {
    display: flex;
    align-items: center;
    flex-flow: column-reverse nowrap;
    justify-content: center;
    gap: 10px;
  }
}
main section .submit-button button {
  margin: 0;
  max-width: 100%;
  border-radius: 2px;
}
main section .submit-button button.back {
  border: solid 1px #070F26;
  background: #070F26;
  color: #FFF;
}
main section .textlink a {
  font-size: 14px;
  line-height: calc(22 / 14);
}
main section .inner-section .skip_reserve {
  width: 100%;
  height: auto;
  text-align: center;
  color: #fff;
  background-color: initial;
  padding: 10px;
  margin: 20px auto;
  font-size: 14px;
  line-height: calc(17 / 14);
  font-weight: 500;
}
form .skip_reserve input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-style: solid;
  border-width: 0 0 3px 3px;
  border-color: #BC4328;
  position: absolute;
  top: 50%;
  left: -14px;
  right: auto;
  transform: translate(0, -50%) rotate(-45deg);
}
/* =================================================================
 modal
================================================================= */
.modal-body {
  max-width: 1000px;
  background: #FFF;
  font-size: 15px;
  line-height: calc(24 / 15);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .modal-body {
    font-size: 14px;
  }
}
.modal-body .modal-header {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 15px;
  padding: 0 35px 23px;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-header {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .modal-body .modal-header {
    padding: 0 18px 15px;
  }
}
.modal-body .modal-header .seminar-name {
  padding: 5px 18px 4px;
  background: #070F26;
  color: #FFF;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: calc(26 / 14);
  white-space: nowrap;
}
.modal-body .modal-header .seminar-name.purple-col {
  background-color: #7251b4;
}
.modal-body .modal-header .seminar-name.green-col {
  background-color: #068941;
}
.modal-body .modal-header .seminar-name.blue-col {
  background-color: #0072bc;
}
.modal-body .modal-header .time {
  padding: 5px 0 0;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.modal-body .modal-content {
  padding: 0 35px;
}
.modal-body .modal-content::-webkit-scrollbar {
  width: 6px;
}
.modal-body .modal-content::-webkit-scrollbar-thumb {
  background: #0072BC;
  border-radius: 999px;
}
.modal-body .modal-content::-webkit-scrollbar-track {
  background: #E8E8E8;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content {
    padding: 0 18px;
  }
}
.modal-body .modal-content .seminar-name.lunch {
  font-size: 0.8em;
  font-weight: bold;
  text-indent: 1em;
  margin-top: 4px;
}
.modal-body .modal-content .seminar-title {
  display: flex;
  align-items: flex-start;
  flex-flow: column wrap;
  justify-content: flex-start;
  gap: 2px;
  margin: 12px 0 0;
  color: #070F26;
  font-size: 17px;
  line-height: calc(23 / 17);
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 4px 10px;
  margin: 0;
  font-size: 23px;
  line-height: calc(28 / 23);
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .seminar-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .seminar-title {
    display: flex;
    align-items: flex-start;
    flex-flow: column wrap;
    justify-content: flex-start;
    font-size: 18px;
    line-height: calc(22 / 18);
    font-weight: 700;
    letter-spacing: 0.03em;
    gap: 5px;
  }
}
.modal-body .modal-content .seminar-title .sub {
  font-size: 15px;
  line-height: calc(23 / 15);
  font-weight: 500;
  letter-spacing: 0;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .seminar-title .sub {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .seminar-title .sub {
    font-size: 14px;
  }
}
.modal-body .modal-content .tag-list {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 5px;
  margin: 15px 0 0;
}
.modal-body .modal-content .tag-list .tag {
  padding: 5px 10px 6px;
  background: #E8E8E8;
  color: #070F26;
  font-size: 12px;
  line-height: calc(15 / 12);
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .tag-list .tag {
    font-size: 11px;
  }
}
.modal-body .modal-content .tag-list .tag::before {
  content: "#";
  padding-right: 3px;
}
.modal-body .modal-content .speaker-list {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 13px;
  margin: 22px 0 0;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .speaker-list {
    display: flex;
    align-items: stretch;
    flex-flow: column nowrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .speaker-list {
    margin: 20px 0 0;
  }
}
.modal-body .modal-content .speaker-list .speaker {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: calc((100% - 22px) / 2);
  gap: 10px;
  align-items: center;
  gap: 15px;
  width: calc((100% - 30px) / 2);
  height: auto;
  flex: 1 0 40%;
}
@media print, screen and (max-width: 1000px) {
  .modal-body .modal-content .speaker-list .speaker {
    width: 100%;
  }
}
@media print, screen and (max-width: 1000px) {
  .modal-body .modal-content .speaker-list .speaker {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .speaker-list .speaker {
    width: 100%;
    align-items: flex-start;
  }
}
.modal-body .modal-content .speaker-list .speaker .img-box {
  width: calc(35.47% - 7.5px);
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .speaker-list .speaker .img-box {
    width: calc(31.66% - 5px);
  }
}
.modal-body .modal-content .speaker-list .speaker .img-box img {
  display: block;
  width: 100%;
  height: auto;
}
.modal-body .modal-content .speaker-list .speaker .text-box {
  width: calc(64.53% - 7.5px);
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .speaker-list .speaker .text-box {
    width: calc(68.34% - 5px);
  }
}
.modal-body .modal-content .speaker-list .speaker .text-box .company {
  margin: 0 0 5px;
  font-size: 13px;
  line-height: calc(18 / 13);
  font-weight: 500;
  letter-spacing: 0;
  color: #777;
  margin: 0 0 7px;
  color: #000;
  font-size: 16px;
  line-height: calc(21 / 16);
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .speaker-list .speaker .text-box .company {
    font-size: 13px;
  }
}
.modal-body .modal-content .speaker-list .speaker .text-box .business {
  margin: 0 0 5px;
  color: #777;
  font-size: 13px;
  line-height: calc(18 / 13);
  margin: 0 0 7px;
  color: #777;
  font-size: 14px;
  line-height: calc(18 / 14);
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .speaker-list .speaker .text-box .business {
    font-size: 13px;
  }
}
.modal-body .modal-content .speaker-list .speaker .text-box .name {
  font-size: 16px;
  line-height: calc(22 / 16);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 10px 0 0;
  font-size: 20px;
  line-height: calc(39 / 20);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .speaker-list .speaker .text-box .name {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .speaker-list .speaker .text-box .name {
    margin: 5px 0 0;
    font-size: 15px;
  }
}
.modal-body .modal-content .explanation {
  margin: 20px 0 0;
  margin: 38px 0 0;
}
.modal-body .modal-content .explanation span.no-break {
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .modal-body .modal-content .explanation {
    margin: 25px 0 0;
  }
}
.modal-body .modal-footer {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 18px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: solid 1px #B7B7B7;
  margin: 35px 35px 0;
  padding: 33px 0 50px;
  height: auto;
  background: #FFF;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-footer {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .modal-body .modal-footer {
    margin: 25px 18px 0;
    padding: 25px 0 30px;
  }
}
.modal-body .modal-footer .seminar-detail {
  display: block;
  margin: 0 auto;
  padding: 0 15px 0 0;
  width: fit-content;
  border: 0;
  color: #070F26;
  font-size: 15px;
  line-height: calc(26 / 15);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal-body .modal-footer .seminar-detail:hover {
    opacity: 0.8;
  }
}
.modal-body .modal-footer .seminar-detail::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background: url(../media/images/expoline/img/icon_link_arrow.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.modal-body .modal-footer .reserve input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.modal-body .modal-footer .reserve input[type=checkbox] + label {
  display: block;
  padding: 9px;
  width: 170px;
  background: #0072BC;
  color: #FFF;
  font-size: 14px;
  line-height: calc(17 / 14);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  border-radius: 999px;
  transition: all 0.2s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .modal-body .modal-footer .reserve input[type=checkbox] + label:hover {
    opacity: 0.8;
  }
}
.modal-body .modal-footer .reserve input[type=checkbox] + label::before, .modal-body .modal-footer .reserve input[type=checkbox] + label::after {
  content: none;
}
.modal-body .modal-footer .reserve input[type=checkbox] + label .text {
  padding: 0 calc(0.95em + 6px) 0 0;
  width: fit-content;
  position: relative;
}
.modal-body .modal-footer .reserve input[type=checkbox] + label .text::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #FFF;
  border-radius: 3px;
  position: absolute;
  top: calc(50% + 0.05em);
  right: 0;
  transform: translate(0, -50%);
}
.modal-body .modal-footer .reserve input[type=checkbox]:checked + label .text::before {
  background: #FFF;
}
.modal-body .modal-footer .reserve input[type=checkbox]:checked + label .text::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-style: solid;
  border-width: 0 0 3px 3px;
  border-color: #BC4328;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translate(0, -50%) rotate(-45deg);
}
.modal-body .modal-footer .reserve input[type=checkbox]:focus + label::before {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.modal-body .modal-footer .reserve input[type=checkbox].full + label {
  background: #2E404D;
  cursor: auto;
}
.modal-body .modal-footer .reserve input[type=checkbox].full + label .text {
  padding: 0;
}
.modal-body .modal-footer .reserve input[type=checkbox].full + label .text::before {
  display: none;
}
.modal-body .modal-footer .reserve input[type=checkbox].full_color + label {
  background: #2E404D;
}
.modal-body .modal-footer .reserve input[type=checkbox] + label {
  width: 300px;
  font-size: 18px;
  line-height: calc(22 / 18);
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .modal-body .modal-footer .reserve input[type=checkbox] + label {
    font-size: 15px;
  }
}
.modal-body .modal-close {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../media/images/expoline/img/icon_modal_close.svg) no-repeat center center;
  background-size: 20px;
  top: 0;
  right: 0;
}
/* =================================================================
 other
================================================================= */
.full_session {
  margin: 8px auto;
  text-align: left;
}
form .policy-agree input[type=checkbox] + label:before {
  top: 4px;
  left: -17px;
  width: 16px;
  height: 16px;
}
form .policy-agree input[type=checkbox]:checked + label:after {
  top: 5px;
  left: -12px;
  width: 6px;
  height: 11px;
}
/* =================================================================
 recommend部分表示調整
================================================================= */
main section .seminar-schedule .seminar-box .seminar-content .speaker-list {
  flex-flow: column nowrap;
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker {
  width: 100%;
}
@media screen and (min-width: 768px) {
  main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .img-box {
    width: 75px;
  }
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .text-box {
  flex: 1 0 auto;
}
main section .seminar-schedule .seminar-box .seminar-content .speaker-list .speaker .text-box p {
  text-align: left;
}
.modal-body .modal-content .speaker-list {
  /*flex-flow: column nowrap;*/
}
.modal-body .modal-content .speaker-list .speaker {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal-body .modal-content .speaker-list .speaker .img-box {
    max-width: 120px;
  }
}
.modal-body .modal-content .speaker-list .speaker .text-box {
  flex: 1 0 auto;
}
.modal-body .modal-content .speaker-list .speaker .text-box p {
  text-align: left;
}
main section dl.favorite-seminar .favorite-seminar-box .seminar-info .seminar-code.purple-col {
  background-color: #7251b4;
}
main section dl.favorite-seminar .favorite-seminar-box .seminar-info .seminar-code.green-col {
  background-color: #068941;
}
main section dl.favorite-seminar .favorite-seminar-box .seminar-info .seminar-code.blue-col {
  background-color: #0072bc;
}
main section dl.personal-input .personal-input-box dd .name-input-box.confirm {
  word-break: normal;
}
main section form .smp_tmpl dl.personal-input .personal-input-box dd .name-input-box .output {
  max-width: 50%;
}
/*# sourceMappingURL=entry_style_2024.css.map */
/*# sourceMappingURL=./entry_style_2025.css.map */