@charset "UTF-8";

.header_info {
  position: relative;
  font-size: 120%;
  margin-right: 12px;
  max-width: 460px;
}

.header_info a {
  background: rgba(224, 130, 32, 0.8);
  padding: 10px;
  font-size: 14px;
  border-radius: 0.3em;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;

}

@media (max-width: 1350px) {
  .header_info {
    position: absolute;
    top: 110%;
    left: 0px;
    margin: 0;
    max-width: 460px;
  }
}

@media (max-width: 767px) {
  .header_menu_btn {
    position: initial !important;
  }


  .header_info {
    top: 110%;
    left: 0;
  }

  .header_info a {
    display: block;
    font-size: 12px;
    padding: 5px;
    line-height: 1.6;
    width: 130px;
    transform: none;
  }
}


.info-option-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.info-option-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.info-option-modal__box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 720px);
  max-height: 80vh;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
}

.info-option-modal__inner {
  position: relative;
  margin-bottom: 0;
  padding: 48px 24px 24px;
  max-height: 80vh;
  overflow-y: auto;
  box-sizing: border-box;
}

.info-option-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 9999px;
  background: #2474cc;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  appearance: none;
}

.info-option-modal__title {
  padding-right: 48px;
}

body.is-info-option-modal-open {
  overflow: hidden;
}

.side_option {
  margin-bottom: 50px;
}

.side_option__title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.side_option__content {
  line-height: 1.4;
  font-size: 14px;
}

.side_option__content p:not(:last-child) {
  margin-bottom: 10px;
}

.side_option__content a {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .side_option__title {
    font-size: 16px;
  }

  .info-option-modal__box {
    width: calc(100vw - 24px);
    max-height: 85vh;
  }

  .info-option-modal__inner {
    padding: 44px 16px 16px;
    max-height: 85vh;
  }

  .info-option-modal__close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}