.guideline {
  margin-bottom: 30px;
  width: 100%;
}

.guideline .guideline_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.guideline .guideline_wrap {
  width: 100%;
  background: #fff;
}

.guideline .guideline_wrap *:last-child {
  margin-bottom: 0;
}

.guideline .guideline_title {
  width: 100%;
}

.guideline .toggle_title {
  width: 100%;
  position: relative;
}

.guideline .toggle_title:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(../../common/img/guideline_e/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media screen and (max-width: 991px) {
  .guideline .toggle_title:after {
    width: 15px;
    height: 15px;
    right: 10px;
  }
}

.guideline .toggle_title.selected:after {
  transform: translateY(-70%) rotate(180deg);
  transition: 0.2s;
}

.guideline .guideline_content {
  width: 100%;
  padding: 25px 6%;
}

@media screen and (max-width: 500px) {
  .guideline .guideline_content {
    padding: 10px 0;
  }
}

.guideline .toggle_content {
  display: none;
}

.guideline .guideline_content p {
  margin-bottom: 1em;
}

.guideline .guideline_content p:last-child {
  margin-bottom: 0;
}

.guideline .guideline_content .img-wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* margin-bottom: 20px; */
}

.guideline .guideline_content .img-wrap img {
  display: block;
  width: 100%;
}

/* btn-wrap */
.guideline .btn-wrap {
  margin: 30px 0;
}

.guideline .btn-wrap .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e06d33;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 10px 20px;
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .guideline .btn-wrap .btn {
    font-size: 17px;
  }
}

/* utility */
span.bold {
  font-weight: bold;
}

span.red {
  color: red;
}

span.marker {
  padding-bottom: 2px;
  background: linear-gradient(transparent 50%, #fff47d 0%);
}

span.inline-block {
  display: inline-block;
}

/* lasttable */
.guideline_lasttable {
  font-size: 20px;
  font-weight: bold;
  color: #0263b5;
  /* margin-bottom: 12px; */
  padding: 8px 12px;
  text-align: left;
  /* background-color: #0263b5; */
  margin: auto;
  margin-bottom: 12px;
  width: 100%;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #0263b5;
  border-left-style: solid;
  border-left-width: 8px;
  border-left-color: #0263b5;
}

#guideline-anchor2 {
  padding-bottom: 0;
}