:root {
  --wide-width: 1000px;
  --narrow-width: 600px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ddd;
  overflow: auto;
  white-space: nowrap;
  /* display: flex; */
  /* justify-content: center; */
  background-color: black;
}

.red-char {
  color: #dd0030;
}

/* ================================ wrap ====================================== */
.wrap {
  width: var(--wide-width);
  min-height: 100vh;
  background-color: rgb(204, 209, 249);
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

section {
  width: 90%;
}

/* ================================ header ====================================== */
#header {
  background-color: transparent;
  font-size: 68px;
}

#header .title {
  text-align: center;
  border: 2px solid blue;
  border-radius: 25px;
  margin: 20px 0 5px;
  font-size: 68px;
}

#header .title  h2{
  font-size: 32px;
}

/* ================================ intro ====================================== */
#intro {
  background-color: transparent;
  width: 80%;
  padding-left: 10%;
  padding-right: 10%;
}

#intro img {
  max-height: 500px;
}

#intro .h1 {
  font-size: 42px;
  color: red;
  margin-right: 15px;
}
#intro .h2 {
  font-size: 28px;
  color: blue;
}

#intro .h3 {
  font-size: 22px;
  font-weight: bold;
}
#intro .h4 {
  font-size: 20px;
  font-weight: bold;
}

#intro .img_wrap {
  width: 600px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#intro .img-column {
  display: flex;
  flex-direction: column;
}
#intro .img_wrap img {
  width: 300px;
  clip-path: ellipse(30% 40% at 65% 50%);
  transform: translateX(-100px);
}

#intro {
  margin: 60px 0px;
}

#intro ol {
  line-height: 25px;
}


#intro .intro_area3 {
  margin: 60px 0px 10px;
}

#intro .intro_area3 ol {
  line-height: 25px;
}


#intro ol {
  margin-left: 10px;
}

#intro li {
  margin-bottom: 25px;
}


/* ================================ schedule ====================================== */
#schedule {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
}

#schedule .title {
  font-size: 36px;
  font-weight: bold;
  border: 2px solid maroon;
  border-radius: 10px;
  padding: 10px;
}

/* table 설정 */
#schedule table {
  border-collapse: collapse;
  margin: 10px 10px;
  height: 140px;
  text-align: center;
  font-size: 22px;
  font-weight: bolder;
}

#schedule th, td {
  border: 1px solid darkslateblue;
  padding: 12px 0;
}

#schedule th {
  background-color: green;
  color: white;
}

#schedule1 {
  width: 100%;
}

#schedule1 table {
  margin: 0 auto;      
  width: 80%;
}


#schedule1 .title {
  margin-bottom: 55px;
}

#schedule2 table_wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

#schedule2 table {
  width: 36%;      
}


#schedule2 .info {
  white-space: normal;
  overflow: hidden;
}

/* ================================ boast ====================================== */
#boast {
  padding: 30px;
  margin-bottom: 50px;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 5px 6px 7px;
  background-color: transparent;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.boast-block {
  border: 1px solid #aaa;
}

#boast h1 {
  font-size: 30px;
  text-align: center;
}

#boast h2 {
  text-align: center;
  font-size: 30px;
  padding-top: 30px;
}

#boast h3 {
  color: rgb(82, 19, 47);
  padding: 30px;
  text-align: center;
  font-size: 38px;
}
#boast b {
  font-size:60px;
}
#boast p {
  font-size: 18px;
  padding-left: 20px;
}

#boast .right-line {
  border-right: 2px black solid;
  padding-right: 33px;
}

#footer {
  background-color: black;
  color: white;
  line-height: 30px;
  margin-bottom: 60px;
  padding: 15px;
  border-radius: 9px;
}

/* ================================ boast ====================================== */
#level {
  display: flex;
  flex-direction: column;
  font-size: 28px;
  margin-bottom: 50px;
  gap: 10px;
}

#level mark {
  color: white;
  background-color: #dd0030;
}