﻿@charset "UTF-8";
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

ul,
ol,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
  font-family: "PingFang TC", "Noto Sans TC", sans-serif, Arial;
}

html,
body {
  font-size: large;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}
html.display,
body.display {
  overflow: hidden;
  overscroll-behavior: none;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes backMove {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2500px, 0, 0);
  }
}
.picker {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.picker .black-back {
  position: fixed;
  display: flex;
  height: 100%;
  width: 100%;
  background-color: rgba(46, 46, 46, 0.6588235294);
  z-index: 1;
}
.picker .calendar {
  max-width: 50rem;
  width: 80vw;
  border: 1px solid #aaa;
  font-family: system-ui, sans-serif;
  z-index: 2;
  border-radius: 0.5rem;
  padding: 1rem 2rem 1.5rem;
  background-color: white;
}
.picker .calendar .close {
  margin-left: auto;
  width: fit-content;
  font-size: 2rem;
  color: #b33e4b;
  cursor: pointer;
}
.picker button {
  color: #0f69b3;
  font-size: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 100%;
}
.picker .cal-header {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.picker .cal-week,
.picker .cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}
.picker .cal-week {
  border-bottom: 1px solid #f5f5f5;
  box-shadow: 0px 5px 4px -1px rgba(83, 83, 83, 0.08);
  border: 1px solid #f3f3f3;
}
.picker .cal-days {
  border: 1px solid #f3f3f3;
}
.picker .cal-week span {
  padding: 1rem;
  font-weight: bold;
}
.picker .cal-days span {
  position: relative;
  padding: 1rem;
  cursor: pointer;
  border-radius: 1.5rem;
}
.picker .cal-days span.today::after {
  background-color: #1982d9;
}
.picker .cal-days span::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  z-index: -1;
}
.picker .cal-days span:hover::after {
  background: #d0e5ff;
}
.picker .cal-days span.empty {
  pointer-events: none;
}
.picker .cal-days span.disabled {
  color: #bbb;
  pointer-events: none;
}
.picker .cal-header select {
  margin: 0.5rem;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  color: #0f69b3;
  background-color: white;
  padding: 0.5rem 1.5rem;
}

header {
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 5;
  position: relative;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px 0 rgba(38, 168, 98, 0.15);
}
header > .logo {
  display: flex;
  width: min(1280px, 100%);
  height: 60px;
  align-items: center;
}
header > .logo img {
  height: 65%;
}
header > .logo > span {
  position: relative;
  display: block;
  height: 50%;
  width: 2px;
  background-color: #a4a3a3;
  margin: 0 1rem;
}
header > .logo > h1 {
  margin-left: 0.3rem;
}
header > nav {
  display: flex;
  width: 100%;
  height: 70px;
  border-top: 1px solid #dddddd;
  justify-content: center;
}
header > nav > .menu {
  display: flex;
  width: min(1300px, 100%);
  height: 100%;
  align-items: center;
  gap: 1.2rem;
  justify-content: flex-end;
}
header > nav > .menu a {
  display: flex;
  height: 100%;
  align-items: center;
}
header > nav > .menu li {
  padding: 0.5rem 0rem;
  height: 100%;
  border-radius: 5px;
  display: flex;
  position: relative;
  align-items: center;
}
header > nav > .menu li h2 {
  transition: color 0.3s;
}
header > nav > .menu li .inputs.text {
  position: relative;
}
header > nav > .menu li .inputs.text input[type=text] {
  width: 100%;
  font-size: 1rem;
  background-color: #e0ebe8;
  padding: 0 5rem 0 0.5rem;
  border-radius: 3px;
  height: 2.5rem;
  border: 1px solid transparent;
  color: #3e667a;
  cursor: pointer;
}
header > nav > .menu li .inputs.text input[type=button] {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  height: 85%;
  aspect-ratio: 1.4;
  background-image: url("../image/serch_input.svg");
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: center;
  background-color: #13a1cc;
  transition: background-color 0.35s, background-size 0.35s;
  padding: initial;
  box-shadow: 0 4px 12px rgba(126, 202, 225, 0.85), 0 6px 24px rgba(255, 255, 255, 0.36);
  width: auto;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
}
header > nav > .menu li.date input[type=text] {
  color: #707070;
  font-size: 0.9rem;
  font-weight: 500;
  width: 8rem;
  height: 2.5rem;
  border: 1px solid #dfdfdf;
  cursor: pointer;
  padding: 0 0.5rem;
  border-radius: 5px;
}
header > nav > .menu li select {
  border-radius: 5px;
  background: white;
  border: 1px solid #dfdfdf;
  width: fit-content;
  color: #707070;
  font-size: 0.9rem;
  font-weight: 500;
  height: fit-content;
  padding: 0.5rem 0rem 0.5rem 0.8rem;
  box-shadow: rgba(34, 34, 34, 0.0509803922) 1px 1px 2px;
  cursor: pointer;
  z-index: 1;
}
header > nav.active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: white;
  box-shadow: 0 0 5px 0 rgba(14, 27, 70, 0.15);
}
header h1 {
  color: #585858;
  font-weight: bold;
  letter-spacing: 0.1rem;
  font-size: 1.1rem;
}
header .menu h4 {
  color: #707070;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

main {
  display: flex;
  position: relative;
  min-height: 100vh;
  z-index: 1;
  justify-content: center;
  align-items: flex-start;
  background-color: #f2f2f2;
}
main::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 20rem;
  background-repeat: no-repeat;
  background-image: url("../image/cloud.svg"); /* Apply the image to the pseudo-element */
  z-index: -1; /* Pushes the pseudo-element behind the content */
  transform: rotate(180deg); /* Apply the rotation */
}
main .top-back {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  min-height: 70rem;
}
main .top-back .cloud {
  width: 100%;
  height: fit-content;
  z-index: 1;
  position: absolute;
  top: 0;
}
main .top-back .cloud02 {
  width: 100%;
  height: fit-content;
  z-index: 1;
  top: 40rem;
  position: absolute;
}
main .top-back .gear {
  position: absolute;
  z-index: 2;
}
main .top-back .gear.gear01 {
  height: 11vw;
  left: 3vw;
  top: -5%;
  animation: rotation 120s linear infinite;
}
main .top-back .gear.gear02 {
  height: 13vw;
  right: 3vw;
  top: -3vh;
  animation: rotation 80s linear infinite;
}
main .top-back .gear.gear03 {
  height: 8vw;
  left: 20vw;
  top: 16vh;
  animation: rotation 40s linear infinite;
  animation-direction: reverse;
}
main .top-back .blue-back {
  display: block;
  width: 100%;
  height: 40rem;
  z-index: 0;
  top: 0;
  left: 0;
  position: relative;
  background-color: #dce9ff;
}
main .top-back .blue-back .city {
  position: absolute;
  left: 0;
  width: 5000px;
  bottom: 0;
  height: 30rem;
  background-image: url("../image/city.svg");
  background-repeat: repeat-x;
  background-size: auto;
  background-position: bottom;
  animation: backMove 300s ease infinite;
}
main .top-back .blue-back .people {
  position: absolute;
  bottom: 0;
  left: 8vh;
  height: 15rem;
}
main .innerHtml {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1300px;
  z-index: 1;
  position: relative;
  padding-bottom: 5rem;
}
main .innerHtml .tittle {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  color: white;
  flex-direction: column;
}
main .innerHtml .tittle h2 {
  position: relative;
  width: fit-content;
  background-color: #2f4168;
  padding: 0.3rem 1.5rem;
}
main .innerHtml .tittle h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: #bbd5fb;
  right: 0;
  top: 0;
  z-index: 1;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
main .innerHtml .tittle span {
  display: block;
  width: 50%;
  height: 2px;
  background-color: #2f4168;
}
main .innerHtml .lesson-lists {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2rem;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 5px 10px rgba(52, 52, 52, 0.3);
  width: 100%;
  align-items: center;
  padding: 2.5rem 2rem;
}
main .innerHtml .lesson-lists .lists-name,
main .innerHtml .lesson-lists .lists-data .data {
  display: flex;
  width: 100%;
}
main .innerHtml .lesson-lists .lists-name > div,
main .innerHtml .lesson-lists .lists-data .data > div {
  flex: 1;
  display: flex;
  justify-content: center;
  text-align: left;
  padding: 0.5rem 0.5rem;
  text-align: left;
  align-items: center;
}
main .innerHtml .lesson-lists .lists-name > div:nth-child(1),
main .innerHtml .lesson-lists .lists-data .data > div:nth-child(1) {
  flex: 0.5;
}
main .innerHtml .lesson-lists .lists-name > div:nth-child(2),
main .innerHtml .lesson-lists .lists-data .data > div:nth-child(2) {
  flex: 2.5;
}
main .innerHtml .lesson-lists .lists-name > div:nth-child(3),
main .innerHtml .lesson-lists .lists-data .data > div:nth-child(3) {
  flex: 1;
}
main .innerHtml .lesson-lists .lists-name > div:nth-child(7),
main .innerHtml .lesson-lists .lists-data .data > div:nth-child(7) {
  flex: 0.6;
}
main .innerHtml .lesson-lists .lists-name {
  background-color: #474747;
  color: white;
  font-weight: 500;
}
main .innerHtml .lesson-lists .lists-name > div {
  border-right: 1px solid white;
}
main .innerHtml .lesson-lists .lists-data {
  width: 100%;
}
main .innerHtml .lesson-lists .lists-data .list-data {
  width: 100%;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main .innerHtml .lesson-lists .lists-data .list-data .data {
  width: 100%;
  display: flex;
}
main .innerHtml .lesson-lists .lists-data .list-data .data > div {
  font-weight: 300;
  font-size: 1.01rem;
  color: #2b2b2b;
  padding-bottom: 0;
}
main .innerHtml .lesson-lists .lists-data .list-data .data > div.lesson-name {
  color: #243f5e;
  font-weight: 500;
}
main .innerHtml .lesson-lists .lists-data .list-data .bottom {
  display: flex;
  gap: 1rem;
  width: 100%;
  justify-content: flex-end;
  padding: 0 0.6rem 0 1.2rem;
}
main .innerHtml .lesson-lists .lists-data .list-data .bottom .data {
  display: flex;
  align-items: center;
  width: fit-content;
  font-weight: 300;
  font-size: 0.9rem;
  color: #2b2b2b;
}
main .innerHtml .lesson-lists .lists-data .list-data .bottom .button {
  background-color: #1ca1bf;
  display: flex;
  align-items: center;
  color: white;
  width: fit-content;
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: 5px;
  letter-spacing: 0.1rem;
  padding: 0.3rem 1rem;
  transition: transform 0.15s ease;
}
main .innerHtml .lesson-lists .lists-data .list-data:nth-child(2n) {
  background-color: #edf3fd;
}
main .innerHtml .lesson-lists.start .start-name {
  max-width: 55rem;
}
main .innerHtml .lesson-lists.start .start-name h1 {
  color: #0d1f2c;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 3rem 3rem 2rem;
}
main .innerHtml .lesson-lists.start .start-data {
  width: 100%;
  max-width: 63rem;
}
main .innerHtml .lesson-lists.start .start-data .data-tittle {
  border-bottom: 1px solid #19b6a9;
  display: flex;
  position: relative;
  padding: 0 0 0.7rem 0;
  margin-bottom: 1.5rem;
  width: 100%;
  margin-top: 5rem;
}
main .innerHtml .lesson-lists.start .start-data .data-tittle h3 {
  color: #525252;
  font-size: 1.4rem;
  font-weight: 500;
}
main .innerHtml .lesson-lists.start .start-data .data-tittle span {
  width: 20%;
  height: 2px;
  background: #19b6a9;
  position: absolute;
  top: 100%;
}
main .innerHtml .lesson-lists.start .start-data .data-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
main .innerHtml .lesson-lists.start .start-data .data-list h5 {
  font-size: 1rem;
  position: relative;
  font-weight: 400;
  color: rgb(63, 63, 63);
  margin-left: 1rem;
}
main .innerHtml .lesson-lists.start .start-data .data-list h5::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 5px;
  left: -1rem;
  top: 0;
  background-color: #19b6a9;
}
main .innerHtml .lesson-lists.start .start-data .data-list p {
  font-size: 1rem;
  font-weight: 300;
  color: #2b2b2b;
  line-height: 1.5rem;
}
main .innerHtml .lesson-lists.start .start-data .data-list img {
  max-width: 100%;
  width: fit-content;
  padding: 0 3rem;
  margin: 0 auto;
}
main .innerHtml .lesson-lists.notice .notice-tittle {
  color: rgb(121, 115, 122);
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
main .innerHtml .lesson-lists.notice .info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #79737a;
  width: 100%;
  max-width: 65rem;
}
main .innerHtml .lesson-lists.notice .buttons {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
main .innerHtml .lesson-lists.notice .buttons .button {
  background-color: #1ca1bf;
  display: flex;
  align-items: center;
  color: white;
  width: fit-content;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 5px;
  letter-spacing: 0.1rem;
  padding: 0.5rem 2rem;
  transition: transform 0.15s ease;
}
main .innerHtml .lesson-lists.notice .buttons .button.button01 {
  background-color: initial;
  color: #66868d;
}
main .innerHtml .lesson-lists.register {
  padding: 3rem 5rem;
}
main .innerHtml .lesson-lists.register .data-tittle {
  border-bottom: 1px solid #19b6a9;
  display: flex;
  position: relative;
  padding: 0 0 0.7rem 0;
  margin-bottom: 3rem;
  width: 100%;
  margin-top: 1rem;
}
main .innerHtml .lesson-lists.register .data-tittle h3 {
  color: #525252;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 3rem 3rem;
}
main .innerHtml .lesson-lists.register .data-tittle span {
  width: 20%;
  height: 2px;
  background: #19b6a9;
  position: absolute;
  top: 100%;
}
main .innerHtml .lesson-lists.register .info-lists {
  display: flex;
  flex-direction: column;
  width: 100%;
}
main .innerHtml .lesson-lists.register .info-lists .info-list {
  display: flex;
  width: 100%;
  gap: 3rem;
  margin-bottom: 2rem;
}
main .innerHtml .lesson-lists.register .info-lists .info-list .info {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  gap: 0.5rem;
}
main .innerHtml .lesson-lists.register .info-lists .info-list .info p {
  color: #363636;
  font-weight: 400;
}
main .innerHtml .lesson-lists.register .info-lists .info-list .info input[type=text] {
  color: #6e6e6e;
  font-size: 1.1rem;
  font-weight: 500;
  width: 100%;
  height: 2.5rem;
  border: 1px solid #dfdfdf;
  cursor: pointer;
  border-radius: 5px;
  padding: 0 0.5rem;
}
main .innerHtml .lesson-lists.register .info-lists .info-list .info input[type=text]::placeholder {
  color: #6e6e6e;
  font-size: 0.9rem;
  font-weight: 500;
}
main .innerHtml .lesson-lists.register .info-lists .info-list .info.adress .inputs {
  display: flex;
  gap: 1.5rem;
}
main .innerHtml .lesson-lists.register .info-lists .info-list .info.adress .inputs .adress0 {
  flex: 0.3;
}
main .innerHtml .lesson-lists.register .info-lists .info-list .info.adress .inputs .adress03 {
  flex: 1;
}
main .innerHtml .lesson-lists.register .info-lists .info-list.check-list {
  flex-direction: column;
  gap: 0.5rem;
}
main .innerHtml .lesson-lists.register .info-lists .info-list.check-list > p {
  color: #363636;
  font-weight: 400;
}
main .innerHtml .lesson-lists.register .info-lists .info-list.check-list .labels {
  display: flex;
  flex-wrap: wrap;
  white-space: nowrap;
  gap: 0.5rem;
}
main .innerHtml .lesson-lists.register .info-lists .info-list.check-list label {
  display: flex;
  cursor: pointer;
  gap: 0.3rem;
  width: fit-content;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  color: #2e2e2e;
  background-color: #b5d4ee;
}
main .innerHtml .lesson-lists.register select {
  border-radius: 5px;
  background: white;
  border: 1px solid #dfdfdf;
  width: 100%;
  color: #6b6b6b;
  font-size: 0.9rem;
  font-weight: 500;
  height: fit-content;
  padding: 0.5rem 0rem 0.5rem 0.8rem;
  box-shadow: rgba(34, 34, 34, 0.0509803922) 1px 1px 2px;
  cursor: pointer;
  z-index: 1;
}
main .innerHtml .lesson-lists.register select option {
  color: #414141;
}
main .innerHtml .lesson-lists.register .buttons {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
main .innerHtml .lesson-lists.register .buttons .button {
  background-color: #2f4168;
  display: flex;
  align-items: center;
  color: white;
  width: fit-content;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 5px;
  letter-spacing: 0.1rem;
  padding: 0.5rem 3rem;
  transition: transform 0.15s ease;
}
main .innerHtml .lesson-lists.register .buttons .button.button01 {
  background-color: initial;
  color: #66868d;
}

footer {
  display: flex;
  width: 100%;
  height: 5rem;
  position: relative;
  background-color: #c4d8f5;
}
footer p {
  text-align: center;
  width: 100%;
  font-size: 0.9rem;
  color: #5d768a;
  padding: 1rem;
}

@media only screen and (min-width: 930px) and (max-width: 1400px) {
  header > nav {
    justify-content: center;
    width: 100%;
    padding: 0 1rem;
  }
  header > nav .menu {
    overflow: scroll;
    margin: 0rem;
    justify-content: flex-start;
    width: 100%;
  }
  header > nav .menu li {
    width: fit-content;
  }
  header > nav > .menu li .inputs.text input[type=text] {
    min-width: 15rem;
  }
  main .innerHtml .lesson-lists .lists-data .list-data .bottom .data {
    margin: initial;
  }
}
@media only screen and (max-width: 930px) {
  html,
  body {
    font-size: medium;
  }
  header > nav {
    height: fit-content;
  }
  header > nav .menu {
    flex-direction: column;
    height: fit-content;
    padding: 1rem 2rem;
    gap: 0;
  }
  header > nav .menu li {
    width: 100%;
  }
  header > nav .menu li select,
  header > nav .menu li input[type=text] {
    width: 100;
    flex: 1;
  }
  header > nav.active {
    transform: translateX(0);
  }
  header > .logo {
    justify-content: center;
  }
  header > .logo h1 {
    font-size: 1.4rem;
  }
  header > .logo img {
    height: 70%;
  }
  header > .logo img:nth-child(1) {
    display: none;
  }
  header > .logo > span {
    display: none;
  }
  main .innerHtml .lesson-lists .lists-name.notRwd {
    display: none;
  }
  main .innerHtml .lesson-lists .lists-data .list-data {
    flex-direction: initial;
    flex-wrap: wrap;
    padding-bottom: 2rem;
  }
  main .innerHtml .lesson-lists .lists-data .list-data .rwd.lists-name {
    flex-direction: column;
    width: 30%;
  }
  main .innerHtml .lesson-lists .lists-data .list-data > .data {
    flex-direction: column;
    padding: 1rem;
    flex: 1;
  }
  main .innerHtml .lesson-lists .lists-data .list-data .bottom {
    flex-wrap: wrap;
  }
  main .innerHtml .lesson-lists .lists-data .list-data .bottom a {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  main .innerHtml .lesson-lists .lists-data .list-data .bottom .button {
    width: 100%;
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
    justify-content: center;
  }
  main .innerHtml .lesson-lists .lists-data .list-data .data > div {
    justify-content: flex-start;
    width: 100%;
    gap: 2rem;
  }
  main .innerHtml .lesson-lists .lists-data .list-data .data > div::before {
    content: "";
    display: block;
    min-width: 6rem;
    height: 100%;
    color: #2b2b2b;
    font-weight: 400;
  }
  main .innerHtml .lesson-lists .lists-data .list-data .data > div:nth-child(1)::before {
    content: "序號";
  }
  main .innerHtml .lesson-lists .lists-data .list-data .data > div:nth-child(2)::before {
    content: "課程名稱";
  }
  main .innerHtml .lesson-lists .lists-data .list-data .data > div:nth-child(3)::before {
    content: "主辦單位";
  }
  main .innerHtml .lesson-lists .lists-data .list-data .data > div:nth-child(4)::before {
    content: "開課日期";
  }
  main .innerHtml .lesson-lists .lists-data .list-data .data > div:nth-child(5)::before {
    content: "結束日期";
  }
  main .innerHtml .lesson-lists .lists-data .list-data .data > div:nth-child(6)::before {
    content: "報名截止日期";
  }
  main .innerHtml .lesson-lists .lists-data .list-data .data > div:nth-child(7)::before {
    content: "承辦人";
  }
  main .innerHtml .lesson-lists .lists-data .list-data .data > div:nth-child(8)::before {
    content: "開班處站";
  }
  main .innerHtml .lesson-lists .lists-data .list-data:nth-child(2n) {
    background-color: initial;
  }
  main .innerHtml .lesson-lists .lists-data .list-data:nth-child(odd) {
    background-color: #edf3fd;
  }
  main .innerHtml .lesson-lists .lists-data .list-data .bottom .data {
    margin: 0 auto;
  }
}
header > nav > .menu li .inputs.text input[type=text],
header > nav > .menu li .inputs.text {
  width: 100%;
}

main .innerHtml .lesson-lists {
  width: 95%;
  margin: 3rem auto 0;
}

main .innerHtml .lesson-lists.start .start-name h1,
main .innerHtml .lesson-lists.register .data-tittle h3 {
  padding: 1rem;
}

main .innerHtml .lesson-lists,
main .innerHtml .lesson-lists.register {
  padding: 2rem;
}

main .innerHtml .lesson-lists.start .start-data .data-tittle {
  margin-top: 2.5rem;
}

main .innerHtml .lesson-lists.start .start-data .data-list p {
  line-height: 1.8rem;
}

main .innerHtml .tittle span {
  width: 80%;
}

main .innerHtml .lesson-lists.notice .buttons,
main .innerHtml .lesson-lists.register .buttons {
  flex-direction: column;
  gap: 0.5rem;
}
main .innerHtml .lesson-lists.notice .buttons a,
main .innerHtml .lesson-lists.register .buttons a {
  width: 100%;
}
main .innerHtml .lesson-lists.notice .buttons a:nth-child(1),
main .innerHtml .lesson-lists.register .buttons a:nth-child(1) {
  order: 2;
}
main .innerHtml .lesson-lists.notice .buttons a .button,
main .innerHtml .lesson-lists.register .buttons a .button {
  width: 100%;
  justify-content: center;
}

.picker .calendar {
  width: 90%;
  margin-top: 2rem;
}

.picker .cal-header {
  flex-wrap: wrap;
  padding: 0.5rem 0;
}
.picker .cal-header .select-col {
  order: 2;
  display: flex;
  width: 100%;
  overflow-x: auto;
}
.picker .cal-header .select-col select {
  flex: 1;
  padding: 0.5rem;
}

.picker .cal-week span {
  padding: 0 0.4rem 0;
  margin: 0 0.2rem 0;
}

.picker .cal-days span {
  padding: 0.4rem 0.2rem;
  margin: 0.2rem;
}

.picker .cal-week, .picker .cal-days {
  padding: 1rem 0;
  min-width: 14rem;
}

.picker .cal-days span::after {
  width: 1.8rem;
  height: 1.8rem;
}

main .innerHtml .lesson-lists.register .info-lists .info-list {
  flex-direction: column;
  gap: 1rem;
}

main .innerHtml .lesson-lists.register .info-lists .info-list .info.adress .inputs {
  flex-direction: column;
  width: 100%;
}
main .innerHtml .lesson-lists.register .info-lists .info-list .info.adress .inputs input {
  height: 2.5rem;
  flex: initial;
}

main .innerHtml .lesson-lists.register .info-lists .info-list .info.adress .inputs .adress03 {
  flex: initial;
}

main .innerHtml .lesson-lists.register .info-lists .info-list.check-list .labels {
  flex-wrap: initial;
  white-space: auto;
  flex-direction: column;
}

main .innerHtml .lesson-lists.register .info-lists .info-list.check-list {
  margin-bottom: 0;
}

footer {
  height: fit-content;
}

/*# sourceMappingURL=common.css.map */
