.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 .guideline_content {
  width: 100%;
}

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

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

.guideline .guideline_content .img-wrap {
  width: 100%;
  margin-bottom: 20px;
}

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

.guideline .guideline_content .guideline_subtitle {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  padding: 15px;
  border-top: 2px solid #0263b5;
  border-bottom: 2px solid #0263b5;
  font-size: 22px;
  font-weight: bold;
  color: #0263b5;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .guideline .guideline_content .guideline_subtitle {
    font-size: 17px;
    padding: 15px 0;
  }
}

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

.guideline .btn-wrap .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff7676;
  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;
  }
}

/* modal-btn */
.guideline .modal-btn {
  margin: 30px auto;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.guideline .modal-btn .btn {
  display: block;
  cursor: pointer;
  width: 100%;
}

.guideline .modal-btn .btn:hover {
  opacity: 0.7;
}

.guideline .modal-btn .btn img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .guideline .modal-btn .btn img {
    width: 100%;
  }
}

/* modal-content */
.guideline .guideline-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.guideline .guideline-modal .modal-content {
  position: relative;
  width: 96%;
  max-width: 800px;
  max-height: 92vh;
  padding: 50px 25px 25px;
  background: #fff;
  overflow-y: auto;
  border-radius: 10px;
}

.guideline .guideline-modal .modal-content .close-modal {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: rgba(128, 128, 128, 0.46);
  cursor: pointer;
  float: initial;
  height: initial;
}

.guideline .guideline-modal .modal-content .modal-content-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guideline .guideline-modal .modal-content .img-wrap {
  width: 100%;
}

.guideline .guideline-modal .modal-content .btn-wrap {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  text-align: center;
}

.guideline .guideline-modal .modal-content .btn-wrap .btn-image {
  display: block;
  width: 100%;
  background-color: initial;
}

@media screen and (max-width: 991px) {
  .guideline .guideline-modal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 100dvh;
  }

  .guideline .guideline-modal .modal {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(15px, env(safe-area-inset-top, 0)) 15px max(15px, env(safe-area-inset-bottom, 0));
    box-sizing: border-box;
  }

  .guideline .guideline-modal .modal-content {
    margin: 0 auto;
    flex-shrink: 0;
    max-height: calc(100dvh - 30px - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
    padding-top: 40px;
  }
}

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

span.red {
  color: red;
}

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

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

/* type check */
.guideline .check_wrap {
  position: relative;
  width: 100%;
}

.guideline .check_img {
  width: 100%;
}

.guideline .check_img img {
  display: block;
  width: 100%;
}

.guideline .check_list-wrap {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 991px) {
  .guideline .check_list-wrap {
    top: 42%;
    width: 93%;
    padding: calc(5 / 375 * 100vw);
    border-radius: calc(15 / 375 * 100vw);
  }
}

.guideline .check_list-wrap-inner {
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FEA7C4, #FED1E2);
}

@media screen and (max-width: 991px) {
  .guideline .check_list-wrap-inner {
    border-radius: calc(15 / 375 * 100vw);
  }
}

.guideline .check_list {
  padding: 5px 20px;
  border-radius: 20px;
  background: #fff;
}

@media screen and (max-width: 991px) {
  .guideline .check_list {
    padding: calc(5 / 375 * 100vw) calc(10 / 375 * 100vw);
    border-radius: calc(15 / 375 * 100vw);
  }
}

.guideline .check_list-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 8px 25px;
}

@media screen and (max-width: 991px) {
  .guideline .check_list-item {
    gap: calc(15 / 375 * 100vw);
    padding: calc(6 / 375 * 100vw) calc(5 / 375 * 100vw);
  }
}

.guideline .check_list-item:not(:last-child) {
  border-bottom: 2px dotted #e8a8c8;
}

.guideline .check_list-item input[type='checkbox'] {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  .guideline .check_list-item input[type='checkbox'] {
    width: calc(28 / 375 * 100vw);
    height: calc(28 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
  }
}

.guideline .check_list-item input[type='checkbox'].check_1 {
  border: 2px solid #ff4da6;
}

.guideline .check_list-item input[type='checkbox'].check_2 {
  border: 2px solid #e85aab;
}

.guideline .check_list-item input[type='checkbox'].check_3 {
  border: 2px solid #c45ec8;
}

.guideline .check_list-item input[type='checkbox'].check_4 {
  border: 2px solid #9b6ad4;
}

.guideline .check_list-item input[type='checkbox'].check_5 {
  border: 2px solid #6b7ee0;
}

.guideline .check_list-item input[type='checkbox'].check_6 {
  border: 2px solid #3b7ddd;
}

.guideline .check_list-item input[type='checkbox']:checked {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

@media screen and (max-width: 991px) {
  .guideline .check_list-item input[type='checkbox']:checked {
    background-size: calc(14 / 375 * 100vw);
  }
}

.guideline .check_list-item input[type='checkbox'].check_1:checked {
  border: 2px solid #ff4da6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ff4da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
}

.guideline .check_list-item input[type='checkbox'].check_2:checked {
  border: 2px solid #e85aab;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23e85aab' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
}

.guideline .check_list-item input[type='checkbox'].check_3:checked {
  border: 2px solid #c45ec8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23c45ec8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
}

.guideline .check_list-item input[type='checkbox'].check_4:checked {
  border: 2px solid #9b6ad4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%239b6ad4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
}

.guideline .check_list-item input[type='checkbox'].check_5:checked {
  border: 2px solid #6b7ee0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%236b7ee0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
}

.guideline .check_list-item input[type='checkbox'].check_6:checked {
  border: 2px solid #3b7ddd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%233b7ddd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
}

.guideline .check_list-item label {
  flex: 1;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  cursor: pointer;
}

@media screen and (max-width: 1120px) {
  .guideline .check_list-item label {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .guideline .check_list-item label {
    font-size: calc(15 / 375 * 100vw);
  }
}

.guideline .check_modal-btn {
  margin: 70px auto 30px;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

@media screen and (max-width: 1120px) {
  .guideline .check_modal-btn {
    margin: 85px auto 30px;
  }
}

@media screen and (max-width: 991px) {
  .guideline .check_modal-btn {
    margin: 30px auto;
  }
}

/* lasttable */
.guideline_lasttable {
  width: 100%;
  margin-bottom: 10px;
}