@charset "utf-8";

/* ↓↓↓ #seminar ↓↓↓ */

#seminar .mainbox {
  width: 100%;
  margin-top: 45px;
}

@media screen and (max-width: 750px) {
  #seminar .mainbox {
    width: 100vw;
    margin: 20px calc(50% - 50vw) 0;
  }
}

#seminar .mainbox .page-scroll_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 750px) {
  #seminar .mainbox .page-scroll_box {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 25px;
  }
}

#seminar .mainbox .page-scroll_box li {
  width: calc((100% - 25px) / 2);
  background: #008803;
  color: #ffffff;
  display: flex;
  justify-content: center;
  position: relative;
  /* padding: 2% 0; */
}

#seminar .mainbox .page-scroll_box li:not(:last-of-type){
  margin-right: 25px;
}

#seminar .mainbox .page-scroll_box li a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding: 8.22% 0;
  width: 100%;
}

#seminar .mainbox .page-scroll_box li::after {
  content: "";
  position: absolute;
  background: url(/recruit/career/seminar/img/page-scroll_arrow.svg) no-repeat;
  width: 10px;
  height: 10px;
  bottom: 5%;
}

@media screen and (max-width: 750px) {
  #seminar .mainbox .page-scroll_box li::after {
    top: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    right: 2.5%;
    width: 15px;
    height: 15px;
  }
}

#seminar .mainbox .page-scroll_box li:hover {
  opacity: .7;
}

@media screen and (max-width: 750px) {
  #seminar .mainbox .page-scroll_box li {
    width: 92%;
    margin-bottom: 2.2%;
    /* padding: 2% 0; */
  }
  #seminar .mainbox .page-scroll_box li:not(:last-of-type){
    margin-right: 0;
  }

  #seminar .mainbox .page-scroll_box li a {
    padding: 4.356% 0;
  }
}

#seminar .mainbox .image {
  display: block;
  height: 100%;
}

#seminar .mainbox .image .lead-text{
  margin-bottom: 20px;
  font-size: 2.0rem;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  #seminar .mainbox .image .lead-text{
    font-size: 1.9rem;
    padding: 0 4%;
  }
}

#seminar .mainbox .image img {
  display: block;
  margin: 0 auto;
}

#seminar .contents_hr {
  margin: 40px auto 0 auto;
  height: 10px;
  border: 0;
  background: url(../img/index_bg01.gif) repeat-x;
}

#seminar .tab-group,
#seminar .link-group {
  margin-top: 10px;
  margin-bottom: 80px;
  display: flex;
  gap: min(5vw,48px);
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  #seminar .tab-group,
  #seminar .link-group {
    margin-bottom: 40px;
    flex-direction: column;
  }
}

#seminar .tab-group li {
  flex: 1;
  background-color: rgba(0, 136, 3,.7);
  border-right: 2px solid #fff;
  text-align: center;
  transition: opacity ease .3s;
}
#seminar .tab-group li:nth-of-type(odd) {
  background-color: #70af22;
}
#seminar .tab-group li:nth-of-type(even) {
  background-color: #005e03;
}

@media screen and (max-width: 750px) {
  #seminar .tab-group li {
    width: 100%;
    border-right: 0;
    margin-bottom: 1px;
    text-align: left;
  }
}

#seminar .tab-group li:hover {
  opacity: .7;
}

@media screen and (max-width: 750px) {
  #seminar .tab-group li {
    background-color: rgba(0, 136, 3,.7);
  }
}

#seminar .tab-group li:last-of-type,
#seminar .link-group li:last-of-type {
  border-right: 0;
}

#seminar .tab-group li.-new,
#seminar .link-group li.-new {
  position: relative;
}

#seminar .tab-group li.-new::before,
#seminar .link-group li.-new::before {
  content: 'NEW!';
  position: absolute;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff0000;
  top: -35px;
  left: 5px;
}

@media screen and (max-width: 750px) {
  #seminar .tab-group li.-new::before,
  #seminar .link-group li.-new::before {
    font-size: 1.8rem;
    top: 4px;
    left: 18px;
  }
}

#seminar .tab-group li a,
#seminar .link-group li a {
  height: 100px;
  font-size: calc((17 - 14) * ((100vw - 750px) / (1280 - 750)) + 14px);
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width:1281px) {
  #seminar .tab-group li a,
  #seminar .link-group li a {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 750px) {
  #seminar .tab-group li a,
  #seminar .link-group li a {
    padding-left: 20px;
    font-size: 1.5rem;
    justify-content: flex-start;
  }
}

#seminar .tab-group li a::after,
#seminar .link-group li a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 50%;
  transform: translateX(50%);
  width: 12px;
  height: 7px;
  background: url(../../../new-graduate/seminar/section2/img/tab-arrow-white.svg)no-repeat;
}

@media screen and (max-width: 750px) {
  #seminar .tab-group li a::after,
  #seminar .link-group li a::after {
    bottom: 50%;
    right: 10px;
    transform: translateY(50%);
    width: 15px;
    height: 10px;
  }
  #seminar .link-group li.exhibition-btn a::after {
    bottom: 53px;
  }
}

#seminar .tab-group li a:hover,
#seminar .link-group li a:hover {
  text-decoration: none;
}

#seminar .carrer-event_title {
  padding-top: 40px;
  display: flex;
  justify-content: center;
}

#seminar .carrer-event_title h2 {
  font-size: 3rem;
  color: #008803;
}

#seminar.contents-box .title-banner{
  padding: 0 0 0 30px;
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  position: relative;
}

#seminar.contents-box .title-banner::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #018802;
}

#seminar .event_wrap .lead-text {
  margin: 40px auto 0;
}
@media screen and (max-width: 375px) {
  #seminar .event_wrap .lead-text {
    margin: 20px auto 0;
  }
}

#seminar .event_wrap {
  margin: 25px auto 0 auto;
  color: #333333;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap {
    margin: 25px auto;
  }
}

#seminar .event_wrap h2 {
  font-size: 2.5rem;
  padding-bottom: 15px;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap h2 {
    font-size: 2.5rem;
  }
}

#seminar .box1,
.box2 .lead-text
.box3 .lead-text {
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 1.6rem;
  padding-bottom: 10px;
}

@media screen and (max-width: 750px) {

  #seminar .box1,
  .box2 .lead-text,
  .box3 .lead-text {
    font-size: 1.4rem;
  }
}

#seminar .box1,
.box2 .lead-text span,
.box3 .lead-text span {
  display: block;
}

#seminar .event_wrap .reservation {
  margin-top: 75px;
}
#seminar .event_wrap .title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.055em;
}
#seminar .event_wrap .flow-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: min(5.208333333333334vw,50px);
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  #seminar .event_wrap .flow-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
#seminar .event_wrap .flow-list .item {
  position: relative;
  color: #fff;
  background-color: #018802;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  padding: 35px 24px 40px;
}
#seminar .event_wrap .flow-list .item:not(:first-of-type)::before {
  content: '';
  position: absolute;
  width:0;
  height:0;
  border-style:solid;
  border-width: 12px 0 12px 21px;
  border-color: transparent transparent transparent #018802;
  translate: 0 -50%;
  top: 50%;
  left: max(-3.75vw,-36px);
}
@media screen and (max-width: 750px) {
  #seminar .event_wrap .flow-list .item:not(:first-of-type)::before {
    border-width: 21px 12px 0 12px;
    border-color: #018802 transparent transparent transparent;
    translate: -50% 0;
    top: -36px;
    left: 50%;
  }
}
#seminar .event_wrap .flow-list .item .head-group {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#seminar .event_wrap .wb {
  display: inline-block;
}
#seminar .event_wrap .flow-list .item .head-group .head {
  flex: 1;
  line-height: 1.55555556;
  align-content: center;
  margin-top: 5px;
}
#seminar .event_wrap .flow-list .item .conts_group .txt {
  font-size: 1.4rem;
  line-height: 1.714286;
  letter-spacing: 0.055em;
  text-align: justify;
}

#seminar .event_wrap .schedule {
  width: 100%;
  margin: 0 auto;
  /* background: #e8e8e8; */
}

#seminar .event_wrap .schedule .inner {
  margin-top: 20px;
  margin-bottom: 60px;
  /* padding: 5%; */
}

#seminar .event_wrap .schedule .inner .seminar-btn {
  max-width: 100%;
  width: max-content;
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 375px) {

  #seminar .event_wrap .schedule .inner .seminar-btn {
    padding-top: 0;
  }
}

#seminar .event_wrap .schedule .inner .seminar-btn:hover {
  opacity: .6;
}

#seminar .event_wrap .schedule .inner .schedule-box {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box {
    flex-direction: column;
  }
}

#seminar .event_wrap .schedule .inner .schedule-box:last-child {
  margin-bottom: 0;
}

#seminar .schedule .inner .schedule-box .day_module {
  background: #008803;
  text-align: center;
  color: #ffffff;
  padding: 5%;
  max-height: 240px;
  width: 35%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

/* #seminar .box3 .schedule .inner .schedule-box .day_module {
  text-align: center;
  color: #ffffff;
  padding: 5%;
  height: 550px;
  max-height: 570px;
  width: 35%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
} */

#seminar .box3 .schedule .inner .schedule-box .-middle {
  max-height: 430px;
}

@media screen and (max-width: 750px) {
  #seminar .box3 .schedule .inner .schedule-box .-middle {
    max-height: initial;
  }
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .day_module {
    font-size: min(max(1rem, calc(1rem + ((1vw - 0.2rem) * 0.4651))));
    min-height: 0vw;
  }
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .day_module {
    width: 100%;
    font-size: 1.4rem;
    padding: 3%;
    height: auto;
  }
}

#seminar .event_wrap .schedule .inner .schedule-box .day_module span {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .day_module span {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}

#seminar .event_wrap .schedule .inner .schedule-box .schedule_module {
  text-align: center;
  color: #333333;
  padding: 5%;
  width: 65%;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .schedule_module {
    width: 100%;
    padding: 0;
  }
}

#seminar .event_wrap .schedule .inner .schedule-box .schedule_module .title {
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .schedule_module .title {
    display: none;
  }
}

#seminar .event_wrap .schedule .inner .title {
  font-weight: bold;
  font-size: 2.1rem;
  margin-bottom: 20px;
  position: relative;
}

#seminar .event_wrap .schedule .inner .title .title-text {
  position: absolute;
  top: 0;
  left: 73%;
  transform: translateX(-73%);
  -webkit-transform: translateX(-73%);
  -ms-transform: translateX(-73%);
  white-space: nowrap;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .title .title-text {
    position: relative;
    display: flex;
    justify-content: center;
  }
}

#seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box {
  background: #ffffff;
  border: 1px solid #008803;
  padding: 3%;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box {
    padding: 3%;
  }
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .notes {
  padding-top: 10px;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

#seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box .schedule_line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1em;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box .schedule_line {
    flex-direction: column;
    padding: 0 3%;
  }
}

#seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box .schedule_line>.schedule_time {
  font-size: 1.8rem;
  line-height: 3rem;
}

@media screen and (max-width: 950px) {

  #seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box .schedule_line>.schedule_time {
    font-size: min(max(0.875rem, calc(0.875rem + ((1vw - 0.46875rem) * 2))), 1.7rem);
    min-height: 0vw;
    text-align: left;
  }
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box .schedule_line>.schedule_time {
    font-size: 1.8rem;
    margin: 2% 0;
    text-align: left;
  }
}

#seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box .time::before {
  content: "\025b6";
  position: relative;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box .time::before {
    left: -10px;
  }
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box .time::before {
    content: "\025bc";
    position: relative;
    left: 0;
  }
}

#seminar .box1 .schedule .inner .schedule-box .schedule_module .inner-box .event-box {
  min-width: 260px;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box .event-box {
    width: 100%;
  }
}

#seminar .box1 .schedule .inner .schedule-box .schedule_module .inner-box .event-box .event {
  background: #8FAADC;
  color: #ffffff;
  font-size: 1.7rem;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  border-radius: 8px;
  margin: 5px 0;
  line-height: 2.2rem;
}

#seminar .box2 .schedule .inner .schedule-box .schedule_module .inner-box .event-box .event {
  background: #8FAADC;
  color: #ffffff;
  font-size: 1.7rem;
  width: 260px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  margin: 5px 0;
  line-height: 2.2rem;
}

@media screen and (max-width: 750px) {

  #seminar .box2 .schedule .inner .schedule-box .schedule_module .inner-box .event-box .event {
    width: 100%;
  }
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .event-box .event {
  background: #8FAADC;
  color: #ffffff;
  font-size: 1.7rem;
  width: 260px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  margin: 5px 0;
  line-height: 2.2rem;
}

#seminar .box1 .schedule .inner .schedule-box .schedule_module .inner-box .event-box .attention{
  font-size: 1.2rem;
  text-align: right;
}

@media screen and (max-width: 750px) {
  #seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .event-box .event {
    width: 100%;
  }
}

#seminar .schedule .inner .schedule-box .schedule_module .inner-box .-woman {
  background: #e6826e !important;
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .-railroads {
  background: #008803 !important;
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .-building {
  background: #7ac843 !important;
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .-systems {
  background: #0096be !important;
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .-construction {
  background: #50c8f0 !important;
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .-vehicle {
  background: #e95142 !important;
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .-machine {
  background: #ff921e !important;
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .-architecture {
  background: #be78aa !important;
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .-project {
  background: #d5accf !important;
}

#seminar .box3 .schedule .inner .schedule-box .schedule_module .inner-box .-station {
  background: #5a86a3 !important;
}

@media screen and (max-width: 950px) {

  #seminar .event_wrap3 .schedule .inner .schedule-box .schedule_module .inner-box .event {
    font-size: min(max(0.875rem, calc(0.875rem + ((1vw - 0.46875rem) * 4))), 1.4rem);
    min-height: 0vw;
  }
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .schedule .inner .schedule-box .schedule_module .inner-box .event {
    width: 100%;
    font-size: 1.8rem;
    padding: 0 20px;
  }
}

#seminar .event_wrap .seminar-list {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
#seminar .event_wrap .seminar-list .seminar-item {
  border: 1px solid #70af22;
  display: flex;
  gap: 26px;
  padding: 38px 8.422%;
}
@media screen and (max-width: 750px) {
  #seminar .event_wrap .seminar-list .seminar-item {
    flex-direction: column-reverse;
    padding: 20px 24px 40px;
  }
}
#seminar .event_wrap .seminar-list .seminar-item .txt-group {
  flex:1;
}
#seminar .event_wrap .seminar-list .seminar-item .ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.055em;
  text-align: left;
  color: #008803;
}
@media screen and (max-width: 750px) {
  #seminar .event_wrap .seminar-list .seminar-item .ttl {
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
#seminar .event_wrap .seminar-list .seminar-item .date {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.055em;
}
@media screen and (max-width: 750px) {
  #seminar .event_wrap .seminar-list .seminar-item .date {
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
#seminar .event_wrap .seminar-list .seminar-item .txt {
  font-size: 1.4rem;
  letter-spacing: 0.055em;
  line-height: 2;
  margin-top: 42px;
}
@media screen and (max-width: 750px) {
  #seminar .event_wrap .seminar-list .seminar-item .txt {
    margin-top: 30px;
  }
}
#seminar .event_wrap .seminar-list .seminar-item .seminer-btn {
  width: 234px;
  height: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0;
  color: #fff;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  background-color: #008803;
  padding-left: 14px;
  margin-top: 34px;
  transition: opacity ease .3s;
}
#seminar .event_wrap .seminar-list .seminar-item .seminer-btn:hover {
  text-decoration: unset;
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  #seminar .event_wrap .seminar-list .seminar-item .seminer-btn {
    font-size: 1.6rem;
    margin: 28px auto 0;
  }
}
#seminar .event_wrap .seminar-list .seminar-item .seminer-btn .link-icon {
  width: 18px;
  display: block;
}
#seminar .event_wrap .seminar-list .seminar-item .img {
  width: 35.533%;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  #seminar .event_wrap .seminar-list .seminar-item .img {
    width: 100%;
  }
}

#seminar .box1 .seminar-comingsoon {
  width: 100%;
  margin: 40px 0;
}

#seminar .box1 .seminar-comingsoon h4 {
  font-size: 3rem;
  display: flex;
  justify-content: center;
  font-weight: 600;
}

#seminar .box1 .seminar-comingsoon .notes {
  padding-top: 20px;
  text-align: right;
}

#seminar .box1 .seminar-comingsoon .comingsoon-title {
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

#seminar .box1 .seminar-comingsoon .comingsoon-title .inner {
  display: flex;
  flex-direction: column;
  font-size: 2rem;
}

#seminar .event_wrap .footnote {
  padding-top: 50px;
  line-height: 1.7;
  font-size: 1.6rem;
}

@media screen and (max-width: 750px) {

  #seminar .event_wrap .footnote {
    font-size: 1.4rem;
  }
}

#seminar .event_wrap .footnote span {
  color: #008803;
  font-weight: bold;
  display: block;
  font-size: 2rem;
  padding-bottom: 10px;
}

#seminar .event_wrap .footnote p {
  padding-left: 1em;
  text-indent: -1em;
}

#seminar .movie-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 750px) {
  #seminar .movie-list {
    flex-direction: column;
  }
}

#seminar .box1 .movie-list {
  margin-top: 20px;
}

/* #seminar .box1 .recruit-event {
  padding-bottom: 40px;
}

#seminar .box1 .recruit-event:last-of-type {
  padding-bottom: 0;
}

#seminar .box1 .recruit-event h2 {
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  #seminar .box1 .recruit-event h2 {
    flex-wrap: wrap;
  }
}

#seminar .box1 .recruit-event .recruit-event_schedule {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  #seminar .box1 .recruit-event .recruit-event_schedule {
    display: block;
  }
}

#seminar .box1 .recruit-event .recruit-event_schedule .event {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 48%;
  position: relative;
  height: auto;
  margin-right: 25px;
  text-align: center;
  padding: 25px;
  margin-bottom: 24px;
  background: #008803;
  box-shadow: 0px 0px 16px -6px rgb(0 0 0 / 60%);
  color: #ffffff;
}

@media screen and (max-width: 750px) {
  #seminar .box1 .recruit-event .recruit-event_schedule .event {
    width: 100%;
  }
}

#seminar .box1 .recruit-event .recruit-event_schedule .-close {
  box-shadow: none;
  background: #e6e6e6;
  color: #999999;
}

#seminar .box1 .recruit-event .recruit-event_schedule .-close:hover {
  opacity: 1 !important;
}

#seminar .box1 .recruit-event .recruit-event_schedule .event::after {
  content: "";
  position: absolute;
  right: 1.5%;
  bottom: 8%;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(-45deg, #ffffff 10px, transparent 0);
}

#seminar .box1 .recruit-event .recruit-event_schedule .event:hover {
  opacity: .7;
}

#seminar .box1 .recruit-event .recruit-event_schedule .event a {
  color: #ffffff;
  text-decoration: none;
}

#seminar .box1 .recruit-event .recruit-event_schedule .event span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
} */

#seminar .box1 .recruit-event-contents {
  width: 100%;
  margin-top: 40px;
  font-size: 1.3rem;
  border-collapse: collapse;
}
@media screen and (max-width: 375px) {
  #seminar .box1 .recruit-event-contents {
    margin-top: 25px;
  }
}

#seminar .box1 .recruit-event-contents thead th {
  padding: 5px 15px;
  border: none;
  border: 1px solid #d9d9d9;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
  box-sizing: content-box;
}

@media screen and (max-width: 750px) {
  #seminar .box1 .recruit-event-contents thead th {
    padding: 5% 0;
    font-size: 1.2rem;
    font-weight: bold;
  }
}

#seminar .box1 .recruit-event-contents thead th:nth-of-type(1) {
  width: 133px;
}

@media screen and (max-width: 750px) {
  #seminar .box1 .recruit-event-contents thead th:nth-of-type(1) {
    width: 90px;
  }
}

#seminar .box1 .recruit-event-contents thead th:nth-of-type(2) {
  width: 50px;
}

#seminar .box1 .recruit-event-contents thead th:nth-of-type(3) {
  width: 322px;
}

#seminar .box1 .recruit-event-contents thead th:nth-of-type(4) {
  width: 200px;
}

#seminar .box1 .recruit-event-contents thead th:nth-of-type(5) {
  display: none;
}

@media screen and (max-width: 750px) {

  #seminar .box1 .recruit-event-contents thead th:nth-of-type(2),
  #seminar .box1 .recruit-event-contents thead th:nth-of-type(3),
  #seminar .box1 .recruit-event-contents thead th:nth-of-type(4) {
    display: none;
  }

  #seminar .box1 .recruit-event-contents thead th:nth-of-type(5) {
    display: table-cell;
  }
}

#seminar .box1 .recruit-event-contents tbody td {
  padding: 13px;
  vertical-align: middle;
}

#seminar .box1 .recruit-event-contents tbody tr{
  height: 65px;
}

#seminar .box1 .recruit-event-contents tbody tr:nth-child(even) {
  background-color: #e5e5e5;
}

#seminar .box1 .recruit-event-contents tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}

#seminar .box1 .recruit-event-contents tbody tr.evenColor {
  background-color: #e5e5e5 !important;
}

#seminar .box1 .recruit-event-contents tbody tr.oddColor {
  background-color: #f2f2f2 !important;
}

#seminar .box1 .recruit-event-contents tbody td:nth-of-type(1) {
  font-weight: bold;
  color: #008803;
}

@media screen and (max-width: 750px) {
  #seminar .box1 .recruit-event-contents tbody td:nth-of-type(1) {
    text-align: center;
  }
}

/* #seminar .box1 .recruit-event-contents tbody td:nth-of-type(5) {
  text-align: center;
} */

#seminar .box1 .recruit-event-contents tbody .-oneline {
  display: none;
}

#seminar .box1 .recruit-event-contents tbody td:nth-of-type(5) {
  display: none;
}

@media screen and (max-width: 750px) {

  #seminar .box1 .recruit-event-contents tbody td:nth-of-type(2),
  #seminar .box1 .recruit-event-contents tbody td:nth-of-type(3),
  #seminar .box1 .recruit-event-contents tbody td:nth-of-type(4) {
    display: none;
  }

  #seminar .box1 .recruit-event-contents tbody td:nth-of-type(5) {
    line-height: 1.8;
    display: table-cell;
  }

  #seminar .box1 .recruit-event-contents tbody td:nth-of-type(5) span,
  #seminar .box1 .recruit-event-contents tbody td:nth-of-type(5) span {
    color: #008803;
    font-weight: bold;
    display: block;
  }
}

#seminar .box1 .recruit-event-contents .-center {
  text-align: center;
}

#seminar .movie-list li {
  width: calc((100% - 25px) / 2);
  position: relative;
  height: auto;
  margin-right: 25px;
  text-align: center;
  margin-bottom: 24px;
  background: #008803;
  opacity: .7;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}

#seminar .movie-list li::after {
  content: "";
  position: absolute;
  right: 1.5%;
  bottom: 8%;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(-45deg, #ffffff 10px, transparent 0);
}

#seminar .movie-list li a {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  padding: 25px;
}

@media screen and (max-width: 480px) {
  #seminar .movie-list li a {
    font-size: 4.5vw;
  }
}

@media screen and (max-width: 750px) {
  #seminar .movie-list li {
    width: 100%;
    margin-bottom: 14px;
    margin-right: 0;
  }
  #seminar .movie-list li a {
    padding: 15px;
  }
}

#seminar .movie-list li:hover {
  opacity: 1;
}

#seminar .movie-list li:nth-of-type(2n) {
  margin-right: 0;
}

#seminar .movie-list li h3 {
  display: block;
  padding-top: 27px;
  padding-bottom: 20px;
  margin-bottom: 36px;
  font-size: calc((22 - 16) * ((100vw - 750px) / (1050 - 750)) + 16px);
  font-weight: bold;
  color: #008803;
  text-align: center;
  line-height: 1.0;
  background: url(../img/index_bg01.gif) repeat-x left bottom;
}

@media screen and (min-width: 1050px) {
  #seminar .movie-list li h3 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 750px) {
  #seminar .movie-list li h3 {
    margin-bottom: 5%;
    font-size: 1.8rem;
    background-size: 6px 4px;
  }
}

#seminar .seminar-block{
  width: 100%;
  min-height: 170px;
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  margin-bottom: 27px;
}

@media screen and (max-width: 1050px) {
  #seminar .seminar-block{
    flex-direction: column;
    margin-bottom: 25px;
  }
}

#seminar .seminar-block.-blue{
  background-color: #c4cfe9;
}

#seminar .seminar-block.-red{
  background-color: #febfb3;
}

#seminar .seminar-block.-yellow{
  background-color: #fff1d0;
}

#seminar .seminar-block .title-box{
  max-width: 350px;
  width: 100%;
  font-size: 2.1rem;
  font-weight: bold;
  border-right: 1px solid #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding:0 3.51%;
  margin-right: 6.785%;
}

@media screen and (max-width: 1050px) {
  #seminar .seminar-block .title-box{
    max-width: 480px;
    border-right: unset;
    border-bottom: 1px solid #000;
    padding: 0 0 12px;
    margin-right: unset;
    margin: 0 auto 30px;
  }
}

@media screen and (max-width: 750px) {
  #seminar .seminar-block .title-box{
    max-width: unset;
    width: auto;
    margin: 0 6.445% 30px;
  }
}

#seminar .seminar-block .seminar-container{
  /* max-width: 450px; */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3.51%;
}

@media screen and (max-width: 1050px) {
  #seminar .seminar-block .seminar-container{
    max-width: calc(480px + 6.445%*2);
    margin: 0 auto;
    padding-right: unset;
    padding: 0 6.445%;
  }
}

#seminar .seminar-block .seminar-container .seminar-item+.seminar-item{
  margin-top: 18px;
}

@media screen and (max-width: 1050px) {
  #seminar .seminar-block .seminar-container .seminar-item+.seminar-item{
    margin-top: 20px;
  }
}

#seminar .seminar-block .seminar-item .date{
  position: relative;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 19px;
}

@media screen and (max-width: 480px) {
  #seminar .seminar-block .seminar-item .date{
    flex-direction: column;
  }
}

#seminar .seminar-block .seminar-item .date .period-time{
  /* width: 130px; */
  flex: 1;
  display:inline-block;
}

#seminar .seminar-block .seminar-item .date::before{
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #000;
  top: 6px;
  left: 0;
}

#seminar .seminar-block .seminar-item .period{
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  margin-right: 6.605%;
}

@media screen and (max-width: 480px) {
  #seminar .seminar-block .seminar-item .period{
    /* width: 100%; */
    margin-right: 0;
  }
}

#seminar .seminar-block .seminar-item .period .period-date{
  width: 120px;
}

#seminar .seminar-block .seminar-item .deadline{
  width: 160px;
  font-size: 1.4rem;
  font-weight: lighter;
  display: inline-block;
  padding-bottom: 3px;
}

@media screen and (max-width: 1050px) {
  #seminar .seminar-block .seminar-item .date+.seminar-txt{
    margin-top: 12px;
  }
}

@media screen and (max-width: 480px) {
  #seminar .seminar-block .seminar-item .deadline{
    margin-top: 5px;
  }
}

#seminar .seminar-block .seminar-item .deadline .line{
  border-bottom: 1px solid #000;
}

#seminar .seminar-block .seminar-item .seminar-txt{
  font-size: 1.4rem;
  font-weight: lighter;
}

#seminar .seminar-block .seminar-item .date+.seminar-txt{
  margin-top: 8px;
}

@media screen and (max-width: 1050px) {
  #seminar .seminar-block .seminar-item .date+.seminar-txt{
    margin-top: 12px;
  }
}

#seminar .seminar-block .seminar-item .seminar-txt+.date{
  margin-top: 16px;
}

/* ↑↑↑ #seminar ↑↑↑ */