@charset "utf-8";

/* ==========================================================================
   Recruit / Event / Entry Form
   - event.css と併用（FV / breadcrumb / footer など共通要素を再利用）
   - SP base 480px（vw 単位）／PC は @media min-width: 1025px で上書き
   ========================================================================== */

/* ----- Header override (entry page only) ----- */
.header-nav,
.header-list-btn,
.header-list-btn-dropdown,
.sp-header-nav {
  display: none !important;
}

.l-header .header-logo-alt {
  display: none !important;
}

.l-header .header-logo {
  display: block !important;
}

html, body {
  overflow-x: hidden;
}

/* ==========================================================================
   FV（フォーム用バリエーション）
   ========================================================================== */

.l-fv--form {
  background: #f4f4f4;
  z-index: auto;
  overflow: visible;
}

.fv-glow-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-24%);
  width: 170.27vw;
  height: 196.88vw;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.6) 20%,
    rgba(255, 255, 255, 0) 45%
  );
}

.fv-logo-particles {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-24%);
  width: 170.27vw;
  height: 196.88vw;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

.l-fv--form .fv-label-txt,
.l-fv--form .fv-heading {
  color: #081a00;
}

.l-fv--form .fv-heading-sub {
  display: none;
}

/* ==========================================================================
   Form Section（SP base / 480px）
   ========================================================================== */

.l-entry-form {
  padding: 13.33vw 5vw 33.33vw;
  background: #f4f4f4;
}

.entry-description {
  font-family: "ZenKakuGothicNew", "Zen Kaku Gothic New", sans-serif;
  font-size: 3.33vw;
  font-weight: 500;
  color: #081a00;
  line-height: 1.7;
  letter-spacing: 0.48px;
  text-align: justify;
  margin: 0 0 13.33vw;
  position: relative;
  z-index: 3;
}

.entry-required-mark {
  color: #fb2c36;
  font-weight: 700;
}

.entry-form {
  display: flex;
  flex-direction: column;
  gap: 11.67vw;
  background: #fff;
  border-radius: 1.67vw;
  padding: 8.33vw 5vw 21.67vw;
  position: relative;
  z-index: 3;
}

/* ----- Field 共通 ----- */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}

.form-label {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 4.17vw;
  font-weight: 700;
  color: #081a00;
  line-height: 1.5;
  margin: 0;
}

.form-required {
  color: #fb2c36;
  margin-left: 0.4em;
}

.form-helper {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 2.92vw;
  font-weight: 400;
  color: #081a00;
  line-height: 1.5;
  margin: -1.67vw 0 0;
}

.form-helper--margin-top {
  margin-top: 0;
}

.form-helper p {
  margin: 0;
}

.form-helper-indent {
  padding-left: 3.33vw;
}

/* ----- Text Input / Select / Textarea ----- */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #f4f4f4;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 4.17vw;
  height: 13.33vw;
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 3.33vw;
  font-weight: 400;
  color: #081a00;
  line-height: 1;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #959595;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00ff6a;
}

.form-textarea {
  padding: 4.17vw;
  height: 33.33vw;
  resize: vertical;
  line-height: 1.7;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9' fill='none'><path d='M6 9L0 0H12L6 9Z' fill='%23081a00'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4.17vw center;
  padding-right: 8.33vw;
}

/* ----- 2列レイアウト（SP は縦スタック） ----- */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 3.33vw;
}

/* ----- Suffix（年/月など） ----- */
.form-input-suffix {
  display: flex;
  align-items: center;
  gap: 1.67vw;
}

.form-input-suffix .form-input,
.form-input-suffix .form-select {
  flex: 1;
  min-width: 0;
}

.form-input-suffix-txt {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 3.33vw;
  font-weight: 400;
  color: #081a00;
  line-height: 1;
  flex-shrink: 0;
}

/* ----- Radio / Checkbox ----- */
.form-radio,
.form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 3.33vw;
  cursor: pointer;
  padding: 3.33vw;
  position: relative;
  user-select: none;
}

.form-radio input,
.form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.form-radio-mark,
.form-checkbox-mark {
  width: 4.17vw;
  height: 4.17vw;
  background: #f4f4f4;
  border: 1px solid #c4c4c4;
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.form-radio-mark {
  border-radius: 50%;
}

.form-checkbox input:checked + .form-checkbox-mark {
  background: #00ff6a;
  border-color: #00ff6a;
}

.form-radio input:checked + .form-radio-mark {
  background: #f4f4f4;
  border-color: #00E35F;
}

.form-checkbox input:checked + .form-checkbox-mark::after {
  content: "";
  position: absolute;
  left: 30%;
  top: 8%;
  width: 35%;
  height: 65%;
  border: solid #081a00;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-radio input:checked + .form-radio-mark::after {
  content: "";
  position: absolute;
  inset: 22%;
  background: #00E35F;
  border-radius: 50%;
}

.form-radio input:focus-visible + .form-radio-mark,
.form-checkbox input:focus-visible + .form-checkbox-mark {
  outline: 2px solid #00ff6a;
  outline-offset: 2px;
}

.form-radio-txt,
.form-checkbox-txt {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 3.33vw;
  font-weight: 500;
  color: #081a00;
  line-height: 1.5;
}

.form-radio-group,
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1.67vw;
}

.form-other-input {
  margin-top: 2.08vw;
  padding-left: 9.33vw;
}

/* ----- 個人情報同意（中央寄せ） ----- */
.form-agree {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-checkbox--center {
  justify-content: center;
}

/* ----- Submit ----- */
.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.form-submit-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66.67vw;
  height: 17.92vw;
  background: linear-gradient(112.57deg, #00ff6a 1.61%, #00ffee 100%);
  color: #081a00;
  border: 0;
  border-radius: 10px;
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 4.17vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  box-sizing: border-box;
}

.form-submit-btn:active {
  transform: translateY(1px);
}

/* ==========================================================================
   Result（confirm / error / finish プレースホルダ）
   ========================================================================== */

.l-entry-result {
  padding: 13.33vw 5vw 16.67vw;
  background: #f4f4f4;
}

.l-entry-result--finish {
  padding: 13.33vw 5vw 33.33vw;
}

.entry-result-heading {
  font-family: "ZenKakuGothicNew", "Zen Kaku Gothic New", sans-serif;
  font-size: 5.8vw;
  font-weight: 700;
  color: #081a00;
  line-height: 1.4;
  margin: 0 0 6.67vw;
  text-align: center;
  position: relative;
  z-index: 3;
}

.entry-result-desc {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 3.33vw;
  font-weight: 500;
  color: #081a00;
  line-height: 1.8;
  margin: 0 0 10vw;
  text-align: left;
  position: relative;
  z-index: 3;
}

/* --- Confirm Container SP --- */
.form-confirm-container {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 8px;
  padding: 8.33vw 5vw 10vw;
  display: flex;
  flex-direction: column;
  gap: 11.67vw;
}

.form-confirm-item {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}

.form-confirm-label {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 4.17vw;
  font-weight: 700;
  color: #081a00;
  line-height: 1.5;
}

.form-confirm-label .form-required {
  color: #fb2c36;
}

.form-confirm-value {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 3.33vw;
  font-weight: 400;
  color: #081a00;
  line-height: 2;
  letter-spacing: 0.03em;
  word-break: break-all;
}

/* --- Confirm Buttons SP --- */
.form-confirm-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.33vw;
}

.form-confirm-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66.67vw;
  height: 17.71vw;
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 4.17vw;
  font-weight: 500;
  color: #959595;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.form-confirm-back-link:hover {
  opacity: 0.7;
}

/* --- Link Button (finish page) SP --- */
.form-link-btn-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 10vw;
  position: relative;
  z-index: 3;
}

.form-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 63.33vw;
  padding: 0 2.08vw 3.33vw 1.04vw;
  border-bottom: 2px solid #081a00;
  text-decoration: none;
  transition: opacity 0.3s;
}

.form-link-btn:hover {
  opacity: 0.7;
}

.form-link-btn-text {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 3.75vw;
  font-weight: 700;
  color: #081a00;
  letter-spacing: 0.03em;
}

.form-link-btn-arrow {
  width: 3.33vw;
  margin-right: 1.04vw;
}

/* --- Error / Validation SP --- */
.form-error {
  color: #e53e3e;
  font-size: 3vw;
  margin-top: 1.67vw;
}

.form-global-error {
  margin-bottom: 6.67vw;
  padding: 4.17vw;
  background: #fff5f5;
  border: 1px solid #e53e3e;
  border-radius: 2.08vw;
}

.form-error-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-error-list li {
  color: #e53e3e;
  font-size: 3vw;
  margin-bottom: 1.67vw;
}

.form-error-list li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   PC（min-width: 1025px / 1440px 基準）
   ========================================================================== */

@media screen and (min-width: 1025px) {

  .l-fv--form .fv-heading {
    font-size: 5.56vw;
    line-height: 1.2;
    letter-spacing: 0.04em;
  }

  .l-fv--form .fv-heading-sub {
    display: inline;
  }

  .fv-glow-overlay {
    left: auto;
    right: -19.24vw;
    top: -4.72vw;
    transform: none;
    width: 72.22vw;
    height: 82.85vw;
  }

  .fv-logo-particles {
    left: auto;
    right: -19.24vw;
    top: -4.72vw;
    transform: none;
    width: 72.22vw;
    height: 82.85vw;
  }

  /* --- Form Section PC --- */
  .l-entry-form {
    padding: 0 5.56vw 13.89vw;
    margin-top: -0.83vw;
  }

  .entry-description {
    font-size: 1.11vw;
    line-height: 1.8;
    text-align: center;
    max-width: 63.33vw;
    margin: 0 auto 7.22vw;
  }

  .entry-form {
    gap: 4.44vw;
    padding: 5.56vw 5vw 6.94vw;
    max-width: 73.33vw;
    margin: 0 auto;
    border-radius: 8px;
  }

  /* --- Field PC --- */
  .form-field { gap: 1.67vw; }

  .form-label { font-size: 1.39vw; }

  .form-helper {
    font-size: 0.97vw;
    line-height: 1.5;
    margin: -0.83vw 0 0;
  }

  .form-helper-indent {
    padding-left: 1.67vw;
  }

  /* --- Input / Select / Textarea PC --- */
  .form-input,
  .form-select {
    height: 4.44vw;
    padding: 0 1.39vw;
    font-size: 0.97vw;
    border-radius: 8px;
  }

  .form-textarea {
    height: 11.11vw;
    padding: 1.39vw;
    font-size: 0.97vw;
    border-radius: 8px;
  }

  .form-select {
    background-position: right 1.39vw center;
    padding-right: 3vw;
  }

  /* --- 2列 PC は横並び --- */
  .form-row {
    flex-direction: row;
    gap: 1.11vw;
  }

  .form-row--two > * {
    flex: 1;
    min-width: 0;
  }

  /* --- Suffix PC --- */
  .form-input-suffix { gap: 0.56vw; }
  .form-input-suffix-txt { font-size: 1.11vw; }

  /* --- Radio / Checkbox PC --- */
  .form-radio,
  .form-checkbox {
    gap: 1.11vw;
    padding: 0.56vw;
  }

  .form-radio-mark,
  .form-checkbox-mark {
    width: 1.39vw;
    height: 1.39vw;
    border-radius: 2px;
  }

  .form-radio-mark {
    border-radius: 50%;
  }

  .form-radio-txt,
  .form-checkbox-txt {
    font-size: 1.11vw;
    line-height: 1.5;
  }

  .form-radio-group,
  .form-checkbox-group { gap: 0.56vw; }

  .form-other-input {
    margin-top: 12px;
    padding-left: 36px;
  }

  /* --- Submit PC --- */
  .form-submit { margin-top: 1.11vw; }

  .form-submit-btn {
    width: 22.22vw;
    height: 5.97vw;
    font-size: 1.39vw;
    border-radius: 10px;
    background: #081a00;
    color: #f4f4f4;
  }

  .form-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #00ff6a 0.01%, #0ff 99.99%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .form-submit-btn span {
    position: relative;
    z-index: 1;
  }

  .form-submit-btn:hover::before { opacity: 1; }
  .form-submit-btn:hover { color: #081a00; }

  /* --- Result PC --- */
  .l-entry-result {
    padding: min(1.39vw, 20px) 5.56vw 9.72vw;
  }

  .l-entry-result--finish {
    padding: min(1.39vw, 20px) 5.56vw 13.89vw;
  }

  .entry-result-heading {
    font-size: 3.33vw;
    line-height: 1.4;
    margin-bottom: 2.78vw;
  }

  .entry-result-desc {
    font-size: 1.11vw;
    line-height: 1.8;
    margin-bottom: min(5.56vw, 80px);
    max-width: 63.33vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* --- Confirm Container PC --- */
  .form-confirm-container {
    max-width: min(73.33vw, 1056px);
    margin: 0 auto;
    padding: min(5.56vw, 80px) min(5vw, 72px) min(6.94vw, 100px);
    gap: min(4.44vw, 64px);
  }

  .form-confirm-item {
    gap: min(1.11vw, 16px);
  }

  .form-confirm-label {
    font-size: min(1.39vw, 20px);
  }

  .form-confirm-value {
    font-size: min(1.11vw, 16px);
  }

  /* --- Confirm Buttons PC --- */
  .form-confirm-buttons {
    gap: 0;
    padding-top: min(3.89vw, 56px);
  }

  .form-confirm-back-link {
    width: min(22.22vw, 320px);
    height: min(4.31vw, 62px);
    font-size: min(1.39vw, 20px);
  }

  /* --- Link Button (finish page) PC --- */
  .form-link-btn-wrap {
    justify-content: center;
    margin-top: min(4.17vw, 60px);
  }

  .form-link-btn {
    width: min(23.47vw, 338px);
    padding: 0 min(0.35vw, 5px) min(1.67vw, 24px) min(1.04vw, 15px);
  }

  .form-link-btn-text {
    font-size: min(1.39vw, 20px);
    letter-spacing: 0.03em;
  }

  .form-link-btn-arrow {
    width: min(0.97vw, 14px);
    margin-right: min(0.97vw, 14px);
  }

  .form-link-btn:hover {
    opacity: 1;
  }

  .form-link-btn:hover .form-link-btn-arrow {
    animation: flyInFromLeft 0.4s ease forwards;
  }

  /* --- Error / Validation PC --- */
  .form-error {
    font-size: 0.9vw;
    margin-top: 0.56vw;
  }

  .form-global-error {
    margin-bottom: 2.78vw;
    padding: 1.67vw;
    border-radius: 0.42vw;
  }

  .form-error-list li {
    font-size: 0.9vw;
    margin-bottom: 0.42vw;
  }
}


.form-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4.17vw 6.67vw;
  font-size: 3.75vw;
  font-weight: 700;
  font-family: inherit;
  color: #333;
  background: #e0e0e0;
  border: none;
  border-radius: 1.67vw;
  cursor: pointer;
  transition: opacity 0.3s;
}

.form-back-btn:hover { opacity: 0.7; }


/* ==========================================================================
   Client-side Validation Error States (SP base)
   ========================================================================== */

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  background: #ffe5e5;
  border-color: #fb2c36;
}

.form-error-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.67vw;
  margin-left: 2.5vw;
  vertical-align: middle;
}

.form-error-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75vw;
  height: 3.75vw;
  background: #fb2c36;
  border-radius: 50%;
  color: #fff;
  font-size: 2.08vw;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.form-error-badge-txt {
  color: #fb2c36;
  font-size: 2.92vw;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media screen and (min-width: 1025px) {
  .form-input.is-invalid,
  .form-select.is-invalid,
  .form-textarea.is-invalid {
    background: #ffe5e5;
    border-color: #fb2c36;
  }

  .form-error-badge {
    gap: 0.56vw;
    margin-left: 0.83vw;
  }

  .form-error-badge-icon {
    width: 1.25vw;
    height: 1.25vw;
    font-size: 0.69vw;
  }

  .form-error-badge-txt {
    font-size: 0.97vw;
  }
}


/* ==========================================================================
   Privacy Modal (SP base)
   ========================================================================== */

.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding: 5.21vw;
  padding-bottom: calc(5.21vw + env(safe-area-inset-bottom, 0px));
}

.privacy-modal.is-open {
  display: flex;
}

.privacy-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 26, 0, 0.35);
}

.privacy-modal-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: calc(100vh - 10.42vw);
  max-height: calc(100dvh - 10.42vw - env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.privacy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5vw;
  border-bottom: 1px solid #f4f4f4;
  flex-shrink: 0;
}

.privacy-modal-title {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 4.17vw;
  font-weight: 700;
  color: #081a00;
  line-height: 1.5;
}

.privacy-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5vw;
  height: 5vw;
  background: none;
  border: none;
  font-size: 5vw;
  color: #081a00;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.privacy-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 5vw;
  -webkit-overflow-scrolling: touch;
}

.privacy-modal-body p {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 2.92vw;
  font-weight: 400;
  color: #081a00;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 3.33vw;
}

.privacy-modal-body p:last-child {
  margin-bottom: 0;
}

.privacy-modal-contact {
  margin-top: 3.33vw;
}

.privacy-modal-contact p {
  margin-bottom: 0;
  line-height: 1.6;
}

.privacy-modal-contact-title {
  font-weight: 700;
}

.privacy-modal-link {
  margin-top: 3.33vw;
}

.privacy-modal-link a {
  color: #959595;
  text-decoration: underline;
  font-size: 2.92vw;
}

.privacy-modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.21vw 5vw;
  border-top: 1px solid #f4f4f4;
  flex-shrink: 0;
}

.privacy-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 12.92vw;
  background: #081a00;
  color: #f4f4f4;
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 4.17vw;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.privacy-modal-btn:hover {
  opacity: 0.85;
}

@media screen and (min-width: 1025px) {
  .privacy-modal {
    align-items: center;
    padding: 0;
  }

  .privacy-modal-dialog {
    width: 58.33vw;
    max-width: 840px;
    max-height: 80vh;
  }

  .privacy-modal-header {
    padding: 2.22vw;
  }

  .privacy-modal-title {
    font-size: 1.39vw;
  }

  .privacy-modal-close {
    width: 1.67vw;
    height: 1.67vw;
    font-size: 1.67vw;
  }

  .privacy-modal-body {
    padding: 3.33vw;
  }

  .privacy-modal-body p {
    font-size: 0.97vw;
    line-height: 2;
    margin-bottom: 1.11vw;
  }

  .privacy-modal-contact {
    margin-top: 1.11vw;
  }

  .privacy-modal-contact p {
    line-height: 0.9;
  }

  .privacy-modal-link a {
    font-size: 0.97vw;
  }

  .privacy-modal-link {
    margin-top: 1.11vw;
  }

  .privacy-modal-footer {
    padding: min(2.29vw, 33px) min(18.06vw, 260px);
  }

  .privacy-modal-btn {
    width: 22.22vw;
    max-width: 320px;
    height: min(4.31vw, 62px);
    font-size: min(1.39vw, 20px);
  }
}
