@charset "utf-8";

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.fs-12 {
  font-size: 12px;
  line-height: 1.5;
}

.fs-14 {
  font-size: 14px;
  line-height: 1.5;
}

.fw-bold {
  font-weight: bold;
}

.txt-center {
  text-align: center;
}

.txt-blue {
  color: var(--clr-tertiary);
}

.txt-red {
  color: var(--clr-red);
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.justify-between {
  justify-content: space-between;
}

.flex-auto {
  flex: 0 0 auto;
}

.text-flow {
  overflow-wrap: anywhere;
}

.position-relative {
  position: relative;
}

.sub-sec:last-child {
  margin-bottom: 0;
}

.guideline {
  padding: 20px;
  border: 1px solid var(--clr-border);
}

.guideline h5 {
  font-size: 16px;
  line-height: 2;
}

.basic-info {
  display: flex;
  border: 1px solid var(--clr-border);
}

.presentation-num {
  background-color: var(--clr-bg);
  border-right: 1px solid var(--clr-border);
  width: 120px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content {
  display: flex;
  padding: 20px 10px;
  width: 100%;
}

.left-info {
  display: flex;
  border-right: 1px solid var(--clr-border);
  justify-content: center;
  align-items: center;
  width: 40%;
}

.left-info>div {
  padding-left: 40px;
}

.left-info p {
  position: absolute;
  top: -4px;
  left: 0;
}

.left-info img {
  height: 74px;
}

.presentation-num01 {
  width: 170px;
}

.right-info {
  width: 60%;
  padding-left: 45px;
}

.d-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form {
  border: 1px solid var(--clr-border);
}

.form .form-ttl {
  padding: 10px;
  background-color: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}

.form>div {
  padding: 30.5px 40px;
}

.form div h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

.form div .border-bottom {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--clr-border);
}

.pptx-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  line-height: 1.5;
  margin: 0 auto;
  padding: 11px 34px 13px;
  font-weight: 500;
  max-width: 340px;
  border-radius: 24px;
  transition: opacity .6s;
  color: var(--clr-neutral-100);
  background-color: var(--clr-primary);
}

.pptx-btn .arw-download {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 5px;
  background: url(../img/ico_download.svg) no-repeat;
  transform: translateY(16%);
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

table tr th,
table tr td {
  padding: 10px;
  border: 1px solid var(--clr-border);
  vertical-align: middle;
  text-align: center;
}

table tr th {
  background-color: var(--clr-bg);
}

.preparation-txt {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
}

.preparation-txt::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.presentation-num02 {
  width: 125px;
}

.poster-img {
  width: 284px;
  flex: 0 0 auto;
  margin: 0 40px;
}

@media (max-width: 768.9px) {
  .flex-column {
    flex-direction: column;
  }

  .main-content {
    padding-bottom: 40px;
  }

  .d-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .presentation-num {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid var(--clr-border);
  }

  .info-content {
    padding-inline: 20px;
  }

  .left-info,
  .right-info {
    width: 100%;
  }

  .left-info {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .left-info>div {
    padding-left: 0;
    width: 100%;
  }

  .left-info img {
    margin: 0 auto;
  }

  .right-info {
    padding: 0;
    font-size: 14px;
  }

  .form>div {
    padding: 30.5px 20px;
  }

  table tr th,
  table tr td {
    font-size: 14px;
    line-height: 1.5;
  }

  .poster-img {
    margin: 20px auto 0;
  }
}