html, body, div, span, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, address, code, em, img, ins,
small, strong, sub, sup, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

html {
  font-family: "Gothic A1", sans-serif;
  font-size: 62.5%;
}

.site-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(0);
  visibility: visible;
  will-change: transform;
  transition: transform 0.72s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear;
  animation: site-loader-fallback-hide 0.72s cubic-bezier(0.76, 0, 0.24, 1) 4s forwards;
}
.site-loader.is-js-ready {
  animation: none;
}
.site-loader.is-hidden {
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, 0.72s;
}
.site-loader.is-hidden::after {
  animation-play-state: paused;
}

.site-loader--initial {
  background-color: #FFFFFF;
}
.site-loader--initial::after {
  position: absolute;
  top: calc(50% + 5rem);
  left: 50%;
  width: clamp(8rem, 12vw, 14rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 66, 219, 0.8), transparent);
  transform: translateX(-50%) scaleX(0);
  animation: site-loader-line-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
  content: "";
}

.site-loader--transition {
  background: linear-gradient(135deg, rgba(249, 251, 255, 0.84), rgba(239, 244, 255, 0.7));
  backdrop-filter: blur(1.2rem) saturate(0.72) brightness(1.03);
  -webkit-backdrop-filter: blur(1.2rem) saturate(0.72) brightness(1.03);
  transition: transform 0.64s cubic-bezier(0.83, 0, 0.17, 1), visibility 0s linear;
}
.site-loader--transition::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 52%, rgba(11, 66, 219, 0.055), transparent 34%);
  pointer-events: none;
  content: "";
}
.site-loader--transition::after {
  position: relative;
  z-index: 1;
  width: 7.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 66, 219, 0.88), transparent);
  box-shadow: 0 0 1.2rem rgba(11, 66, 219, 0.16);
  transform: scaleX(0.12);
  transform-origin: center;
  animation: site-loader-line-loop 1.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  content: "";
}
.site-loader--transition .site-loader-logo {
  display: none;
}
.site-loader--transition.is-preparing {
  transform: translateY(100%);
  visibility: visible;
  transition: none;
}
.site-loader--transition.is-hidden {
  transition-delay: 0s, 0.64s;
}

.site-loader-logo {
  width: clamp(18rem, 24vw, 30rem);
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  filter: blur(0.4rem);
  transform: translateY(0.6rem);
}

.site-loader--initial .site-loader-logo {
  animation: site-loader-logo-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

@keyframes site-loader-logo-in {
  to {
    opacity: 1;
    clip-path: inset(0);
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes site-loader-line-in {
  to {
    transform: translateX(-50%) scaleX(1);
  }
}
@keyframes site-loader-line-loop {
  0%, 100% {
    opacity: 0;
    transform: scaleX(0.12);
  }
  22% {
    opacity: 0.58;
    transform: scaleX(0.45);
  }
  58% {
    opacity: 0.92;
    transform: scaleX(1);
  }
  78% {
    opacity: 0.36;
    transform: scaleX(1);
  }
}
@keyframes site-loader-fallback-hide {
  to {
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-loader {
    transition-duration: 0.01ms;
  }
  .site-loader-logo {
    opacity: 1;
    clip-path: inset(0);
    filter: none;
    transform: none;
    animation: none;
  }
  .site-loader--initial::after,
  .site-loader--transition::after {
    animation: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 10rem;
  background-color: #FFFFFF;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  will-change: transform;
}
.header.is-hidden {
  transform: translateY(-100%);
}
.header.is-scrolled {
  box-shadow: 0 0.4rem 2rem rgba(5, 27, 39, 0.08);
}
@media (max-width: 960px) {
  .header {
    height: 7rem;
  }
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
}
@media (max-width: 960px) {
  .header-inner {
    padding: 0 2.4rem;
  }
}

.header-logo a {
  display: block;
}
.header-logo img {
  width: 22.2rem;
  height: auto;
}
@media (max-width: 480px) {
  .header-logo img {
    width: 18rem;
  }
}

.g-nav {
  display: flex;
  align-items: center;
  gap: 3.4rem;
}
@media (max-width: 960px) {
  .g-nav {
    display: none;
  }
}

.g-nav-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
}

.g-nav-item a {
  font-size: 1.5rem;
  font-weight: 400;
  color: #051B27;
  transition: color 0.2s ease;
}
.g-nav-item a:hover {
  color: #0B42DB;
}

.g-nav-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.g-nav-link-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  background-color: currentColor;
  mask: url("../images/link.svg") center/contain no-repeat;
  -webkit-mask: url("../images/link.svg") center/contain no-repeat;
  transition: background-color 0.2s ease;
}

.header-cta .c-btn {
  justify-content: center;
  font-size: 1.5rem;
}
@media (max-width: 960px) {
  .header-cta {
    display: none;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  width: 3.2rem;
  height: 3.2rem;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #051B27;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 960px) {
  .burger {
    display: flex;
  }
}
.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 7rem 0 0;
  z-index: 99;
  background-color: #FFFFFF;
  padding: 4rem 2.4rem;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.is-open {
  transform: translateX(0);
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-nav-label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.mobile-nav-label-with-icon .g-nav-link-icon {
  width: 2rem;
  height: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  .header {
    transition: none;
  }
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 3.2rem;
}
.mobile-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px solid #D8E0E8;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer {
  background-color: #0B42DB;
  background-image: linear-gradient(90deg, #0B42DB 0%, #0933A8 100%);
  color: #FFFFFF;
  padding: 7.2rem 0 5rem;
}

.footer-inner {
  max-width: none;
  padding-right: 4rem;
  padding-left: 4rem;
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.2rem;
  padding-bottom: 7.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
@media (max-width: 960px) {
  .footer-cta-grid {
    grid-template-columns: 1fr;
  }
}

.footer-cta-card {
  display: flex;
  flex-direction: column;
  min-height: 38rem;
  padding: 4.8rem 7.2rem 5.2rem;
  color: #0B42DB;
  background-color: #FFFFFF;
  border-radius: 1rem;
}
@media (max-width: 960px) {
  .footer-cta-card {
    min-height: 0;
    padding: 4rem 3.2rem;
  }
}

.footer-cta-label {
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-cta-title {
  margin-bottom: 2rem;
  font-family: "Gothic A1", sans-serif;
  font-size: clamp(4rem, 4vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.footer-cta-text {
  margin-bottom: 3.2rem;
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.footer-cta-button {
  width: 31.7rem;
  max-width: 100%;
  margin-top: auto;
}

.footer-cta-link-area {
  display: grid;
  place-items: center;
  align-self: center;
  width: 4.8rem;
  height: 3.2rem;
  margin-left: 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.footer-cta-link-icon {
  width: 1.8rem;
  height: 1.8rem;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  min-height: 70rem;
  padding: 7rem 4rem 0;
}
@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 5rem;
    min-height: 0;
    padding: 6rem 0 0;
  }
}

.footer-brand {
  grid-column: 1;
  grid-row: 1;
}

.footer-logo {
  display: inline-block;
}
.footer-logo img {
  width: clamp(28rem, 32vw, 47rem);
  filter: brightness(0) invert(1);
}

.footer-tagline {
  margin-top: 5.6rem;
  font-size: clamp(2rem, 2.1vw, 3rem);
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.footer-nav {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(18rem, 1fr));
  gap: 7rem;
}
@media (max-width: 960px) {
  .footer-nav {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.footer-nav-list a {
  display: inline-flex;
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 1.5;
  transition: opacity 0.2s ease;
}
.footer-nav-list a:hover {
  opacity: 0.65;
}

.footer-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.4rem;
}
.footer-nav-sub a {
  font-size: 1.2rem;
}

.footer-nav-link-with-icon {
  align-items: center;
  gap: 0.6rem;
}
.footer-nav-link-with-icon .g-nav-link-icon {
  width: 1.8rem;
  height: 1.8rem;
}

.footer-address {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
@media (max-width: 960px) {
  .footer-address {
    grid-column: 1;
    grid-row: auto;
  }
}

.footer-bottom {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}
@media (max-width: 960px) {
  .footer-bottom {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    gap: 2rem;
  }
}
.footer-bottom a,
.footer-bottom small {
  color: inherit;
  font-size: inherit;
}
.footer-bottom a {
  transition: opacity 0.2s ease;
}
.footer-bottom a:hover {
  opacity: 0.65;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.4rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.c-btn--primary {
  background-color: #0B42DB;
  background-image: linear-gradient(90deg, #0B42DB 0%, #0933A8 100%);
  color: #FFFFFF;
}
.c-btn--primary:hover {
  background-color: #0734B3;
  background-image: none;
}

.c-btn--outline {
  background-color: transparent;
  color: #0B42DB;
  border: 2px solid #0B42DB;
}
.c-btn--outline:hover {
  background-color: #0B42DB;
  color: #FFFFFF;
}

.c-btn--dark {
  background-color: #051B27;
  color: #FFFFFF;
}
.c-btn--dark:hover {
  background-color: #2a2a2a;
}

.c-btn--arrow {
  justify-content: space-between;
  gap: 0;
  width: 23.6rem;
  min-height: 5.6rem;
  padding: 0 0 0 2rem;
  color: #FFFFFF;
  background-color: #0B42DB;
  background-image: linear-gradient(90deg, #0B42DB 0%, #0933A8 100%);
  border-radius: 0.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.c-btn--arrow:hover {
  color: #FFFFFF;
  box-shadow: 0 0.8rem 2.4rem rgba(11, 66, 219, 0.22);
}
.c-btn--arrow:hover .c-btn-arrow-icon {
  padding-left: 0.4rem;
}

.c-btn-label {
  display: block;
  height: 1.6em;
  overflow: hidden;
  line-height: 1.6;
}

.c-btn-label-track {
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-btn-label-track > span {
  flex: 0 0 auto;
  height: 1.6em;
  white-space: nowrap;
}

.c-btn:hover .c-btn-label-track {
  transform: translateY(0);
}

.c-btn-arrow-icon {
  display: grid;
  place-items: center;
  align-self: center;
  width: 4.8rem;
  height: 3.2rem;
  margin-left: 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 1.8rem;
  transition: padding-left 0.25s ease;
}

.c-btn--arrow-light {
  color: #0B42DB;
  background-color: #FFFFFF;
  background-image: none;
}
.c-btn--arrow-light .c-btn-arrow-icon {
  border-left-color: rgba(11, 66, 219, 0.35);
}
.c-btn--arrow-light:hover {
  color: #0B42DB;
  box-shadow: 0 0.8rem 2.4rem rgba(5, 27, 39, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .c-btn-label-track {
    transition: none;
  }
}
.c-section-title-en {
  color: #051B27;
  font-family: "Gothic A1", sans-serif;
  font-size: clamp(6rem, 7vw, 10rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.c-section-title-ja {
  margin: 0 0 0.6rem 4.2rem;
  color: #051B27;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.c-heading {
  margin-bottom: 6rem;
}
@media (max-width: 960px) {
  .c-heading {
    margin-bottom: 4rem;
  }
}

.c-heading-label {
  display: block;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0B42DB;
  margin-bottom: 1.2rem;
}

.c-heading-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #051B27;
}

.c-heading-desc {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #5F6F7A;
  max-width: 56rem;
  line-height: 1.9;
}

.c-card {
  background-color: #FFFFFF;
  border: 1px solid #D8E0E8;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.c-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.c-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #F7F9F4;
}
.c-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.c-card:hover .c-card-thumb img {
  transform: scale(1.04);
}

.c-card-body {
  padding: 2.4rem;
}

.c-card-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0B42DB;
  margin-bottom: 1rem;
}

.c-card-title {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: #051B27;
  margin-bottom: 1.2rem;
}

.c-card-text {
  font-size: 1.4rem;
  color: #5F6F7A;
  line-height: 1.7;
}

.c-breadcrumb {
  padding: 2rem 0;
}

.c-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.c-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  color: #5F6F7A;
}
.c-breadcrumb-item:not(:last-child)::after {
  content: "/";
  color: #D8E0E8;
}

.c-breadcrumb-link {
  color: #5F6F7A;
  transition: color 0.2s ease;
}
.c-breadcrumb-link:hover {
  color: #0B42DB;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table th, .company-table td {
  padding: 1.8rem 2.4rem;
  border-bottom: 1px solid #D8E0E8;
  font-size: 1.5rem;
  line-height: 1.7;
  vertical-align: top;
  text-align: left;
}
.company-table th {
  width: 16rem;
  font-weight: 700;
  color: #5F6F7A;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .company-table th {
    width: auto;
    display: block;
    padding-bottom: 0.4rem;
    border-bottom: none;
  }
}
@media (max-width: 960px) {
  .company-table td {
    display: block;
    padding-top: 0.4rem;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.js-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.wpcf7 {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.wpcf7 .wrap-form-contact {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.wpcf7 .item-form-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.wpcf7 .item-form-contact:has([name=number-year]) .detail-form-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wpcf7 .item-form-contact:has([name=number-year]) .detail-form-contact input[type=number] {
  flex: 1;
  text-align: center;
}
.wpcf7 .item-form-contact:has([name=number-year]) .detail-form-contact span {
  font-size: 16px;
  color: #051B27;
  white-space: nowrap;
}
.wpcf7 .heading-form-contact {
  font-size: 1.6rem;
  font-weight: 600;
  color: #051B27;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wpcf7 .contact-label {
  color: #FFFFFF;
  background-color: #0B42DB;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  margin-left: 1rem;
}
.wpcf7 .detail-form-contact input[type=text],
.wpcf7 .detail-form-contact input[type=email],
.wpcf7 .detail-form-contact input[type=tel],
.wpcf7 .detail-form-contact input[type=url],
.wpcf7 .detail-form-contact input[type=number],
.wpcf7 .detail-form-contact select,
.wpcf7 .detail-form-contact textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 6.8rem;
  padding: 1.8rem 2rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  color: #051B27;
  background-color: #FFFFFF;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.wpcf7 .detail-form-contact input[type=text]:focus,
.wpcf7 .detail-form-contact input[type=email]:focus,
.wpcf7 .detail-form-contact input[type=tel]:focus,
.wpcf7 .detail-form-contact input[type=url]:focus,
.wpcf7 .detail-form-contact input[type=number]:focus,
.wpcf7 .detail-form-contact select:focus,
.wpcf7 .detail-form-contact textarea:focus {
  outline: none;
  border-color: #0B42DB;
  box-shadow: 0 0 0 0.2rem rgba(11, 66, 219, 0.1);
}
.wpcf7 .detail-form-contact input[type=text]::placeholder,
.wpcf7 .detail-form-contact input[type=email]::placeholder,
.wpcf7 .detail-form-contact input[type=tel]::placeholder,
.wpcf7 .detail-form-contact input[type=url]::placeholder,
.wpcf7 .detail-form-contact input[type=number]::placeholder,
.wpcf7 .detail-form-contact select::placeholder,
.wpcf7 .detail-form-contact textarea::placeholder {
  color: #999;
  font-size: 14px;
}
.wpcf7 .detail-form-contact select {
  cursor: pointer;
  background-image: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}
.wpcf7 .detail-form-contact textarea {
  min-height: 23rem;
  resize: vertical;
}
.wpcf7 .detail-form-contact .wpcf7-radio {
  display: flex;
  gap: 16px;
}
.wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #0B42DB;
}
.wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  color: #051B27;
  cursor: pointer;
  margin: 0;
  padding-bottom: 5px;
}
.wpcf7 .detail-form-contact input[type=file] {
  padding: 12px 16px;
  border: 2px dashed #ddd;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wpcf7 .detail-form-contact input[type=file]:hover {
  border-color: #0B42DB;
  background-color: rgba(11, 66, 219, 0.05);
}
.wpcf7 .detail-form-contact input[type=file]::file-selector-button {
  background-color: #0B42DB;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.wpcf7 .detail-form-contact input[type=file]::file-selector-button:hover {
  background-color: #0734B3;
}
.wpcf7 .center {
  margin: 3.2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}
.wpcf7 .center .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.wpcf7 .center .wpcf7-acceptance input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #0B42DB;
  margin-top: 2px;
}
.wpcf7 .center .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .center .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  gap: 12px;
  padding-bottom: 4px;
  font-size: 14px;
  color: #051B27;
  line-height: 1.6;
  cursor: pointer;
  margin: 0;
}
.wpcf7 .center .wpcf7-acceptance .wpcf7-list-item label a {
  color: #0B42DB;
  text-decoration: underline;
  font-weight: 600;
  margin-right: 2px;
}
.wpcf7 .reCAPTCHA {
  font-size: 12px;
  color: #666;
  text-align: left;
  margin: 3.2rem 0 0;
  line-height: 1.5;
}
.wpcf7 .reCAPTCHA a {
  color: #0B42DB;
  text-decoration: underline;
}
.wpcf7 .reCAPTCHA a:hover {
  text-decoration: none;
}
.wpcf7 .btn-wrap {
  margin-top: 3.2rem;
  display: flex;
  justify-content: center;
}
.wpcf7 .btn-wrap input[type=submit] {
  background-color: #0B42DB;
  background-image: linear-gradient(90deg, #0B42DB 0%, #0933A8 100%);
  color: #FFFFFF;
  border: none;
  width: 100%;
  min-height: 8.8rem;
  padding: 2rem 4rem;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 0;
}
.wpcf7 .btn-wrap input[type=submit]:hover {
  background-color: #0734B3;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #0B42DB;
  font-size: 14px;
  margin-top: 8px;
}
.wpcf7 .wpcf7-validation-errors {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.wpcf7 .screen-reader-response {
  display: none !important;
}

@media (max-width: 960px) {
  .wpcf7 .wrap-form-contact {
    gap: 24px;
  }
  .wpcf7 .item-form-contact {
    gap: 8px;
  }
  .wpcf7 .item-form-contact:has([name=number-year]) .detail-form-contact {
    flex-direction: column;
    gap: 12px;
  }
  .wpcf7 .item-form-contact:has([name=number-year]) .detail-form-contact input[type=number] {
    text-align: left;
  }
  .wpcf7 .heading-form-contact {
    font-size: 14px;
  }
  .wpcf7 .detail-form-contact input[type=text],
  .wpcf7 .detail-form-contact input[type=email],
  .wpcf7 .detail-form-contact input[type=tel],
  .wpcf7 .detail-form-contact input[type=url],
  .wpcf7 .detail-form-contact input[type=number],
  .wpcf7 .detail-form-contact select,
  .wpcf7 .detail-form-contact textarea {
    padding: 12px 16px;
    font-size: 14px;
  }
  .wpcf7 .detail-form-contact .wpcf7-radio {
    gap: 12px;
  }
  .wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item input[type=radio] {
    width: 18px;
    height: 18px;
  }
  .wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item label {
    font-size: 14px;
  }
  .wpcf7 .detail-form-contact input[type=file] {
    padding: 10px 12px;
  }
  .wpcf7 .detail-form-contact input[type=file]::file-selector-button {
    padding: 6px 12px;
    font-size: 12px;
  }
  .wpcf7 .center .wpcf7-acceptance {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .wpcf7 .center .wpcf7-acceptance .wpcf7-list-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .wpcf7 .center .wpcf7-acceptance .wpcf7-list-item label {
    font-size: 12px;
  }
  .wpcf7 .reCAPTCHA {
    font-size: 10px;
  }
  .wpcf7 .btn-wrap {
    margin-top: 32px;
  }
  .wpcf7 .btn-wrap input[type=submit] {
    padding: 16px 40px;
    font-size: 16px;
    min-width: 160px;
  }
}