@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, 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;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

a, img {
  border: none;
}

a {
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

:root {
  --color-white: #fff;
  --color-black3: #333;
  --color-main: #FEE1A3;
  --color-red01: #E70012;
  --color-red02: #A3020F;
}

.icon {
  fill: currentColor;
}

.color-red02 {
  color: var(--color-red02);
}

.discList {
  margin-left: 25px;
}
.discList > li {
  list-style: disc;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.flex-wrap {
  flex-wrap: nowrap;
}

.flex-column {
  flex-direction: column;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.container {
  font: 15px/1.6 verdana, 微軟正黑體;
  color: var(--color-black3);
  background: var(--color-red01);
  height: 100vh;
  flex-direction: column;
}
.container a, .container a:hover, .container a:active, .container a:visited {
  transition: all 0.3s;
  color: var(--color-black3);
}

header {
  flex-direction: column;
  align-items: center;
  padding: 30px 10px 20px;
  gap: 20px;
}
@media (min-width: 960px) {
  header {
    padding: 0;
    gap: 0;
    background: url(../images/con_bg.jpg) center top no-repeat;
  }
}
header h1 {
  color: var(--color-main);
  font-size: 50px;
  font-weight: bold;
  text-shadow: 5px 5px 5px rgba(197, 10, 25, 0.7);
}
@media (min-width: 960px) {
  header h1 {
    text-indent: 101%;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
  }
}
header .main-content > img {
  display: none;
}
@media (min-width: 960px) {
  header .main-content > img {
    display: block;
    max-width: 960px;
    height: 620px;
  }
}
header .discList {
  box-sizing: border-box;
  color: var(--color-main);
  margin-left: 0;
  text-align: center;
}
@media (min-width: 960px) {
  header .discList {
    width: 100%;
    background: #B80211;
    font-size: 20px;
    padding: 20px;
  }
}
header .discList > li {
  list-style: none;
}
header .hr-line {
  width: 100%;
  height: 1px;
  background: var(--color-main);
}
@media (min-width: 960px) {
  header .hr-line {
    display: none;
  }
}

main {
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 20px;
  background: url(../images/bg_block.jpg) #FEECCA repeat;
  border-radius: 20px 20px 0 0;
  padding: 40px 10px;
}
@media (min-width: 960px) {
  main {
    border-radius: 0;
    background: url(../images/bg_all.jpg) #FEECCA center top repeat-y;
  }
}
main h2 {
  font-size: 20px;
  font-weight: bold;
}
@media (min-width: 960px) {
  main h2 {
    font-size: 28px;
  }
}
main .main__block {
  box-sizing: border-box;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0px 0px 16px 0px rgba(234, 185, 94, 0.3);
  padding: 20px;
  gap: 20px;
  width: 100%;
}
@media (min-width: 960px) {
  main .main__block {
    max-width: 960px;
  }
}
main .text__block {
  border-radius: 5px;
  background: #EFECE6;
  margin-left: 26px;
  padding: 10px;
}

.discList.list-style {
  margin-left: 0;
  display: grid;
  gap: 10px;
}
.discList.list-style > li {
  list-style: none;
  display: flex;
  position: relative;
  padding-left: 26px;
}
.discList.list-style > li:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: url(../images/icon_list.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 4px;
}
.discList.list-style ol {
  width: 100%;
  margin-left: 25px;
}
.discList.list-style ol > li {
  list-style: disc;
}

footer {
  background: url(../images/bg_block.jpg) #FEECCA repeat;
  justify-content: center;
  padding: 40px 10px;
}
footer .logo {
  width: 160px;
}

.scrollbar {
  overflow-y: auto;
  margin-bottom: 20px;
}
.scrollbar::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.scrollbar::-webkit-scrollbar-track {
  background: #EBEBEB;
}
.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background: #b8b8b8;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #b8b8b8;
}

.schedule-wrap {
  box-sizing: border-box;
  width: 100%;
}
.schedule-wrap th, .schedule-wrap td {
  box-sizing: border-box;
  border-bottom: 1px solid var(--color-red02);
  width: 220px;
  min-width: 200px;
  vertical-align: middle;
  padding: 8px 10px;
  text-align: left;
}
.schedule-wrap .caption {
  background: #BD424C;
  color: #fff;
}
.schedule-wrap .caption .col-03 {
  color: var(--color-main);
  background: var(--color-red02);
}
.schedule-wrap .icon_orange {
  width: 30px;
  right: 5px;
  bottom: 5px;
}