﻿html, body, div, span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
strong {
	font-weight: bold;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 120%;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.75;
  width: 100%;
  min-height: 100vh;
}
p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}
img {
  display: block;
}
a {
  color: #ED1E79;
  text-decoration: none;
  word-break: break-all;
}
a:hover {
  text-decoration: underline;
}
.header-wrapper {
  background: #18273d;
  width: 100%;
}
.header-wrapper .inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.go-home {
  display: block;
	width: 32px;
	height: 32px;
	background: url(../images/ico-home.png) no-repeat center center;
}
.inner-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.content-wrapper {
  background: rgb(232, 255, 255);
  width: 100%;
}
.hero-wrapper {
  background-color: #000114;
  width: 100%;
  text-align: center;
}
.hero-wrapper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 144 / 50;
  margin: 0 auto;
  max-width: 1600px;
}
.showInfo {
  width: 100%;
}
.section-wrap {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.btnRow {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.regBtn {
  border: 5px solid orange;
  color: orange;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem 2rem;
  transition: background .3s;
}
.regBtn:hover {
  background: orange;
  color: white;
  text-decoration: none;
}
/* Show Info */
.showScheduleWrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.showSchedule {
  float: left;
  margin-bottom: 20px;
  width: 50%;
}
.showInfoSubject {
  color: rgb(0, 178, 223);
  display: block;
  font-size: .8rem;
  font-weight: bold;
  width: 100%;
}
.showInfoContent {
  color: #111;
  font-size: 1.25rem;
}
.showMap {
  width: 100%;
}		
hr.hr-break {
  border: none;
  border-top: 1px solid #ddd;
  height: 1px;
  margin: 1rem 0;
}
.footer {
  background: rgb(183, 207, 216);
  width: 100%;
  padding: 1rem 0;
  text-align: right;
}
.footer-legal {
  color: #777;
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  html {
    font-size: 120%;
  }
}
@media (max-width: 768px) { 
  html {
    font-size: 105%;
  }
  .showSchedule {
    width: 100%;
  }
  .footer {
    text-align: center;
  }
}
@media (max-width: 576px) { 
  html {
    font-size: 110%;
  }
}
