@charset "UTF-8";
/*--------------------------------
Reset CSS
--------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-style: normal;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

/*--------------------------------
width
--------------------------------*/
/*--------------------------------
レスポンシブ
--------------------------------*/
/* タブレット・SP */
/* PC */
.ex-event-block {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .ex-event-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .ex-event-block p {
    width: unset;
  }
}
.ex-event-block .event-item {
  background-color: #ffea00;
  padding: 20px 60px;
  color: #333333;
}
@media (min-width: 768px) {
  .ex-event-block .event-item {
    width: 28%;
    padding: 20px 40px;
  }
}
.ex-event-block .event-item.bg-blue {
  background-color: #0191d8;
  color: #ffffff;
}
.ex-event-block .event-item .sub-title {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
  padding: 0;
}
@media (min-width: 768px) {
  .ex-event-block .event-item .sub-title {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1;
  }
}
.ex-event-block .event-item .main-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .ex-event-block .event-item .main-title {
    font-size: 26px;
  }
}
.ex-event-block .event-item .youtube-area {
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .ex-event-block .event-item .youtube-area {
    width: 100%;
    margin: 0 auto;
  }
}
.ex-event-block .event-item .youtube-area .emyoutube {
  width: 100%;
  height: 147px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .ex-event-block .event-item .youtube-area .emyoutube {
    height: 166px;
  }
}
.ex-event-block .event-item .detail-text {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0;
}
@media (min-width: 768px) {
  .ex-event-block .event-item .detail-text {
    font-size: 16px;
  }
}
