@charset "utf-8";

:root {
  --white: #fff;
  --black: #000;
  --gray: #333;
  --red: #b00204;
}

.font31 {
  font-size: 3.1rem;
}
.font32 {
  font-size: 3.2rem;
}
.font33 {
  font-size: 3.3rem;
}
.font34 {
  font-size: 3.4rem;
}
.font35 {
  font-size: 3.5rem;
}
.font36 {
  font-size: 3.6rem;
}
.font50 {
  font-size: 5rem;
}
.border {
  border: 0.5px solid var(--black);
  padding: 0 0.8rem 0.2rem;
  margin-right: 1.5rem;
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .border {
    border: 1px solid var(--black);
    font-size: 13px;
  }
}

/*上書き・打消し
---------------------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}
img {
  height: auto;
}
address {
  font-family: inherit;
}
#container {
  min-width: inherit;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", sans-serif;
  background: inherit;
}

#container a {
  color: var(--black);
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.19, 0.64, 0.4, 0.89);
}

.footer_simple {
  background-color: var(--black);
}
.footer_simple .copyright {
  color: var(--white);
}

@media screen and (min-width: 751px) {
  body {
    width: 100%;
    min-width: 1080px;
  }
  #container a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 750px) {
  #container {
    font-size: 1.3rem;
  }
  img {
    width: 100%;
  }
}

.u-min-height-100 {
  min-height: 100px;
}
.u-min-height-150 {
  min-height: 150px;
}
.u-min-height-200 {
  min-height: 200px;
}
.u-min-height-230 {
  min-height: 230px;
}

.u-margin-inline-auto {
  margin-inline: auto;
}

.u-padding-t-0 {
  padding-top: 0 !important;
}
.u-padding-r-0 {
  padding-right: 0 !important;
}
.u-padding-b-0 {
  padding-bottom: 0 !important;
}
.u-padding-l-0 {
  padding-left: 0 !important;
}

@media screen and (min-width: 751px) {
  .u-min-height-100-pc {
    min-height: 100px;
  }
  .u-min-height-150-pc {
    min-height: 150px;
  }
  .u-min-height-auto-pc {
    min-height: auto;
  }

  .u-margin-inline-auto-pc {
    margin-inline: auto;
  }

  .u-padding-t-0-pc {
    padding-top: 0 !important;
  }
  .u-padding-r-0-pc {
    padding-right: 0 !important;
  }
  .u-padding-b-0-pc {
    padding-bottom: 0 !important;
  }
  .u-padding-l-0-pc {
    padding-left: 0 !important;
  }
}

@media screen and (max-width: 750px) {
  .u-min-height-100-sp {
    min-height: 100px;
  }
  .u-min-height-150-sp {
    min-height: 150px;
  }
  .u-min-height-auto-sp {
    min-height: auto;
  }

  .u-margin-inline-auto-sp {
    margin-inline: auto;
  }

  .u-padding-t-0-sp {
    padding-top: 0 !important;
  }
  .u-padding-r-0-sp {
    padding-right: 0 !important;
  }
  .u-padding-b-0-sp {
    padding-bottom: 0 !important;
  }
  .u-padding-l-0-sp {
    padding-left: 0 !important;
  }
}

/*アウトライン
---------------------------------------------------------- */
.o-wrapper {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
.o-spread-wrapper {
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media screen and (min-width: 751px) {
  .o-block-100-pc {
    padding: 100px 0;
  }
  .o-block-90-pc {
    padding: 90px 0;
  }
  .o-block-80-pc {
    padding: 80px 0;
  }
  .o-block-70-pc {
    padding: 70px 0;
  }
  .o-block-60-pc {
    padding: 60px 0;
  }
  .o-block-50-pc {
    padding: 50px 0;
  }
  .o-block-40-pc {
    padding: 40px 0;
  }
  .o-block-30-pc {
    padding: 30px 0;
  }
  .o-block-20-pc {
    padding: 20px 0;
  }
  .o-block-10-pc {
    padding: 10px 0;
  }
}

@media screen and (max-width: 750px) {
  .o-wrapper {
    padding-right: 4%;
    padding-left: 4%;
  }
  .o-block-100-sp {
    padding: 100px 0;
  }
  .o-block-90-sp {
    padding: 90px 0;
  }
  .o-block-80-sp {
    padding: 80px 0;
  }
  .o-block-70-sp {
    padding: 70px 0;
  }
  .o-block-60-sp {
    padding: 60px 0;
  }
  .o-block-50-sp {
    padding: 50px 0;
  }
  .o-block-40-sp {
    padding: 40px 0;
  }
  .o-block-30-sp {
    padding: 30px 0;
  }
  .o-block-20-sp {
    padding: 20px 0;
  }
  .o-block-10-pc {
    padding: 10px 0;
  }
}

/*共通
---------------------------------------------------------- */
.c-display-flex {
  display: flex;
}
.c-justify-content-c {
  justify-content: center;
}
.c-align-items-c {
  align-items: center;
}
.c-flex-wrap-w {
  flex-wrap: wrap;
}
.c-flex-1-1-0per {
  flex: 1 1 0%;
}

.c-color-white {
  color: var(--white) !important;
}
.c-color-black {
  color: var(--black) !important;
}
.c-color-gray {
  color: var(--gray) !important;
}
.c-color-red {
  color: var(--red) !important;
}

.c-bg-white {
  background-color: var(--white) !important;
}
.c-bg-black {
  background-color: var(--black) !important;
}
.c-bg-gray {
  background-color: var(--gray) !important;
}
.c-bg-red {
  background-color: var(--red) !important;
}
.c-bg-texture {
  background: url(/ao-eva/img/texture.jpg) no-repeat var(--gray) center top / cover;
}

.c-line-height-xl {
  line-height: 2;
}
.c-line-height-l {
  line-height: 1.8;
}
.c-line-height-m {
  line-height: 1.6;
}
.c-line-height-s {
  line-height: 1.4;
}
.c-line-height-xs {
  line-height: 1.2;
}

.c-overflow-hidden {
  overflow: hidden;
}

.c-headline-lv2 {
  margin-bottom: 60px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.12em;
  color: var(--black);
}

.c-headline-lv3 {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 36px;
}
.c-headline-lv3::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gray);
  transform: translateY(-50%);
}
.c-headline-lv3 span {
  display: inline-block;
  position: relative;
  z-index: 3;
  padding: 8px 15px 10px 0;
  background-color: var(--white);
}

.c-headline-lv4 {
  color: var(--black);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 5px;
}

.c-headline-lv4 span {
  color: var(--white);
  font-size: 1.2rem;
  padding: 0 7px 2px 5px;
  margin-top: 4px;
  vertical-align: middle;
  display: table;
}

.c-headline-lv4 .goods {
  background-color: var(--gray);
}
.c-border-b-dotted {
  border-bottom: 2px dotted var(--gray);
}
.c-shadow {
  text-shadow: 0 0 10px white;
}
.c-notes-item,
.c-notes-item__list li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
}
.c-notes-item:not(:last-child),
.c-notes-item__list li:not(:last-child) {
  margin-bottom: 5px;
}
.c-notes-item::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.c-notes-item__list {
  margin-top: 5px;
}
.c-notes-item__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.c-youtube-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.c-youtube-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#container a .c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 380px;
  min-height: 40px;
  margin: 0 auto;
  color: var(--black);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  border: 3px solid var(--black);
  transition: all 0.4s cubic-bezier(0.19, 0.64, 0.4, 0.89);
}
.c-button__inner {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: inherit;
  padding: 10px 20px;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .c-display-flex-pc {
    display: flex;
  }
  .c-justify-content-c-pc {
    justify-content: center;
  }
  .c-align-items-c-pc {
    align-items: center;
  }
  .c-flex-wrap-w-pc {
    flex-wrap: wrap;
  }
  .c-flex-1-1-0per-pc {
    flex: 1 1 0%;
  }

  .c-line-height-xl-pc {
    line-height: 2;
  }
  .c-line-height-l-pc {
    line-height: 1.8;
  }
  .c-line-height-m-pc {
    line-height: 1.6;
  }
  .c-line-height-s-pc {
    line-height: 1.4;
  }
  .c-line-height-xs-pc {
    line-height: 1.2;
  }

  .c-button:hover {
    opacity: 0.7;
  }
  .c-link-opacity:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 750px) {
  .c-display-flex-sp {
    display: flex;
  }
  .c-justify-content-c-sp {
    justify-content: center;
  }
  .c-align-items-c-sp {
    align-items: center;
  }
  .c-flex-wrap-w-sp {
    flex-wrap: wrap;
  }
  .c-flex-1-1-0per-sp {
    flex: 1 1 0%;
  }
  .c-flex-1-1-0per-sp {
    flex: 1 1 0%;
  }

  .c-line-height-xl-sp {
    line-height: 2;
  }
  .c-line-height-l-sp {
    line-height: 1.8;
  }
  .c-line-height-m-sp {
    line-height: 1.6;
  }
  .c-line-height-s-sp {
    line-height: 1.4;
  }
  .c-line-height-xs-sp {
    line-height: 1.2;
  }

  .c-headline-lv2 {
    margin-bottom: 30px;
    font-size: 2.4rem;
    line-height: 1.3;
  }
  .c-headline-lv3 {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
  .c-headline-lv3 span {
    padding: 8px 10px 5px 0;
  }
  .c-headline-lv4 {
    line-height: 1.7;
  }
  .c-headline-lv3 span {
    margin-top: 5px;
  }
  .c-notes-item:not(:last-child),
  .c-notes-item__list li:not(:last-child) {
    margin-bottom: 3px;
  }

  .c-button {
    max-width: 90vw;
    min-height: 45px;
    font-size: 1.6rem;
  }
  .c-button__inner {
    padding: 10px;
  }
}

/*開催概要
---------------------------------------------------------- */
.event-description-box {
  padding: 50px;
  -webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}
.event-description-list dt {
  margin-bottom: 5px;
  padding: 0 15px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.event-description-list dd {
  position: relative;
  padding: 0 15px;
  font-size: 1.6rem;
}
.event-description-list dd:not(:last-child) {
  margin-bottom: 30px;
}
.event-description-list dd:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 750px) {
  .event-description-box {
    padding: 25px 15px;
  }
  .event-description-list dt {
    padding: 0 10px;
    font-size: 1.6rem;
  }
  .event-description-list dd {
    padding: 0 10px;
    font-size: 1.4rem;
  }
  .event-description-list dd:not(:last-child) {
    margin-bottom: 20px;
  }
  .event-description-list dd:not(:last-child)::after {
    bottom: -10px;
  }
}

/*チケット販売情報
---------------------------------------------------------- */
.ticket-description:not(:last-child) {
  margin-bottom: 40px;
}
.ticket-description__emphasis {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.ticket-description__emphasis table th,td {
  padding: 1rem 8rem;
  border: 1px solid var(--gray);
  text-align: center;
}
.ticket-description__emphasis table .row {
  background-color: var(--black);
  color: var(--white);
}
.ticket-description__emphasis table .col {
  background-color: var(--black);
  color: var(--white);
}
.ticket-description__sell {
  position: relative;
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 700;
}
.ticket-description__end {
  display: inline-block;
  margin-bottom: 15px;
  padding: 15px 20px;
  margin-left: 15px;
  color: var(--red);
  font-weight: 700;
  line-height: 1.3;
  font-size: 2rem;
  font-weight: 700;
  border: 2px solid var(--red);
}
.ticket-description__inner:not(:last-child) {
  margin-bottom: 25px;
}
.ticket-description__detail {
  padding: 15px;
  border: 1px solid var(--gray);
}
.ticket-description__table {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  border-collapse: collapse;
}
.ticket-description__table tbody {
  border-collapse: collapse;
  border: 1px solid var(--black);
}
.ticket-description__table tbody tr th,
.ticket-description__table tbody tr td {
  font-size: 1.8rem;
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
  vertical-align: top;
}
.ticket-description__table tbody tr td {
  width: 6em;
  text-align: right;
}
.ticket-description__table tbody tr:last-child th,
.ticket-description__table tbody tr:last-child td {
  padding-bottom: 10px;
}
.ticket-description__table .c-notes-item {
  font-size: 1.4rem;
  line-height: 1.5;
}
.ticket-description__foot {
  padding: 15px;
  border-top: 2px dotted var(--gray);
  border-bottom: 2px dotted var(--gray);
}
.ticket-btn__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.ticket-btn .btn {
  padding: 1.5rem;
  width: 350px;
  text-align: center;
  border-radius: 35px;
  color: var(--white);
  background: var(--red);
}
#container .ticket-btn a {
  text-decoration: none!important;
}

@media screen and (min-width: 751px) {
  .ticket-description__sell {
    display: inline-block;
    padding: 0 1.2em;
  }
  .ticket-description__sell::before,
  .ticket-description__sell::after {
    position: absolute;
    top: 0;
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .ticket-description__sell::before {
    content: "＜";
    left: 0;
  }
  .ticket-description__sell::after {
    content: "＞";
    right: 0;
  }
}

@media screen and (max-width: 750px) {
  .ticket-description__emphasis table th,td {
    padding: 10px 15px;
  }
  .ticket-description__emphasis {
    display: block;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .ticket-description__sell {
    margin-bottom: 10px;
    padding: 1px;
    font-size: 1.5rem;
    text-align: center;
    background-color: var(--black);
  }
  .ticket-description__sell span {
    display: block;
    padding: 10px 10px 8px 10px;
    background-color: var(--white);
    border-radius: 15px;
  }
  .ticket-description__end {
    display: block;
    width: 30vw;
    margin: 10px auto 15px;
    padding: 10px 15px;
    font-size: 1.8rem;
    text-align: center;
  }
  .ticket-description__inner:not(:last-child) {
    margin-bottom: 30px;
  }
  .ticket-description table {
    width: 100%;
  }
  .ticket-description__foot {
    padding: 10px;
  }
  .ticket-btn__wrapper {
    gap: 10px;
  }
  .ticket-btn {
    margin: auto;
  }
}

/*SNSアイコン
---------------------------------------------------------- */
.sns-icon__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -50px 0 0 -50px;
}
.sns-icon__item {
  width: calc(100% / 2 - 50px);
  margin: 50px 0 0 50px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .sns-icon__list {
    margin: -20px 0 0 -20px;
  }
  .sns-icon__item {
    width: calc(100% / 2 - 20px);
    margin: 20px 0 0 20px;
  }
  .sns-icon__item img {
    width: 65px;
    height: 65px;
  }
}

/*会場案内
---------------------------------------------------------- */
.venue-description__copy {
  margin-bottom: 20px;
  margin-left: 1em;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--);
}
.venue-description__box {
  position: relative;
  margin-bottom: 80px;
  padding: 20px 180px 20px 190px;
  background: rgba(250, 250, 250, 0.8);
  border-radius: 32px;
}
.venue-description__box img[data-venue="kv-01"] {
  position: absolute;
  left: -52px;
  bottom: -19px;
}
.venue-description__box img[data-venue="kv-02"] {
  position: absolute;
  top: -65px;
  right: -38px;
}
.venue-description__lead {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--black);
}
.venue-description__item {
  background: var(--white);
  -webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}
.venue-description__item .item-inner {
  position: relative;
  background: var(--white);
}
.venue-description__item .item-inner h3 {
  position: absolute;
  top: -20px;
  left: -27px;
}
.venue-description__item .item-inner figcaption {
  padding: 15px 20px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
}
.venue-description__item img[data-venue="shinchan-01"] {
  position: absolute;
  top: -58px;
  right: -14px;
}
.venue-description__item img[data-venue="shinchan-02"] {
  position: absolute;
  top: 80px;
  right: -20px;
}
.venue-description__item img[data-venue="shinchan-03"] {
  position: absolute;
  top: 100px;
  left: -44px;
}

@media screen and (min-width: 751px) {
  .venue-description__list {
    display: flex;
    flex-wrap: wrap;
    margin: -60px 0 0 -60px;
  }
  .venue-description__item {
    width: calc(50% - 60px);
    margin: 60px 0 0 60px;
  }
}

@media screen and (max-width: 750px) {
  .venue-description__copy {
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .venue-description__box {
    margin-bottom: 100px;
    padding: 30px 25px;
    border-radius: 26px;
  }
  .venue-description__box img[data-venue="kv-01"] {
    left: -3vw;
    bottom: -7rem;
    width: 23vw;
  }
  .venue-description__box img[data-venue="kv-02"] {
    top: -10rem;
    right: -4vw;
    width: 22.6vw;
  }
  .venue-description__lead {
    font-size: 1.4rem;
  }
  .venue-description__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .venue-description__item .item-inner {
    position: relative;
    background: var(--white);
  }
  .venue-description__item .item-inner h3 {
    position: absolute;
    top: -2rem;
    left: -4vw;
  }
  .venue-description__item .item-inner h3 img {
    width: 20vw;
  }
  .venue-description__item .item-inner figcaption {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .venue-description__item img[data-venue="shinchan-01"] {
    top: -5rem;
    right: 9vw;
    width: 34vw;
  }
  .venue-description__item img[data-venue="shinchan-02"] {
    top: 11rem;
    right: -3vw;
    width: 23vw;
  }
  .venue-description__item img[data-venue="shinchan-03"] {
    top: 12rem;
    left: -4vw;
    width: 23vw;
  }

  /*注意事項
---------------------------------------------------------- */
  #notes .c-notes-item:not(:last-child) {
    margin-bottom: 8px;
  }

  @media screen and (max-width: 750px) {
    #notes .c-notes-item:not(:last-child) {
      margin-bottom: 6px;
    }
  }

  /*終了のご挨拶
---------------------------------------------------------- */
  .ending {
    padding: 20px;
    background-color: #fce7d9;
  }
  @media screen and (max-width: 750px) {
    .ending {
      padding: 15px 2%;
    }
  }
}

.c-color-brown a {
  color: var(--black) !important;
}

.article-box {
  border: 0.5px solid var(--black);
  padding: 30px 0 45px;
}

@media screen and (max-width: 750px) {
  .article-box {
    border: 1px solid var(--black);
    padding: 1.5rem 2rem 2rem;
  }
}


  /*画像一覧
---------------------------------------------------------- */
.thumbnail-list {
  margin-top: 6rem;
}
.thumbnail-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}
#goods .thumbnail-list ul li {
  width: calc(32% - 10px);
}
.thumbnail-list img {
  margin-bottom: 1.5rem;
}
#goods .thumbnail-list img {
  border: 7px solid var(--gray);
}
@media screen and (min-width: 751px) {
  .thumbnail-list ul li {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 750px) {
  .thumbnail-list {
    margin-top: 4rem;
  }
  .thumbnail-list h3 {
    font-size: 1.8rem;
  }
  .thumbnail-list ul {
    gap: 20px 10px;
  }
  #goods .thumbnail-list ul li {
    width: calc(50% - 5px);
  }
  .thumbnail-list img {
    margin-bottom: 1rem;
  }
  #goods .thumbnail-list img {
    border: 4px solid var(--gray);
  }
}


  /*展示ブースのご紹介
---------------------------------------------------------- */
#booth {
  color: var(--white);
}
#booth h2 {
  color: var(--white);
}
#booth h3 {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--gray);
}
#booth h3::before {
  position: absolute;
  content: "";
  background-color: var(--white);
  top: 50%;
  width: calc(100% - 110px);
  height: 1px;
  left: 110px;
  z-index: 9999;
}
#booth h3 .right {
  text-align: right;
}
#booth h3 .right::before {
  position: absolute;
  content: "";
  background-color: var(--white);
  top: 50%;
  width: calc(100% - 110px);
  height: 1px;
  left: 0;
  z-index: 9999;
}
#booth h4 {
  font-size: 21px;
  margin-bottom: 5px;
  font-weight: bold;
}
.booth {
  display: flex;
  gap: 30px;
}
.booth_article {
  flex-shrink: 4;
}
@media screen and (max-width: 750px) {   
  #booth h3 {
    font-size: 24px;
  }
  #booth h3::before {
    width: calc(100% - 80px);
    left: 80px;
  }
  #booth h4 {
    font-size: 16px;
  }
  .booth {
    flex-direction: column;
  }
  .booth_img {
    margin: auto;
  }
}


  /*イベント
---------------------------------------------------------- */

.event-list dt {
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.event-list dd {
  position: relative;
  font-size: 1.6rem;
}
.event-list dd:not(:last-child) {
  margin-bottom: 30px;
}
.event-list dd::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 750px) {
  .event-box {
    padding: 25px;
  }
  .event-list dt {
    font-size: 1.6rem;
  }
  .event-list dd {
    font-size: 1.4rem;
  }
  .event-list dd:not(:last-child) {
    margin-bottom: 20px;
  }
  .event-list dd:not(:last-child)::after {
    bottom: -10px;
  }
}