.l-page_header--simple {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.l-page_header--simple .l-page_header__contents {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.l-page_header--simple .l-page_header__contents__title {
  margin: 0;
}

.l-page_header--simple .l-page_header__contents__title a {
  display: inline-block;
  text-decoration: none;
}

.l-page_header--simple .l-page_header__contents__title img {
  display: block;
  height: auto;
}

body.lp-symphony-onepla main {
  padding-top: 60px;
}

.lp-symphony-onepla-contact-form__top-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.lp-symphony-onepla-contact-form__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-symphony-onepla-contact-form__content .symp-one-application {
  padding-top: 1rem;
}

.lp-symphony-onepla-contact-form__description {
  padding: 2rem 2rem 0;
  font-size: 1.4rem;
  color: #303538;
  line-height: 1.6;
  text-align: center;
}

.symp-one-application {
  padding: 4rem 2rem;
  background-color: rgba(248, 248, 248, 0.3);
}

.symp-one-section-header {
  margin-bottom: 3rem;
}

.symp-one-form-container {
  max-width: 1000px;
  margin: 0 auto;
}

.symp-one-form-fields {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

#symp-one-preentry-form .symp-one-form-fields,
#symp-one-custom-form .symp-one-form-fields {
  gap: 0.6rem;
}

.symp-one-form-label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #303538;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.symp-one-form-required,
.symp-one-thanks-form-required {
  display: inline-block;
  background-color: #f48171;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  line-height: 1.4;
}

.symp-one-thanks-form-required {
  margin-left: 0.8rem;
}

.symp-one-form-note-text {
  font-size: 1.2rem;
  color: #6a7a6f;
  line-height: 1.5;
  margin-top: 0.4rem;
}

.symp-one-form-input,
.symp-one-thanks-form-input {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #303538;
  background-color: #fff;
  border: 1px solid #e0e2e3;
  border-radius: 6px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  font-family: inherit;
}

.symp-one-form-input:focus,
.symp-one-thanks-form-input:focus {
  outline: none;
  border-color: #008ec1;
  box-shadow: 0 0 0 3px rgba(0, 142, 193, 0.1);
}

textarea.symp-one-form-input {
  min-height: 10rem;
  resize: vertical;
}

.symp-one-form-input--error {
  border-color: #e5533e;
}

.symp-one-form-input--error:focus {
  border-color: #e5533e;
  box-shadow: 0 0 0 3px rgba(229, 83, 62, 0.1);
}

.symp-one-form-error,
.symp-one-thanks-form-error {
  font-size: 1.4rem;
  color: #e5533e;
  line-height: 1.5;
  margin-top: 0.4rem;
}

.symp-one-form-error--hidden,
.symp-one-thanks-form-error--hidden {
  display: none;
}

.symp-one-form-privacy {
  padding: 0 2.4rem;
  margin-bottom: 2.4rem;
}

.symp-one-form-privacy-text {
  font-size: 1.2rem;
  color: #6a7a6f;
  text-align: center;
  line-height: 1.6;
}

.symp-one-form-privacy-link {
  color: #008ec1;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.symp-one-form-privacy-link:hover {
  color: #007bb8;
}

.symp-one-form-submit-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 6rem;
}

.symp-one-form-submit {
  width: 32rem;
  max-width: 320px;
  height: 5.6rem;
  min-height: 56px;
  padding: 0 2.4rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, var(--gradation-primary-1-hover, #14B2DD) 0%, var(--gradation-primary-2-hover, #0079A5) 100%);
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.symp-one-form-submit:hover:not(:disabled) {
  background: linear-gradient(90deg, #e5533e 0%, #d43a2a 100%);
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.symp-one-form-submit:active:not(:disabled) {
  transform: translateY(0);
}

.symp-one-form-submit--disabled {
  background: #e0e2e3;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}

.symp-one-form-submit--disabled:hover {
  background: #e0e2e3;
  transform: none;
  box-shadow: none;
}

.symp-one-form-submit--enabled {
  background: linear-gradient(90deg, #f48171 0%, #e5533e 100%);
  color: #fff;
  cursor: pointer;
}

.symp-one-form-message {
  padding: 1.6rem 2.4rem;
  margin: 0 2.4rem 2.4rem;
  border-radius: 6px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
}

.symp-one-form-message--hidden {
  display: none;
}

.symp-one-form-message--success {
  background-color: #e1f8fb;
  color: #008ec1;
  border: 1px solid #008ec1;
}

.symp-one-form-fallback {
  margin-top: 2rem;
  text-align: center;
}

.symp-one-form-fallback-text {
  font-size: 1.4rem;
  color: #6a7a6f;
  line-height: 1.6;
}

.symp-one-form-fallback-link {
  color: #008ec1;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.symp-one-form-fallback-link:hover {
  color: #007bb8;
}

.symp-one-form-info {
  margin-top: 2rem;
}

.symp-one-form-note {
  font-size: 1.4rem;
  text-align: center;
  color: #6a7a6f;
  line-height: 1.7;
}

.symp-one-application .s-title_border {
  position: relative;
  display: block;
  text-align: center;
  align-items: center;
  color: #008ec1;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 3.3rem;
  margin: 4rem 2rem 0;
}
.symp-one-application .s-title_border::before {
  position: absolute;
  content: "";
  top: -53px;
  left: 50%;
  height: 40px;
  width: 1px;
  flex-grow: 1;
  background-color: #008ec1;
}

.symp-one-thanks {
  padding: 6rem 2rem;
  background-color: rgba(248, 248, 248, 0.3);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.symp-one-thanks-container {
  max-width: 800px;
  margin: 0 auto;
}

.symp-one-thanks-content {
  background-color: #fff;
  border: 1px solid #008ec1;
  border-radius: 8px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.symp-one-thanks-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #303538;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.symp-one-thanks-message {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #303538;
  margin-bottom: 3rem;
}

.symp-one-thanks-button-wrapper {
  margin-top: 3rem;
}

.symp-one-thanks-button,
.symp-one-modal-button {
  display: inline-block;
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #f48171 0%, #e5533e 100%);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.symp-one-thanks-button:hover,
.symp-one-modal-button:hover {
  background: linear-gradient(90deg, #e5533e 0%, #d43a2a 100%);
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.symp-one-thanks-button:active,
.symp-one-modal-button:active {
  transform: translateY(0);
}

.symp-one-thanks-message-section {
  background-color: rgba(248, 248, 248, 0.3);
}

.symp-one-thanks-message-inner {
  padding: 6rem 2rem;
  min-height: 60vh;
  max-height: 770px;
  display: flex;
  align-items: center;
}

.symp-one-thanks-message-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem;
  text-align: center;
}

.symp-one-thanks-message-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #303538;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.symp-one-thanks-message-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #303538;
  margin-bottom: 3rem;
}

.symp-one-thanks-message-btn-wrapper {
  margin-top: 3rem;
}

.symp-one-thanks-message-btn {
  display: inline-block;
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #f48171 0%, #e5533e 100%);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.symp-one-thanks-message-btn:hover {
  background: linear-gradient(90deg, #e5533e 0%, #d43a2a 100%);
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.symp-one-thanks-message-btn:active {
  transform: translateY(0);
}

.symp-one-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.symp-one-modal--active {
  opacity: 1;
  visibility: visible;
}

.symp-one-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.symp-one-modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #008ec1;
  border-radius: 8px;
  padding: 3rem;
  max-width: 800px;
  width: 90%;
  max-height: 770px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 10001;
}

.symp-one-modal--active .symp-one-modal-content {
  transform: scale(1);
}

.symp-one-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #6a7a6f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  line-height: 1;
  padding: 0;
}

.symp-one-modal-close:hover {
  color: #303538;
}

.symp-one-modal-body {
  text-align: center;
}

.symp-one-modal-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #303538;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.symp-one-modal-message {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #303538;
  margin-bottom: 2.5rem;
}

.symp-one-modal-form-wrapper {
  width: 100%;
  margin: 2.5rem 0;
  border-radius: 8px;
  overflow: visible;
  background-color: transparent;
}

.symp-one-modal-form-iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 400px;
}

.symp-one-modal-button-wrapper {
  margin-top: 2rem;
}

.symp-one-thanks-form {
  text-align: left;
  padding: 0;
}

.symp-one-thanks-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background-color: #f9f9f9;
  padding: 1.6rem;
  border-radius: 6px;
  margin-bottom: 2.4rem;
}

.symp-one-thanks-form-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #303538;
  line-height: 1.5;
  margin-bottom: 0;
}

.symp-one-thanks-form-checkbox-group,
.symp-one-thanks-form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.symp-one-thanks-form-checkbox-label,
.symp-one-thanks-form-radio-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.symp-one-thanks-form-checkbox-label:hover,
.symp-one-thanks-form-radio-label:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.symp-one-thanks-form-checkbox,
.symp-one-thanks-form-radio {
  width: 2rem !important;
  height: 2rem !important;
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #008ec1;
  display: inline-block !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  border: 2px solid #e0e2e3 !important;
  background-color: #fff !important;
  vertical-align: middle;
  opacity: 1;
  visibility: visible;
}

.symp-one-thanks-form-checkbox {
  border-radius: 4px;
  position: relative;
}

.symp-one-thanks-form-checkbox:checked {
  background-color: #008ec1 !important;
  border-color: #008ec1 !important;
}

.symp-one-thanks-form-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  display: block;
}

.symp-one-thanks-form-radio {
  border-radius: 50% !important;
  accent-color: #000;
  position: relative;
}

.symp-one-thanks-form-radio:checked {
  background-color: #fff !important;
  border-color: #000 !important;
  border-width: 2px !important;
}

.symp-one-thanks-form-radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #000;
  display: block;
}

.symp-one-thanks-form-checkbox-text,
.symp-one-thanks-form-radio-text {
  font-size: 1.5rem;
  color: #303538;
  line-height: 1.6;
  flex: 1;
}

.symp-one-thanks-form-other-input {
  margin-top: 1rem;
  margin-left: 3rem;
  padding-left: 1rem;
  border-left: 2px solid #008ec1;
}

.symp-one-thanks-form-submit-wrapper {
  margin-top: 2.4rem;
  text-align: center;
}

.symp-one-thanks-form-submit {
  width: 100%;
  padding: 1.6rem 2.4rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #f48171 0%, #e5533e 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.symp-one-thanks-form-submit:hover:not(:disabled) {
  background: linear-gradient(90deg, #e5533e 0%, #d43a2a 100%);
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.symp-one-thanks-form-submit:active:not(:disabled) {
  transform: translateY(0);
}

.symp-one-thanks-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #e0e2e3;
  color: #9ca3af;
  box-shadow: none;
}

.symp-one-thanks-form-submit:disabled:hover {
  transform: none;
  box-shadow: none;
}

.symp-one-thanks-form-success {
  text-align: center;
  padding: 2rem 0;
}

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

  main .symp-one-section-header .s-title_border {
    position: relative;
    display: block;
    text-align: center;
    color: #008ec1;
    font-size: 4.8rem;
    font-weight: bold;
    line-height: 3.3rem;
    margin: 4rem 2rem 0;
  }

  body.lp-symphony-onepla main {
    padding-top: 90px;
  }

  .symp-one-application .s-title_border {
    display: flex;
    font-size: 3rem;
    line-height: 4.2rem;
    margin: 6rem 0 4rem 0;
  }

  .symp-one-application .s-title_border::before {
    position: initial;
    width: auto;
    height: 1px;
    margin-right: 4rem;
  }

  .symp-one-application .s-title_border::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #008ec1;
    margin-left: 4rem;
  }

  .symp-one-application {
    padding: 6rem 2rem;
  }

  .lp-symphony-onepla-contact-form__content .symp-one-application {
    padding-top: 1rem;
  }

  .symp-one-form-fields {
    padding: 3.2rem 4rem;
    gap: 3.2rem;
  }

  #symp-one-preentry-form .symp-one-form-fields,
  #symp-one-custom-form .symp-one-form-fields {
    gap: 0.6rem;
  }

  .symp-one-form-field {
    gap: 1rem;
    padding: 2rem;
    border-radius: 8px;
  }

  .symp-one-form-input {
    padding: 1.4rem 1.8rem;
  }

  .symp-one-form-privacy {
    padding: 0 4rem;
    margin-bottom: 3.2rem;
  }

  .symp-one-form-submit-wrapper {
    padding: 0 4rem 3.2rem;
  }

  .symp-one-form-message {
    padding: 2rem 4rem;
    margin: 0 4rem 3.2rem;
  }

  .symp-one-thanks {
    padding: 8rem 2rem;
  }

  .symp-one-thanks-content {
    padding: 5rem 4rem;
  }

  .symp-one-thanks-title {
    font-size: 3.2rem;
  }

  .symp-one-thanks-message {
    font-size: 1.8rem;
  }

  .symp-one-thanks-button {
    padding: 2rem 4rem;
  }

  .symp-one-modal-content {
    padding: 4rem;
    max-width: 900px;
  }

  .symp-one-modal-title {
    font-size: 2.8rem;
  }

  .symp-one-modal-message {
    font-size: 1.8rem;
  }

  .symp-one-modal-form-wrapper {
    margin: 3rem 0;
  }

  .symp-one-modal-form-iframe {
    min-height: 600px;
  }

  .symp-one-modal-button {
    padding: 2rem 4rem;
  }

  .symp-one-thanks-form-field {
    gap: 1rem;
    padding: 2rem;
    margin-bottom: 3.2rem;
  }

  .symp-one-thanks-form-checkbox-text,
  .symp-one-thanks-form-radio-text {
    font-size: 1.6rem;
  }

  .symp-one-thanks-form-input {
    padding: 1.4rem 1.8rem;
  }

  .symp-one-thanks-form-submit-wrapper {
    margin-top: 3.2rem;
  }

  .symp-one-thanks-form-submit {
    padding: 2rem 3.2rem;
  }
}

@media only screen and (max-width: 1079px) {

  main .symp-one-section-header .s-title_border {
    position: relative;
    display: block;
    text-align: center;
    color: #008ec1;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 3.3rem;
    margin: 4rem 2rem 0;
  }
  .symp-one-application {
    padding: 3.2rem 1.6rem;
  }

  .symp-one-form-container {
    width: 100%;
  }

  .lp-symphony-onepla-contact-form__content .symp-one-application {
    padding-top: 1rem;
  }

  .symp-one-form-fields {
    padding: 2.4rem 1.6rem;
    gap: 2.4rem;
  }

  #symp-one-preentry-form .symp-one-form-fields,
  #symp-one-custom-form .symp-one-form-fields {
    gap: 1.8rem;
  }

  .symp-one-form-field {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
  }

  .symp-one-form-label {
    font-size: 1.5rem;
  }

  .symp-one-form-input {
    padding: 1.2rem 1.4rem;
    font-size: 1.2rem;
  }

  .symp-one-form-privacy {
    padding: 0 1.6rem;
    margin-bottom: 2.4rem;
  }

  .symp-one-form-submit-wrapper {
    padding: 0 1.6rem 2.4rem;
  }

  .symp-one-form-submit {
    padding: 1.6rem 2rem;
    font-size: 1.6rem;
  }

  .symp-one-form-message {
    padding: 1.6rem 1.6rem;
    margin: 0 1.6rem 2.4rem;
    font-size: 1.5rem;
  }

  .symp-one-form-fallback-text {
    font-size: 1.3rem;
  }

  .symp-one-form-note {
    font-size: 1.3rem;
  }

  .symp-one-thanks {
    padding: 4rem 1.6rem;
  }

  .symp-one-thanks-content {
    padding: 3rem 2rem;
  }

  .symp-one-thanks-title {
    font-size: 2.4rem;
  }

  .symp-one-thanks-message {
    font-size: 1.5rem;
  }

  .symp-one-thanks-button {
    padding: 1.6rem 2.4rem;
    font-size: 1.6rem;
    width: 100%;
    max-width: 300px;
  }

  .symp-one-modal-content {
    padding: 2.5rem 2rem;
    width: 95%;
  }

  .symp-one-modal-close {
    top: 0.8rem;
    right: 0.8rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
  }

  .symp-one-modal-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }

  .symp-one-modal-message {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .symp-one-modal-form-wrapper {
    margin: 2rem 0;
  }

  .symp-one-modal-form-iframe {
    min-height: 500px;
    height: auto;
  }

  .symp-one-modal-button {
    padding: 1.6rem 2.4rem;
    font-size: 1.6rem;
    width: 100%;
    max-width: 300px;
  }

  .symp-one-thanks-form {
    padding: 0;
  }

  .symp-one-thanks-form-field {
    padding: 1.6rem;
    margin-bottom: 2.4rem;
  }

  .symp-one-thanks-form-label {
    font-size: 1.5rem;
  }

  .symp-one-thanks-form-checkbox-text,
  .symp-one-thanks-form-radio-text {
    font-size: 1.4rem;
  }

  .symp-one-thanks-form-input {
    padding: 1.2rem 1.4rem;
    font-size: 1.6rem;
  }

  .symp-one-thanks-form-submit-wrapper {
    margin-top: 2.4rem;
  }

  .symp-one-thanks-form-submit {
    padding: 1.6rem 2rem;
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }

  @media (max-width: 767px) {
    .l-page_header--simple .l-page_header__contents {
      justify-content: flex-start;
    }

    .l-page_header--simple .l-page_header__contents__title img {
      width: 150px;
      height: auto;
    }
  }
}
