.page-header {
  margin-top: var(--global-header-height);
  padding-top: min(var(--vw-based-96), 96px);
  padding-bottom: min(var(--vw-based-144), 144px);
}

.section-contents .section-contents-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  row-gap: 24px;
}
@media (max-width: 1462px) {
  .section-contents .section-contents-header {
    row-gap: min(var(--vw-based-24), 24px);
  }
}
.section-contents .section-contents-header .header-text.main {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 0 20px #ffffff;
  text-transform: uppercase;
}
@media (max-width: 1462px) {
  .section-contents .section-contents-header .header-text.main {
    font-size: clamp(24px, var(--vw-based-56), 56px);
    letter-spacing: clamp(2px, var(--vw-based-4), 4px);
  }
}
.section-contents.location .section-contents-header .company-information {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 599px) {
  .section-contents.location .section-contents-header .company-information {
    align-items: flex-start;
  }
}
.section-contents.location .section-contents-header .company-information .company-name {
  font-weight: 700;
}
.section-contents.location .section-contents-header .company-information .company-address {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1462px) {
  .section-contents.location .section-contents-header .company-information .company-address {
    font-size: clamp(12px, var(--vw-based-16), 16px);
  }
}
@media (max-width: 599px) {
  .section-contents.location .section-contents-header .company-information .company-address {
    align-items: flex-start;
  }
}
.section-contents.location .section-contents-header .company-information.en .company-name {
  font-weight: 500;
}
.section-contents.location .section-contents-header .company-information.en .postal-code {
  display: block;
  font-size: 14px;
}
@media (max-width: 1462px) {
  .section-contents.location .section-contents-header .company-information.en .postal-code {
    font-size: clamp(10px, var(--vw-based-14), 14px);
  }
}
.section-contents.location .section-contents-wrapper .company-location {
  width: 100%;
  height: 400px;
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.section-contents.location .section-contents-wrapper .company-location iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 799px) {
  .section-contents.location .section-contents-wrapper .company-location {
    height: auto;
    aspect-ratio: 16/9;
  }
}
.section-contents.contact-form {
  margin-top: 144px;
  margin-bottom: 144px;
}
.section-contents.contact-form .section-contents-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container {
  position: relative;
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1462px) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container {
    margin-top: min(var(--vw-based-24), 24px);
  }
}
@media (max-width: 599px) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container {
    align-items: flex-start;
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 16px;
}
@media (max-width: 1462px) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container #entry {
    margin-top: min(var(--vw-based-24), 24px);
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field {
  width: 100%;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field:has(input:required) label, .section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field:has(textarea:required) label {
  position: relative;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field:has(input:required) label::after, .section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field:has(textarea:required) label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 8px -50%;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #dc143c;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field.extra-content {
  position: absolute !important;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field input,
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field textarea {
  width: 100%;
  padding: 8px 16px;
  box-sizing: border-box;
  background-color: #00262d;
  border-radius: var(--common-radius-8);
  border: solid 1px #4d8e9b;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field input::-moz-placeholder, .section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field textarea::-moz-placeholder {
  color: #809396;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field input::placeholder,
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field textarea::placeholder {
  color: #809396;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field input.error,
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field textarea.error {
  border: solid 1px #dc143c;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field input:focus,
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field textarea:focus {
  border: solid 1px #ccdfe2;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field textarea {
  display: block;
  min-height: 320px;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field p.error-message {
  display: none;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #ee8a9e;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field.privacy-confirmation {
  margin-top: 24px;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field.privacy-confirmation a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (hover: hover) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .field.privacy-confirmation a:hover {
    opacity: 0.7;
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .confirm {
  cursor: pointer;
  width: 100%;
  height: 48px;
  margin-top: 24px;
  background-color: #1f9dd4;
  border: 0;
  border-radius: var(--common-radius-8);
  color: #ffffff;
}
@media (hover: hover) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container #entry .confirm:hover {
    opacity: 0.7;
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .confirmation-message {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 599px) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container .confirmation-message {
    align-items: flex-start;
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation {
  position: relative;
  width: 100%;
  margin-top: 24px;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container {
  width: 100%;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) {
  display: flex;
  flex-direction: column;
  row-gap: 1px;
  border-radius: var(--common-radius-8);
  overflow: hidden;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data {
  width: 100%;
  display: flex;
  align-items: stretch;
  -moz-column-gap: 1px;
       column-gap: 1px;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data p {
  line-height: 1;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data .label {
  flex: 0 0 auto;
  width: 120px;
  padding: 16px 0px 16px 24px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 599px) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data .label {
    width: 88px;
    padding: 8px 0px 8px 16px;
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data .user-data {
  width: 100%;
  padding: 16px 24px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  overflow-wrap: anywhere;
}
@media (max-width: 599px) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data .user-data {
    padding: 8px 16px;
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data.inquiry-body {
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1px;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data.inquiry-body .label {
  width: 100%;
  padding-left: 24px;
}
@media (max-width: 599px) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data.inquiry-body .label {
    padding-left: 16px;
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data.inquiry-body .user-data {
  width: 100%;
  padding: 24px;
  line-height: 2;
}
@media (max-width: 599px) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation .container:nth-child(1) .form-data.inquiry-body .user-data {
    padding: 16px;
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation.en .container:nth-child(1) .form-data .label {
  width: 184px;
}
@media (max-width: 599px) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation.en .container:nth-child(1) .form-data .label {
    width: 136px;
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .data-confirmation.en .container:nth-child(1) .form-data.inquiry-body .label {
  width: 100%;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .form-control {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .form-control .submit,
.section-contents.contact-form .section-contents-wrapper .contact-form-container .form-control .back {
  cursor: pointer;
  width: 100%;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: var(--common-radius-8);
  background-color: #1f9dd4;
  border: 0;
  outline: 0;
}
@media (hover: hover) {
  .section-contents.contact-form .section-contents-wrapper .contact-form-container .form-control .submit:hover,
  .section-contents.contact-form .section-contents-wrapper .contact-form-container .form-control .back:hover {
    opacity: 0.7;
  }
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .form-control .submit {
  margin-top: 8px;
}
.section-contents.contact-form .section-contents-wrapper .contact-form-container .form-control .back {
  background-color: rgba(255, 255, 255, 0.5);
}
.section-contents.contact-form .section-contents-wrapper .form-status-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
}
@media (max-width: 599px) {
  .section-contents.contact-form .section-contents-wrapper .form-status-message {
    align-items: flex-start;
  }
}
.section-contents.contact-form .section-contents-wrapper .form-status-message div p {
  text-align: center;
  overflow-wrap: anywhere;
}
@media (max-width: 599px) {
  .section-contents.contact-form .section-contents-wrapper .form-status-message div p {
    text-align: left;
  }
}
.section-contents.contact-form .section-contents-wrapper .form-status-message div p.note {
  margin-top: 8px;
  font-size: 12px;
}
@media (max-width: 599px) {
  .section-contents.contact-form .section-contents-wrapper .form-status-message div p.note {
    font-size: 10px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  .section-contents.contact-form .section-contents-wrapper .form-status-message div p.note {
    font-size: 10px;
  }
}
.section-contents.contact-form .section-contents-wrapper .form-status-message .read-more {
  margin-top: 24px;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 38, 45, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: var(--common-radius-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}
.loading-overlay .ripples {
  position: relative;
  width: 48px;
  aspect-ratio: 1/1;
}
.loading-overlay .ripples div {
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: solid 1px #ffffff;
  opacity: 0;
  animation: ripple 2s ease 0s infinite forwards;
}
.loading-overlay .ripples div:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-overlay .ripples div:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 0.5;
  }
  75% {
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
.loading-overlay p {
  font-size: 24px;
  font-weight: 100;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .loading-overlay p {
    font-size: 18px;
  }
}
.loading-overlay p span {
  opacity: 0;
  animation-name: blink;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.loading-overlay p span:nth-child(2) {
  animation-delay: 0.4s;
}
.loading-overlay p span:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.loading-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}/*# sourceMappingURL=contact.css.map */