@charset "UTF-8";
:root {
  --color-red: #db0000;
  --color-pink: #f5a9a9;
  --color-blue: #1c4896;
  --color-text: #333;
  --color-bg: #f2f2f2;
  --color-border: #ddd;
  --color-button-border: #dadada;
  --color-disabled: #ccc;
  --color-disabled-border: #f1f1f1;
  --color-red--75: #db000075;
}
body {
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1240px), print {
  #main .block.html {
    padding: 0 20px;
  }
}
#main .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #main .tags {
    margin: 7px 0 0;
  }
}
#main .tags li {
  padding: 4.5px 7.5px 5px;
  background: #1C4896;
  color: #fff;
  font-size: 13px;
  line-height: 1.08;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #main .tags li {
    padding: 2.5px 5px 3px;
    font-size: 10px;
  }
}
#main .tab_pref {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  padding: 0;
  margin: 70px auto 30px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #main .tab_pref {
    gap: 7px;
    margin: 30px auto 20px;
  }
}
#main .tab_pref li button {
  display: block;
  width: 125px;
  height: 32px;
  padding: 2px 20px 3px;
  border: none;
  background-color: #FBE4E3;
  color: var(--color-today);
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #main .tab_pref li button {
    width: 99px;
    height: 33px;
    font-size: 13px;
  }
}
#main .tab_pref li button.selected {
  background-color: var(--color-today);
  color: #fff;
}
#main .tab_tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  max-width: 1200px;
  padding: 0;
  margin: 30px auto;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #main .tab_tag {
    margin: 20px auto;
  }
}
#main .tab_tag li button {
  display: block;
  padding: 4px 20px 5px;
  border: 1px solid #B3B3B3;
  border-radius: 100vmax;
  background-color: #fff;
  color: #B3B3B3;
  font-size: 13px;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #main .tab_tag li button {
    padding: 6px 14px;
    font-size: 12px;
  }
}
#main .tab_tag li button.selected {
  border-color: var(--color-today);
  background-color: var(--color-today);
  color: #fff;
}
#main .operation {
  max-width: 1200px;
  margin: 30px auto;
  font-size: 13px;
  line-height: 1.38;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #main .operation {
    margin: 20px auto;
    font-size: 12px;
    line-height: 1.5;
  }
}
#main .event_list {
  max-width: 1200px;
  padding: 60px 0 0;
  margin: 50px auto 0;
  border-top: 1px solid #B3B3B3;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #main .event_list {
    width: calc(100% - 25px);
    padding: 20px 0;
    margin: 20px auto 0;
  }
}
#main .event_list > li a {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #main .event_list > li a {
    gap: 10px;
  }
}
#main .event_list > li .thumb {
  flex: 0 0 300px;
  aspect-ratio: 1.9108280255;
}
@media screen and (max-width: 767px) {
  #main .event_list > li .thumb {
    flex: 0 0 41.4%;
  }
}
#main .event_list > li .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main .event_list > li .r {
  flex: 1 1 auto;
}
#main .event_list > li .r .period {
  margin: -1px 0 4px;
  color: #1C4896;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  #main .event_list > li .r .period {
    font-size: 11px;
  }
}
#main .event_list > li .r .title {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #main .event_list > li .r .title {
    font-size: 13px;
    line-height: 1.38;
  }
}
#main .event_list > li + li {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #main .event_list > li + li {
    margin-top: 20px;
  }
}
#main .button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 30px;
  margin: 80px auto 70px;
}
@media screen and (max-width: 767px) {
  #main .button_wrap {
    margin: 20px auto 30px;
  }
}
#main .button_wrap .calendar_button a {
  --border-color: var(--color-red);
  --bg-color: var(--color-red);
  --text-color: #fff;
  --hover-bg-color: #fff;
  --hover-text-color: var(--color-red);
  --arrow-image: url(../media/images/templete/arrow-white.svg);
  --hover-arrow-image: url(../media/images/templete/arrow-red.svg);
  display: block;
  width: 285px;
  height: 60px;
  padding: 14px 10px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  background-image: var(--arrow-image);
  background-repeat: no-repeat;
  background-position: right 30px center;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease-in, color 0.3s ease-in;
  /*&[target=_blank] {
	background-image: var(--arrow-image);
	background-repeat: no-repeat;
	background-position: right 30px center;

	&:hover {
	background-image: var(--hover-arrow-image);
	background-position: right 20px center;
}
}*/
  --border-color: var(--color-red);
  --bg-color: #fff;
  --text-color: var(--color-red);
  --hover-bg-color: var(--color-red);
  --hover-text-color: #fff;
  --arrow-image: url(../media/images/templete/arrow-red.svg);
  --hover-arrow-image: url(../media/images/templete/arrow-white.svg);
}
@media screen and (max-width: 767px) {
  #main .button_wrap .calendar_button a {
    width: 200px;
    height: 45px;
    padding: 8.5px 10px;
    font-size: 13px;
    background-size: 11px;
    background-position: right 20px center;
  }
}
#main .button_wrap .calendar_button a:hover {
  opacity: 1;
  background-color: var(--hover-bg-color);
  background-image: var(--hover-arrow-image);
  background-position: right 20px center;
  color: var(--hover-text-color);
}
@media screen and (max-width: 767px) {
  #main .button_wrap .calendar_button a:hover {
    background-position: right 15px center;
  }
}
#main .button_wrap .reserve_button a {
  --border-color: var(--color-red);
  --bg-color: var(--color-red);
  --text-color: #fff;
  --hover-bg-color: #fff;
  --hover-text-color: var(--color-red);
  --arrow-image: url(../media/images/templete/arrow-white.svg);
  --hover-arrow-image: url(../media/images/templete/arrow-red.svg);
  display: block;
  width: 285px;
  height: 60px;
  padding: 14px 10px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  background-image: var(--arrow-image);
  background-repeat: no-repeat;
  background-position: right 30px center;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease-in, color 0.3s ease-in;
  /*&[target=_blank] {
	background-image: var(--arrow-image);
	background-repeat: no-repeat;
	background-position: right 30px center;

	&:hover {
	background-image: var(--hover-arrow-image);
	background-position: right 20px center;
}
}*/
}
@media screen and (max-width: 767px) {
  #main .button_wrap .reserve_button a {
    width: 200px;
    height: 45px;
    padding: 8.5px 10px;
    font-size: 13px;
    background-size: 11px;
    background-position: right 20px center;
  }
}
#main .button_wrap .reserve_button a:hover {
  opacity: 1;
  background-color: var(--hover-bg-color);
  background-image: var(--hover-arrow-image);
  background-position: right 20px center;
  color: var(--hover-text-color);
}
@media screen and (max-width: 767px) {
  #main .button_wrap .reserve_button a:hover {
    background-position: right 15px center;
  }
}
#main .reserve {
  display: flex;
  gap: 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  #main .reserve {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  #main .reserve {
    flex-wrap: wrap;
    padding: 0 37.5px;
  }
}
#main .reserve .calendar, #main .reserve .time {
  flex: 0 0 calc((100% - 60px) / 2);
}
@media screen and (max-width: 1023px) {
  #main .reserve .calendar, #main .reserve .time {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  #main .reserve .calendar, #main .reserve .time {
    flex: 0 0 100%;
  }
}
#main .reserve .calendar {
  border: 1px solid #B3B3B3;
}
#main .reserve .time .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 17px;
  margin: 0 0 30px;
  border-bottom: 1px solid #B3B3B3;
}
@media screen and (max-width: 767px) {
  #main .reserve .time .title {
    padding-bottom: 12px;
    margin: 0 0 20px;
  }
}
#main .reserve .time .title span.main {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #main .reserve .time .title span.main {
    font-size: 15px;
  }
}
#main .reserve .time .title span.main::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 7px;
  background: url(../media/images/event/icon_time.svg) center / 100% no-repeat;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 767px) {
  #main .reserve .time .title span.main::before {
    width: 17px;
    height: 17px;
  }
}
#main .reserve .time .title span.date {
  color: var(--color-today);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #main .reserve .time .title span.date {
    font-size: 14px;
  }
}
#main .reserve .time .time_list, #main .reserve .time .guide {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
#main .reserve .time .time_list {
  gap: 14px;
}
@media screen and (max-width: 767px) {
  #main .reserve .time .time_list {
    gap: 10px;
    margin-left: 5px;
  }
}
#main .reserve .time .time_list button {
  width: 100px;
  height: 40px;
  border: 1px solid #B3B3B3;
  border-radius: 3px;
  background-color: #fff;
  font-size: 17px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #main .reserve .time .time_list button {
    width: 90px;
    height: 33px;
    font-size: 15px;
  }
}
#main .reserve .time .time_list button[disabled] {
  border-color: #DDDDDD;
  background-color: #ECECEC;
  color: #A1A1A1;
  cursor: unset;
}
#main .reserve .time .time_list button img {
  width: 14px;
  height: 14px;
  margin-right: 2px;
}
@media screen and (max-width: 767px) {
  #main .reserve .time .time_list button img {
    width: 13px;
    height: 13px;
  }
}
#main .reserve .time .guide {
  justify-content: flex-end;
  gap: 20px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  #main .reserve .time .guide {
    margin-right: 9px;
  }
}
@media screen and (max-width: 767px) {
  #main .reserve .time .guide {
    justify-content: center;
    margin-top: 14px;
  }
}
#main .reserve .time .guide li {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  #main .reserve .time .guide li {
    font-size: 12px;
  }
}
#main .reserve .time .guide li img {
  width: 11px;
  height: 11px;
}
#main .venue_list {
  max-width: 1200px;
  padding: 0;
  margin: 70px auto;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #main .venue_list {
    padding: 0 15px;
    margin: 20px auto;
  }
}
#main .venue_list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 40px 25px 25px;
  border-bottom: 1px solid #B3B3B3;
}
@media screen and (max-width: 767px) {
  #main .venue_list li {
    gap: 13px;
    padding: 25px 22px 25px 0;
  }
}
#main .venue_list li .thumb {
  width: 200px;
  aspect-ratio: 1.9047619048;
}
@media screen and (max-width: 767px) {
  #main .venue_list li .thumb {
    flex: 0 0 46.8%;
  }
}
#main .venue_list li .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main .venue_list li .r {
  flex: 1 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #main .venue_list li .r {
    display: block;
    margin-bottom: 10px;
  }
}
#main .venue_list li .r .place {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #main .venue_list li .r .place {
    margin: 0 0 10px;
    font-size: 14px;
  }
}
#main .venue_list li .r button.open {
  width: 232px;
  height: 44px;
  border: 1px solid var(--color-today);
  background-color: #fff;
  color: var(--color-today);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.33;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #main .venue_list li .r button.open {
    width: 160px;
    height: 36px;
    font-size: 12px;
  }
}
#main .venue_list + .contact {
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  #main .venue_list + .contact {
    width: calc(100% - 65px);
    padding: 25px 42px 22px;
  }
}
@media screen and (max-width: 767px) {
  #main .venue_list + .contact .address {
    padding: 18px 0 21px;
  }
}
@media screen and (max-width: 767px) {
  #main .venue_list + .contact .address:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  #main .venue_list + .contact .address dt {
    margin-bottom: 9px;
  }
}
#main .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  padding: 40px 80px;
  margin: 40px auto;
  background-color: #F5F5F5;
}
@media screen and (max-width: 1023px) {
  #main .contact {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  #main .contact {
    width: calc(100% - 30px);
    display: block;
    padding: 20px 20px 22px;
    margin: 25px auto;
    text-align: center;
  }
}
#main .contact .title {
  margin: 0;
  color: var(--color-today);
  font-size: 22px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #main .contact .title {
    margin-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  #main .contact .title {
    margin: 0 0 8px;
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) {
  #main .contact .title + .address {
    padding-left: 60px;
    position: relative;
  }
  #main .contact .title + .address::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 1px;
    height: 40px;
    background-color: #B3B3B3;
  }
}
#main .contact .address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 26px 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #main .contact .address {
    display: block;
    padding: 18px 0 10px;
  }
}
@media screen and (min-width: 768px) {
  #main .contact .address_wrap {
    margin-left: 37px;
  }
}
#main .contact .address_wrap .address {
  border-bottom: 1px solid #B3B3B3;
}
#main .contact .address dt {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #main .contact .address dt {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
#main .contact .address dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #main .contact .address dd {
    font-size: 14px;
  }
}
#main .contact .address dd a {
  color: var(--color-today);
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  #main .contact .address dd a {
    margin: 0 5px 0 3px;
  }
}
@media screen and (max-width: 767px) {
  #main .contact .address dd a {
    font-size: 17px;
  }
}
#main .contact .address dd .hour {
  font-size: 13px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #main .contact .address dd .hour {
    display: block;
    margin-top: 3px;
  }
}
#main .modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
  opacity: 0;
}
#main .modal.show {
  visibility: visible;
  opacity: 1;
  animation: modalOpen 0.2s;
}
@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#main .modal .modal_body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 900;
  width: 90%;
  max-width: 780px;
  height: 90vh;
}
#main .modal .modal_body .close_top {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: unset;
  font-size: 0;
  cursor: pointer;
}
#main .modal .modal_body .close_top::after {
  position: absolute;
  top: -6px;
  right: -2px;
  display: block;
  content: "×";
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
#main .modal .modal_body_inner {
  height: calc(100% - 31px);
  padding: 60px 20px 50px;
  margin-top: 31px;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #C3C3C3 rgba(255, 255, 255, 0);
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner {
    padding: 30px 20px;
  }
}
#main .modal .modal_body_inner .reserve {
  display: block;
  max-width: 580px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .calendar {
    padding: 16px 18px 15px;
  }
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .calendar .chead .titles .year {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .calendar .chead .titles .month {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .calendar .chead .buttons button {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .calendar .cbody .day-of-week {
    padding: 3px 0;
    margin: 0 0 5px;
  }
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .calendar .cbody .day-of-week li {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .calendar .cbody .date li {
    height: 38px;
    font-size: 14px;
  }
}
#main .modal .modal_body_inner .reserve .time {
  padding: 0 10px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .time {
    padding: 0;
    margin-top: 20px;
  }
}
#main .modal .modal_body_inner .reserve .time .title {
  padding-bottom: 18px;
  margin: 0 0 24px;
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .time .title {
    padding-bottom: 14px;
    margin: 0 0 18px;
  }
}
#main .modal .modal_body_inner .reserve .time .title .main {
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .time .title .main {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .reserve .time .title .date {
    font-size: 14px;
  }
}
#main .modal .modal_body_inner .reserve .time .guide {
  margin-right: 0;
}
#main .modal .modal_body_inner .close_bottom {
  display: block;
  width: 232px;
  height: 44px;
  margin: 50px auto 0;
  border: 1px solid var(--color-today);
  background-color: #fff;
  color: var(--color-today);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #main .modal .modal_body_inner .close_bottom {
    width: 200px;
    height: 40px;
    margin: 28px auto 0;
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  #main .topic_detail {
    padding: 0 15px;
  }
}
#main .topic_detail .topic_detail_header, #main .topic_detail .topic_contents {
  max-width: 1200px;
}
#main .topic_detail .topic_detail_header .main_image, #main .topic_detail .topic_contents .main_image {
  margin: -30px 0 50px;
  width: 100%;
}
#main .topic_detail .topic_detail_header .main_image img, #main .topic_detail .topic_contents .main_image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #main .topic_detail .topic_detail_header .main_image, #main .topic_detail .topic_contents .main_image {
    margin: 0 -20px;
  }
  #main .topic_detail .topic_detail_header .main_image img, #main .topic_detail .topic_contents .main_image img {
    width: calc(100% + 40px);
  }
}
#main .topic_detail .topic_detail_header .points, #main .topic_detail .topic_contents .points {
  margin: 0 0 50px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  #main .topic_detail .topic_detail_header .points, #main .topic_detail .topic_contents .points {
    padding: 0;
  }
}
#main .topic_detail .topic_detail_header .points .point, #main .topic_detail .topic_contents .points .point {
  margin: 0 0 20px;
  color: var(--color-red);
  font-size: 24px;
}
#main .topic_detail .topic_detail_header .points ul, #main .topic_detail .topic_contents .points ul {
  margin: 0;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  #main .topic_detail .topic_detail_header .points ul, #main .topic_detail .topic_contents .points ul {
    padding: 0;
  }
}
#main .topic_detail .topic_detail_header .points ul li, #main .topic_detail .topic_contents .points ul li {
  position: relative;
  display: flex;
  gap: 0 15px;
  align-items: flex-start;
  list-style: none;
  font-size: 18px;
  line-height: 26px;
}
#main .topic_detail .topic_detail_header .points ul li + li, #main .topic_detail .topic_contents .points ul li + li {
  margin-top: 10px;
}
#main .topic_detail .topic_detail_header .points ul li::before, #main .topic_detail .topic_contents .points ul li::before {
  display: block;
  transform: translatey(6px);
  content: "";
  aspect-ratio: 1;
  border: 1px solid var(--color-red);
  width: 20px;
}
#main .topic_detail .topic_detail_header .points ul li::after, #main .topic_detail .topic_contents .points ul li::after {
  position: absolute;
  content: "✓";
  color: var(--color-red);
  top: -3px;
  left: 3px;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  #main .topic_detail .topic_detail_header .points ul li, #main .topic_detail .topic_contents .points ul li {
    font-size: 16px;
    line-height: 22px;
  }
  #main .topic_detail .topic_detail_header .points ul li::before, #main .topic_detail .topic_contents .points ul li::before {
    flex: 0 0 20px;
  }
  #main .topic_detail .topic_detail_header .points ul li::after, #main .topic_detail .topic_contents .points ul li::after {
    top: -1px;
  }
}
#main .topic_detail .topic_detail_header .category {
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  #main .topic_detail .topic_detail_header .category {
    font-size: 13px;
  }
}
#main .topic_detail .topic_detail_header .topic_title {
  padding: 0 0 36px;
  margin: 0 0 40px;
  border-bottom: 1px solid #B3B3B3;
  background: unset;
  color: #333;
  font-size: 38px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #main .topic_detail .topic_detail_header .topic_title {
    padding: 0 0 14px;
    margin: 0 0 22px;
    font-size: 23px;
  }
}
#main .topic_detail .topic_detail_header .period {
  margin: 0;
  color: #1C4896;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #main .topic_detail .topic_detail_header .period {
    font-size: 15px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #main .topic_detail .topic_detail_header .tags {
    justify-content: center;
    margin: 18px 0 0;
  }
}
#main .topic_detail .topic_contents {
  padding-top: 0;
  border-top: none;
}
.modal_bg {
  position: absolute;
  inset: 0;
  z-index: 899;
  background: #707070;
  mix-blend-mode: multiply;
}
body.no_kv_sub .pankuzu ul.pankuzu {
  padding: 3px 20px 6px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  body.no_kv_sub .pankuzu ul.pankuzu {
    padding: 3px 15px;
  }
}
body.no_kv_sub .pankuzu ul.pankuzu li {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  body.no_kv_sub .pankuzu ul.pankuzu li {
    font-size: 11px;
  }
}
body.no_kv_sub #main {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  body.no_kv_sub #main {
    padding-top: 20px;
  }
}
/*# sourceMappingURL=./event.css.map */