@media (min-width: 768px) {
  .list_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
  }
  .list_ul a {
    border: 2px solid #bd263a;
    color: #bd263a;
    width: calc(33.3% - 20px);
    margin: 7px 0;
    border-radius: 20px;
    padding: 20px;
    min-height: 130px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .list_ul a:hover {
    background-color: #bd263a;
    color: #fff;
    opacity: 1;
  }
  .list_ul a h4 {
    font-size: 22px;
    margin: 5px 0;
  }
  .list_ul a .date {
    font-size: 18px;
    font-weight: 500;
  }
  .list_ul a .subject {
    font-size: 14px;
  }
  .last_p {
    margin: 50px 0 0 0;
  }
}
@media (max-width: 767.98px) {
  .list_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
  }
  .list_ul a {
    border: 2px solid #bd263a;
    color: #bd263a;
    width: 100%;
    margin: 7px 0;
    border-radius: 20px;
    padding: 20px;
    min-height: 130px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .list_ul a:hover {
    background-color: #bd263a;
    color: #fff;
    opacity: 1;
  }
  .list_ul a h4 {
    font-size: 18px;
    margin: 5px 0;
  }
  .list_ul a .date {
    font-size: 16px;
    font-weight: 500;
  }
  .list_ul a .subject {
    font-size: 12px;
  }
  .last_p {
    margin: 40px 0 0 0;
  }
}
.day {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #bd263a;
  border-radius: 5px;
  font-weight: 500;
  background-color: #fafafa;
  flex-wrap: wrap;
}
.day .mini_tag {
  background-color: #bd263a;
  color: white;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .day {
    margin: 50px 0;
    height: 80px;
    font-size: 20px;
  }
  .day span {
    font-size: 35px;
    margin: 0 20px;
  }
  .day .mini_tag {
    padding: 3px 15px;
    margin-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .day {
    margin: 30px 0;
    height: 50px;
    font-size: 16px;
  }
  .day span {
    font-size: 23px;
    margin: 0 10px;
  }
  .day .mini_tag {
    padding: 3px 10px;
    margin-left: 10px;
  }
}

@media (max-width: 767.98px) {
  .height {
    height: 100px;
  }
}

.time_table tr th {
  align-items: flex-start;
  justify-content: flex-start;
}
.time_table tr td .expo_dl01 {
  display: flex;
}
.time_table tr td tr th {
  font-weight: bold;
  text-align: center;
}
.time_table tr td tr th span {
  width: 80px;
  border-radius: 5px;
  margin-right: 10px;
  display: block;
}
.time_table tr td tr th .reserv {
  background-color: #bd263a;
  color: white;
}
.time_table tr td tr th .free {
  background-color: white;
  color: #bd263a;
  border: 1px solid;
}
.time_table tr td .attention {
  background-color: #e8dadc;
  border-radius: 5px;
  padding: 5px 10px;
  display: block;
}
.time_table tr td .free_box {
  border-collapse: separate;
}
.time_table tr .time {
  width: 110px;
  text-align: justify;
  font-weight: bold;
}
.time_table tr .pading {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .time_table tr td .expo_dl01 {
    align-items: center;
    text-align: center;
    margin-bottom: 5px;
  }
  .time_table tr td .free_box tr th td {
    padding-left: 10px;
  }
  .time_table tr td .free_box tr th span {
    padding: 65px 0;
  }
}
@media (max-width: 767.98px) {
  .time_table tr th {
    padding: 3px;
  }
  .time_table tr td .expo_dl01 {
    flex-wrap: wrap;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .time_table tr td tr th {
    width: 100%;
  }
  .time_table tr td tr th span {
    padding: 3px;
  }
  .time_table tr td .free_box tr {
    display: block;
    margin-bottom: 10px;
  }
  .time_table tr td .free_box tr th {
    display: block;
  }
  .time_table tr td .free_box tr th .free {
    padding: 0;
  }
  .time_table tr td .free_box tr td {
    display: block;
    line-height: 1.5;
  }
}

.gray_bc {
  background-color: #fafafa;
}
.gray_bc .list {
  display: flex;
  margin: 10px 0;
}
.gray_bc .list .no {
  background-color: #bd263a;
  padding: 3px 10px;
  color: white;
  height: 32px;
}
.gray_bc .list_box .list_ul {
  display: flex;
  flex-wrap: wrap;
}
.gray_bc .list_box .list_ul li {
  padding-right: 20px;
  list-style: none;
}
.gray_bc .list_box .list_ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #bd263a;
  border-radius: 50%;
  margin-right: 5px;
  position: relative;
  top: 3px;
}
@media (min-width: 768px) {
  .gray_bc {
    padding: 20px;
  }
  .gray_bc .list .no {
    font-size: 20px;
    margin: 0 10px 10px 0;
  }
  .gray_bc .list_ul {
    margin: 10px 0 15px 30px;
  }
  .gray_bc .list03 {
    margin: 0;
    padding-left: 40px;
  }
}
@media (max-width: 767.98px) {
  .gray_bc {
    padding: 15px 10px;
  }
  .gray_bc .list .no {
    font-size: 16px;
    margin: 0 10px 5px 0;
  }
  .gray_bc .list_ul {
    margin: 0;
  }
  .gray_bc .list03 {
    margin: 0;
  }
}

.club_box {
  border: 2px solid #bd263a;
  border-radius: 5px;
  background-color: white;
}
.club_box .club .club_list {
  color: #bd263a;
  border: 1px solid;
  padding: 3px 5px;
  width: 80px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 5px;
}
.club_box .club li {
  list-style: none;
}
.club_box .attention_box {
  background-color: #e8dadc;
  padding: 15px 10px;
  border-radius: 5px;
  text-align: center;
  margin-top: 10px;
}
.club_box .attention_box .attention_hed {
  color: #bd263a;
  font-weight: bold;
}
.club_box .attention_box p {
  color: #bd263a;
  margin: 0;
}
.club_box .attention_box p small {
  color: black;
}
.club_box .attention_box p small span {
  color: #bd263a;
}
@media (min-width: 768px) {
  .club_box {
    padding: 10px 20px 20px;
    margin: 10px 10px 20px 30px;
  }
  .club_box .flex_box {
    display: flex;
    justify-content: space-around;
  }
  .club_box .flex_box .club_list {
    font-size: 16px;
  }
  .club_box .flex_box .club {
    width: 45%;
  }
  .club_box .attention_hed {
    font-size: 17px;
  }
}
@media (max-width: 767.98px) {
  .club_box {
    margin: 10px 0;
    padding: 0 10px 10px;
  }
}

.flow_ul li {
  list-style: none;
}

.red_contents {
  color: #bd263a;
}

.flex_box {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .flex_box {
    justify-content: space-around;
  }
  .flex_box img {
    width: 20%;
    margin: 10px;
  }
}
@media (max-width: 767.98px) {
  .flex_box {
    justify-content: space-between;
  }
  .flex_box img {
    width: 40%;
    margin: 10px;
  }
}

.link_box01 .off_btn {
  background-color: gray;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  text-align: center;
}
.link_box01 .off_btn::before {
  content: "";
  background-image: url(/"../../../common/images/arrow_b.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 9px;
  height: 15px;
  right: 10px;
}
@media (min-width: 768px) {
  .link_box01 {
    justify-content: flex-start;
    align-items: center;
  }
  .link_box01 .off_btn {
    width: calc(50% - 13px);
    height: 60px;
  }
  .link_box01 .off_btn::before {
    width: 9px;
    height: 15px;
    right: 10px;
  }
  .link_box01 p {
    margin: 10px;
  }
}
@media (max-width: 767.98px) {
  .link_box01 .off_btn {
    padding: 15px;
  }
}

.academic {
  background-color: #fbf3ea;
}
.academic .title {
  color: #e1882d;
}
.academic .hed_content {
  color: #e1882d;
}
@media (min-width: 768px) {
  .academic {
    padding: 30px;
  }
}
@media (max-width: 767.98px) {
  .academic {
    padding: 10px;
  }
}

.design {
  background-color: #f6f3f7;
  margin-top: 30px;
}
.design .title {
  color: #7b598b;
}
.design .hed_content {
  color: #7b598b;
}
@media (min-width: 768px) {
  .design {
    padding: 30px;
  }
}
@media (max-width: 767.98px) {
  .design {
    padding: 10px;
  }
}

.list_ul {
  display: flex;
  flex-wrap: wrap;
}
.list_ul li {
  padding-right: 20px;
  list-style: none;
}
.list_ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #e88d5b;
  border-radius: 50%;
  margin-right: 5px;
  position: relative;
  top: 3px;
}

.club_box {
  margin: 0;
}

@media (min-width: 768px) {
  .title {
    font-size: 20px;
  }
  .academic_box {
    display: flex;
    margin: 30px 0;
    justify-content: space-between;
    align-items: center;
  }
  .academic_box .academic_content {
    width: 48%;
  }
  .academic_box .academic_content .contentsS {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .academic_box .academic_content .hed_content {
    font-size: 25px;
    margin-bottom: 20px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
  }
  .list_ul {
    margin: 10px 0 15px 30px;
  }
}
@media (max-width: 767.98px) {
  .title {
    color: #e1882d;
    font-size: 18px;
  }
  .academic_box .academic_content {
    margin-bottom: 10px;
  }
  .academic_box .academic_content .contentsS {
    font-size: 18px;
    margin: 20px 0 10px;
  }
  .academic_box .academic_content .hed_content {
    font-size: 18px;
    margin-bottom: 5px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
  }
}
.card_box {
  margin-bottom: 10px;
}
.card_box .academic_card {
  border: 1px solid #e1882d;
  border-radius: 10px;
  padding: 10px;
  background-color: white;
}
.card_box .academic_card .card_hed {
  color: #e1882d;
}
.card_box .academic_card p {
  margin: 0;
  padding-top: 5px;
}
@media (min-width: 768px) {
  .card_box {
    display: flex;
    justify-content: space-between;
  }
  .card_box .academic_card {
    width: 49%;
    display: flex;
    align-items: center;
  }
  .card_box .academic_card .card_hed {
    width: 65%;
    font-size: 20px;
  }
  .card_box .academic_card .title {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .card_box .academic_card {
    margin: 10px 0;
  }
  .card_box .academic_card .card_hed {
    font-size: 16px;
  }
  .card_box .academic_card .title {
    font-size: 15px;
  }
}

.plus_box .plus {
  border: 1px solid #7b598b;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin-bottom: 10px;
}
.plus_box .hed {
  color: #7b598b;
  margin-bottom: 10px;
}
.plus_box p {
  margin: 0;
}
@media (min-width: 768px) {
  .plus_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .plus_box .plus {
    width: 32%;
  }
  .plus_box .hed {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .plus_box .hed {
    font-size: 16px;
  }
}

.attention {
  color: #cf0037;
  margin-top: 10px;
}
.attention span {
  color: black;
}
@media (min-width: 768px) {
  .attention {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .attention {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .card_box03 .card_hed {
    width: 25% !important;
  }
}/*# sourceMappingURL=event.css.map */