@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Poppins:wght@300;400;500;600;700&family=Source+Code+Pro:wght@400;500&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
header ul,
header ol {
  padding: 0;
}

footer ul,
footer ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  color: #212529;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 576px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #212529;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  h2 {
    font-size: 1.25rem;
  }
}

h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: #212529;
}
@media screen and (max-width: 576px) {
  h3 {
    font-size: 1.125rem;
  }
}

p {
  margin-bottom: 1rem;
  color: #6C757D;
}

a {
  color: #1B365D;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #0F2844;
}
a:focus {
  outline: 2px solid #1B365D;
  outline-offset: 2px;
}

a[href^="tel:"] {
  pointer-events: none;
  color: inherit;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    color: #1B365D;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.btn:hover::before {
  left: 100%;
}
.btn:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn:disabled::before {
  display: none;
}
.btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.btn:hover i {
  transform: translateX(3px);
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.3);
  position: relative;
  overflow: hidden;
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.btn--primary:hover::before {
  left: 100%;
}
.btn--primary:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn--primary:disabled::before {
  display: none;
}
.btn--primary i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.btn--primary:hover i {
  transform: translateX(3px);
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.btn--primary:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2E5984 0%, #0F2844 100%);
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-3px) scale(1.02);
}
.btn--primary:hover::after {
  width: 200px;
  height: 200px;
  opacity: 1;
}
.btn--primary:active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0F2844 0%, #1B365D 100%);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.5);
}
.btn--accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #ffffff;
  background: linear-gradient(135deg, #D4AF37 0%, #E6C866 100%);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}
.btn--accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.btn--accent:hover::before {
  left: 100%;
}
.btn--accent:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.btn--accent:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn--accent:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn--accent:disabled::before {
  display: none;
}
.btn--accent i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.btn--accent:hover i {
  transform: translateX(3px);
}
.btn--accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--accent:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #E6C866 0%, #B8941F 100%);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-3px) scale(1.02);
}
.btn--accent:hover::after {
  left: 100%;
}
.btn--accent:active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
}

.section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 576px) {
  .section {
    padding: 40px 0;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-200deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-200deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
@-webkit-keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@-webkit-keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(27, 54, 93, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(27, 54, 93, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
  }
  100% {
    box-shadow: 0 0 5px rgba(27, 54, 93, 0.2);
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(27, 54, 93, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(27, 54, 93, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
  }
  100% {
    box-shadow: 0 0 5px rgba(27, 54, 93, 0.2);
  }
}
@-webkit-keyframes typewriter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes typewriter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@-webkit-keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes morphing-blob {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
@keyframes morphing-blob {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
@-webkit-keyframes truck-delivery {
  0% {
    left: -100px;
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    left: 50%;
    transform: translateY(0);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    left: calc(100% + 100px);
    transform: translateY(0);
  }
}
@keyframes truck-delivery {
  0% {
    left: -100px;
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    left: 50%;
    transform: translateY(0);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    left: calc(100% + 100px);
    transform: translateY(0);
  }
}
@-webkit-keyframes truck-bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-3px);
  }
}
@keyframes truck-bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-3px);
  }
}
@-webkit-keyframes spark-trail {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-30px) scale(0.5);
  }
}
@keyframes spark-trail {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-30px) scale(0.5);
  }
}
@-webkit-keyframes click-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes click-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes click-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes click-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes click-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}
@keyframes click-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}
@-webkit-keyframes delivery-zoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes delivery-zoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@-webkit-keyframes rocket-fly {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(5px) rotate(5deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  75% {
    transform: translateX(-5px) rotate(-5deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes rocket-fly {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(5px) rotate(5deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  75% {
    transform: translateX(-5px) rotate(-5deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@-webkit-keyframes final-celebrate {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(2deg);
  }
  50% {
    transform: scale(1) rotate(0deg);
  }
  75% {
    transform: scale(1.05) rotate(-2deg);
  }
}
@keyframes final-celebrate {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(2deg);
  }
  50% {
    transform: scale(1) rotate(0deg);
  }
  75% {
    transform: scale(1.05) rotate(-2deg);
  }
}
@-webkit-keyframes star-twinkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.3) rotate(180deg);
    opacity: 0.7;
  }
}
@keyframes star-twinkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.3) rotate(180deg);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes heart-beat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes heart-beat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@-webkit-keyframes handshake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}
@keyframes handshake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}
@-webkit-keyframes float-random {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
  }
  50% {
    transform: translateY(-10px) translateX(-5px) rotate(180deg);
  }
  75% {
    transform: translateY(-30px) translateX(15px) rotate(270deg);
  }
}
@keyframes float-random {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
  }
  50% {
    transform: translateY(-10px) translateX(-5px) rotate(180deg);
  }
  75% {
    transform: translateY(-30px) translateX(15px) rotate(270deg);
  }
}
@-webkit-keyframes ripple-effect {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes ripple-effect {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@-webkit-keyframes scroll-wheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}
@keyframes scroll-wheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}
@-webkit-keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@-webkit-keyframes icon-wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}
@keyframes icon-wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}
@-webkit-keyframes card-pop {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@keyframes card-pop {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@-webkit-keyframes card-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(27, 54, 93, 0.2);
  }
  50% {
    box-shadow: 0 8px 30px rgba(27, 54, 93, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
  }
}
@keyframes card-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(27, 54, 93, 0.2);
  }
  50% {
    box-shadow: 0 8px 30px rgba(27, 54, 93, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
  }
}
@-webkit-keyframes price-highlight {
  0%, 100% {
    color: inherit;
    transform: scale(1);
  }
  50% {
    color: #D4AF37;
    transform: scale(1.1);
  }
}
@keyframes price-highlight {
  0%, 100% {
    color: inherit;
    transform: scale(1);
  }
  50% {
    color: #D4AF37;
    transform: scale(1.1);
  }
}
@-webkit-keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
}
@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
}
@-webkit-keyframes button-magnetic {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes button-magnetic {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-2px);
  }
}
@-webkit-keyframes typing-cursor {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes typing-cursor {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes success-check {
  0% {
    transform: scale(0) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
@keyframes success-check {
  0% {
    transform: scale(0) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes attention-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@keyframes attention-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@-webkit-keyframes delivery-progress {
  0% {
    width: 0%;
    background-position: 0% 50%;
  }
  100% {
    width: 100%;
    background-position: 100% 50%;
  }
}
@keyframes delivery-progress {
  0% {
    width: 0%;
    background-position: 0% 50%;
  }
  100% {
    width: 100%;
    background-position: 100% 50%;
  }
}
@-webkit-keyframes satisfaction-meter {
  0% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes satisfaction-meter {
  0% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@-webkit-keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
@-webkit-keyframes loading-dots {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@keyframes loading-dots {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.animate-fade-in-up {
  -webkit-animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fade-in-left {
  -webkit-animation: fadeInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fadeInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fade-in-right {
  -webkit-animation: fadeInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fadeInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-scale-in {
  -webkit-animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-bounce-in {
  -webkit-animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.animate-slide-in-top {
  -webkit-animation: slideInFromTop 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: slideInFromTop 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-slide-in-bottom {
  -webkit-animation: slideInFromBottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: slideInFromBottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-rotate-in {
  -webkit-animation: rotateIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: rotateIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-pulse {
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

.animate-float {
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

.animate-glow {
  -webkit-animation: glow 2s ease-in-out infinite alternate;
          animation: glow 2s ease-in-out infinite alternate;
}

.animate-shimmer {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  -webkit-animation: shimmer 2s infinite;
          animation: shimmer 2s infinite;
}

.animate-gradient {
  background: linear-gradient(-45deg, #1B365D, #D4AF37, #212529, #1B365D);
  background-size: 400% 400%;
  -webkit-animation: gradient-shift 4s ease infinite;
          animation: gradient-shift 4s ease infinite;
}

.animate-morphing {
  -webkit-animation: morphing-blob 8s ease-in-out infinite;
          animation: morphing-blob 8s ease-in-out infinite;
}

.stagger-animation .fade-in {
  opacity: 0;
  transform: translateY(30px);
}
.stagger-animation .fade-in.in-view {
  -webkit-animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.stagger-animation .fade-in:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.stagger-animation .fade-in:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.stagger-animation .fade-in:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.stagger-animation .fade-in:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.stagger-animation .fade-in:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.stagger-animation .fade-in:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.stagger-animation .fade-in:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.stagger-animation .fade-in:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.stagger-animation .fade-in:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.stagger-animation .fade-in:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.stagger-animation .fade-in:nth-child(11) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.stagger-animation .fade-in:nth-child(12) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.stagger-animation .fade-in:nth-child(13) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.stagger-animation .fade-in:nth-child(14) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.stagger-animation .fade-in:nth-child(15) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.stagger-animation .fade-in:nth-child(16) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.stagger-animation .fade-in:nth-child(17) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.stagger-animation .fade-in:nth-child(18) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.stagger-animation .fade-in:nth-child(19) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.stagger-animation .fade-in:nth-child(20) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate {
  transition: transform 0.3s ease;
}
.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-tilt {
  transition: transform 0.3s ease;
}
.hover-tilt:hover {
  transform: perspective(1000px) rotateX(10deg) rotateY(10deg);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}
.hover-glow:hover {
  box-shadow: 0 0 20px rgba(27, 54, 93, 0.6), 0 0 40px rgba(212, 175, 55, 0.4);
}

.hover-slide {
  position: relative;
  overflow: hidden;
}
.hover-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.hover-slide:hover::before {
  left: 100%;
}

.loading-spinner {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(27, 54, 93, 0.3);
  border-radius: 50%;
  border-top-color: #1B365D;
  -webkit-animation: spin 1s ease-in-out infinite;
          animation: spin 1s ease-in-out infinite;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-dots {
  display: inline-flex;
  gap: 0.25rem;
}
.loading-dots__dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #1B365D;
  border-radius: 50%;
  -webkit-animation: loading-dots 1.4s infinite ease-in-out both;
          animation: loading-dots 1.4s infinite ease-in-out both;
}
.loading-dots__dot:nth-child(1) {
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}
.loading-dots__dot:nth-child(2) {
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}

.loading-wave {
  display: inline-flex;
  gap: 0.25rem;
}
.loading-wave__bar {
  width: 0.25rem;
  height: 2rem;
  background-color: #1B365D;
  -webkit-animation: loading-wave 1.2s infinite ease-in-out;
          animation: loading-wave 1.2s infinite ease-in-out;
}
.loading-wave__bar:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.loading-wave__bar:nth-child(2) {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}
.loading-wave__bar:nth-child(3) {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.loading-wave__bar:nth-child(4) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.loading-wave__bar:nth-child(5) {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

@-webkit-keyframes loading-wave {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}

@keyframes loading-wave {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
.parallax {
  transform: translateZ(0);
  will-change: transform;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scroll-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-slide-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.scroll-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}
.btn-ripple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-ripple:active::before {
  width: 300px;
  height: 300px;
}

.btn-magnetic {
  transition: transform 0.3s ease;
}
.btn-magnetic:hover {
  transform: scale(1.05);
}
.btn-magnetic:active {
  transform: scale(0.95);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-shine:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.typewriter {
  overflow: hidden;
  border-right: 2px solid #1B365D;
  white-space: nowrap;
  -webkit-animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
          animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
}

.text-gradient {
  background: linear-gradient(45deg, #1B365D, #D4AF37, #212529);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: gradient-shift 3s ease infinite;
          animation: gradient-shift 3s ease infinite;
}

.text-shadow-glow {
  text-shadow: 0 0 10px rgba(27, 54, 93, 0.5), 0 0 20px rgba(212, 175, 55, 0.3), 0 0 30px rgba(27, 54, 93, 0.2);
}

.card-flip {
  perspective: 1000px;
}
.card-flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.card-flip:hover .card-flip__inner {
  transform: rotateY(180deg);
}
.card-flip__front, .card-flip__back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: inherit;
}
.card-flip__back {
  transform: rotateY(180deg);
}

.card-slide-up {
  position: relative;
  overflow: hidden;
}
.card-slide-up__overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 54, 93, 0.9), rgba(33, 37, 41, 0.8));
  transition: bottom 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
}
.card-slide-up:hover .card-slide-up__overlay {
  bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.gpu-accelerated {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000px;
}

.smooth-animation {
  will-change: transform, opacity;
}

.delay-100 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.delay-200 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-300 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-400 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-500 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.duration-100 {
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
}

.duration-200 {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
}

.duration-300 {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.duration-500 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.duration-700 {
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
}

.duration-1000 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.ease-in {
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

.ease-out {
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.ease-in-out {
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.ease-custom {
  -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0.75rem 0;
  }
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-link {
  display: flex;
  align-items: center;
  color: #212529;
}
.header__logo-link:hover {
  color: #1B365D;
}
.header__logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .header__logo-img {
    height: 40px;
    max-width: 150px;
  }
}
.header__logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .header__logo-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 992px) {
  .header__nav-list {
    gap: 1.5rem;
  }
}
.header__nav-item {
  position: relative;
}
.header__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #212529;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}
.header__nav-link:hover {
  color: #1B365D;
}
.header__nav-link.btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
.header__nav-link.btn:hover {
  color: #ffffff;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  width: 100%;
  height: 2px;
  background-color: #212529;
  transition: all 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  transform-origin: top left;
}
.header__hamburger span:nth-child(2) {
  margin: 5px 0;
}
.header__hamburger span:nth-child(3) {
  transform-origin: bottom left;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}
.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(33, 37, 41, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.header__mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.header__mobile-menu-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}
.header__mobile-menu-nav {
  text-align: center;
}
.header__mobile-menu-nav-item {
  margin-bottom: 2rem;
}
.header__mobile-menu-nav-item:last-child {
  margin-bottom: 0;
}
.header__mobile-menu-nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  display: block;
  padding: 1rem;
  transition: color 0.2s ease;
}
.header__mobile-menu-nav-link:hover {
  color: #D4AF37;
}

.footer {
  background-color: #212529;
  color: #ffffff;
}
.footer__inner {
  padding: 3rem 0 1rem;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 2rem 0 1rem;
  }
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}
.footer__logo-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .footer__logo-link {
    justify-content: center;
  }
}
.footer__logo-link:hover {
  color: #D4AF37;
}
.footer__logo-img {
  height: 40px;
  width: auto;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    align-items: center;
  }
}
.footer__nav-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.footer__nav-link:hover {
  color: #D4AF37;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .footer__social {
    justify-content: center;
  }
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.footer__social-link:hover {
  background-color: #D4AF37;
  color: #ffffff;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.footer__legal {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 576px) {
  .footer__legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.footer__legal-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: #D4AF37;
}
.footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.main {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 70px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #212529 0%, #495057 100%);
}
.hero--professional .hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero--professional .hero__video-bg .hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
}
.hero--professional .hero__video-bg .hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 54, 93, 0.6) 0%, rgba(33, 37, 41, 0.7) 100%);
}
.hero--professional .hero__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 576px) {
  .hero__content {
    padding: 0 1rem;
  }
}
.hero__catchphrase {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}
.hero__catchphrase .catchphrase-highlight {
  color: #D4AF37;
  position: relative;
  display: inline-block;
}
.hero__catchphrase .catchphrase-highlight::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #D4AF37 0%, #E6C866 100%);
  border-radius: 2px;
}
.hero__description {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 576px) {
  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #ffffff;
  background: linear-gradient(135deg, #D4AF37 0%, #E6C866 100%);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  padding: 18px 36px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.hero__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.hero__cta:hover::before {
  left: 100%;
}
.hero__cta:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.hero__cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.hero__cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.hero__cta:disabled::before {
  display: none;
}
.hero__cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.hero__cta:hover i {
  transform: translateX(3px);
}
.hero__cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__cta:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #E6C866 0%, #B8941F 100%);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-3px) scale(1.02);
}
.hero__cta:hover::after {
  left: 100%;
}
.hero__cta:active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
}
.hero__cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: inherit;
  opacity: 0;
  z-index: -1;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
.hero__cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}
.hero__cta:hover::after {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.hero__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #1B365D;
  background: transparent;
  border: 2px solid #1B365D;
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.1);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 18px 36px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 16px;
}
.hero__contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.hero__contact:hover::before {
  left: 100%;
}
.hero__contact:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.hero__contact:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.hero__contact:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.hero__contact:disabled::before {
  display: none;
}
.hero__contact i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.hero__contact:hover i {
  transform: translateX(3px);
}
.hero__contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.hero__contact:hover {
  color: #ffffff !important;
  border-color: #1B365D;
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.3);
  transform: translateY(-3px);
}
.hero__contact:hover::before {
  width: 100%;
}
.hero__contact:active {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.hero__contact:hover {
  color: #1B365D;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}
.hero__contact:active {
  background: rgba(255, 255, 255, 0.9);
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}
@media screen and (max-width: 576px) {
  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
.hero__stats .stat-item {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  min-width: 120px;
  transition: all 0.3s ease;
}
.hero__stats .stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.hero__stats .stat-item--highlight {
  border: 2px solid #E6C866;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}
@media screen and (max-width: 576px) {
  .hero__stats .stat-item--highlight {
    transform: scale(1);
    margin-bottom: 0.5rem;
  }
}
.hero__stats .stat-item--highlight:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}
@media screen and (max-width: 576px) {
  .hero__stats .stat-item--highlight:hover {
    transform: scale(1.05);
  }
}
.hero__stats .stat-item--highlight .stat-number {
  color: #ffffff;
  font-size: 1.875rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero__stats .stat-item--highlight .stat-label {
  color: #ffffff;
  font-weight: 500;
}
.hero__stats .stat-item .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4AF37;
  font-family: "Poppins", sans-serif;
  display: block;
  margin-bottom: 0.3rem;
}
.hero__stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

.business {
  background: #FAFBFC;
  position: relative;
}
.business__header {
  text-align: center;
  margin-bottom: 4rem;
}
.business__header .business__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: #212529;
  font-weight: 700;
  position: relative;
}
.business__header .business__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #D4AF37 0%, #E6C866 100%);
  border-radius: 2px;
}
.business__header .business__subtitle {
  font-size: 1.125rem;
  color: #6C757D;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.business__header .business__notice {
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.business__header .business__notice p {
  font-size: 1rem;
  color: #212529;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 576px) {
  .business__header .business__notice p {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.business__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .business__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .business__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.business__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.business__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #D1D5DB;
}
.business__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
  border-radius: 16px;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.business__card-icon i {
  font-size: 2rem;
  color: #ffffff;
}
.business__card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #212529;
  font-weight: 700;
}
.business__card-description {
  line-height: 1.625;
  margin-bottom: 0;
  color: #6C757D;
  font-size: 1rem;
}
.business__card-description strong {
  color: #1B365D;
  font-weight: 500;
}

.message__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .message__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
.message__title {
  margin-bottom: 0.5rem;
}
.message__name {
  font-size: 1.25rem;
  color: #1B365D;
  margin-bottom: 2rem;
}
.message__body p {
  margin-bottom: 1.5rem;
  line-height: 1.625;
}
.message__body p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .message__image {
    order: -1;
  }
}
.message__photo {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .message__photo {
    margin: 0 auto;
  }
}

.products {
  background: #FAFBFC;
}
.products__header {
  text-align: center;
  margin-bottom: 3rem;
}
.products__header .products__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: #212529;
  font-weight: 700;
  position: relative;
}
.products__header .products__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #D4AF37 0%, #E6C866 100%);
  border-radius: 2px;
}
.products__header .products__subtitle {
  font-size: 1.125rem;
  color: #6C757D;
  margin-bottom: 0;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 576px) {
  .products__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
.products__card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.products__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #D1D5DB;
}
.products__card:hover .products__card-img {
  transform: scale(1.05);
}
.products__card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #F8F9FA;
}
.products__card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.products__card-content {
  padding: 1.5rem;
}
.products__card-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #212529;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.products__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.products__card-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.products__card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.products__card-btn:hover::before {
  left: 100%;
}
.products__card-btn:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.products__card-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.products__card-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.products__card-btn:disabled::before {
  display: none;
}
.products__card-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.products__card-btn:hover i {
  transform: translateX(3px);
}
.products__card-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.products__card-btn:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2E5984 0%, #0F2844 100%);
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-3px) scale(1.02);
}
.products__card-btn:hover::after {
  width: 200px;
  height: 200px;
  opacity: 1;
}
.products__card-btn:active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0F2844 0%, #1B365D 100%);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.5);
}
.products__card-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.products__card-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4);
}
.products__card-btn:hover::after {
  width: 300px;
  height: 300px;
}
.products__card-btn:active {
  transform: translateY(-1px) scale(1.01);
}
.products__card-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.products__card-btn:hover i {
  transform: translateX(4px);
}
.products__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
}
.products__empty p {
  font-size: 1.125rem;
  color: #6C757D;
  margin-bottom: 0;
}
.products__more {
  text-align: center;
}
.products__more .btn--more-products {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #1B365D;
  background: transparent;
  border: 2px solid #1B365D;
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.1);
  position: relative;
  overflow: hidden;
  color: #1B365D;
  border: 2px solid #1B365D;
  background: transparent;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}
.products__more .btn--more-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.products__more .btn--more-products:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.products__more .btn--more-products:hover::before {
  left: 100%;
}
.products__more .btn--more-products:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.products__more .btn--more-products:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.products__more .btn--more-products:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.products__more .btn--more-products:disabled::before {
  display: none;
}
.products__more .btn--more-products i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.products__more .btn--more-products:hover i {
  transform: translateX(3px);
}
.products__more .btn--more-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.products__more .btn--more-products:hover {
  color: #ffffff !important;
  border-color: #1B365D;
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.3);
  transform: translateY(-3px);
}
.products__more .btn--more-products:hover::before {
  width: 100%;
}
.products__more .btn--more-products:active {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.products__more .btn--more-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.products__more .btn--more-products:hover {
  color: #ffffff !important;
  border-color: #1B365D;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(27, 54, 93, 0.3);
}
.products__more .btn--more-products:hover::before {
  opacity: 1;
}
.products__more .btn--more-products:active {
  color: #ffffff !important;
  transform: translateY(-1px) scale(1.02);
}

.company__header {
  text-align: center;
  margin-bottom: 3rem;
}
.company__content {
  max-width: 800px;
  margin: 0 auto;
}
.company__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.company__row {
  border-bottom: 1px solid #E5E7EB;
}
.company__row:last-child {
  border-bottom: none;
}
.company__label {
  background-color: #F8F9FA;
  padding: 1.5rem;
  text-align: left;
  font-weight: 500;
  color: #212529;
  width: 30%;
}
@media screen and (max-width: 576px) {
  .company__label {
    width: 35%;
    padding: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .company__label {
    display: block;
    width: 100%;
    border-bottom: 1px solid #E5E7EB;
    padding: 1rem;
  }
}
.company__value {
  padding: 1.5rem;
  color: #6C757D;
}
@media screen and (max-width: 576px) {
  .company__value {
    padding: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .company__value {
    display: block;
    width: 100%;
    padding: 1rem;
  }
}
.company__value a {
  color: #1B365D;
}
.company__value a:hover {
  color: #0F2844;
}

.cta {
  background: linear-gradient(135deg, #1B365D, #212529);
  color: #ffffff;
}
.cta__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta__title {
  color: #ffffff;
  margin-bottom: 1rem;
}
.cta__description {
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #ffffff;
}
.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #ffffff;
  background: linear-gradient(135deg, #D4AF37 0%, #E6C866 100%);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  padding: 20px 40px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 16px;
  position: relative;
}
.cta__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.cta__button:hover::before {
  left: 100%;
}
.cta__button:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.cta__button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.cta__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.cta__button:disabled::before {
  display: none;
}
.cta__button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.cta__button:hover i {
  transform: translateX(3px);
}
.cta__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta__button:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #E6C866 0%, #B8941F 100%);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-3px) scale(1.02);
}
.cta__button:hover::after {
  left: 100%;
}
.cta__button:active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
}
.cta__button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #D4AF37 0%, #E6C866 100%);
  border-radius: inherit;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.4s ease;
  z-index: -1;
}
.cta__button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}
.cta__button:hover::before {
  opacity: 0.7;
}
.cta__button:active {
  transform: translateY(-2px) scale(1.02);
}
.cta__button i {
  margin-left: 12px;
  transition: transform 0.3s ease;
}
.cta__button:hover i {
  transform: translateX(5px);
}

.contact-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1B365D 0%, #264d85 100%);
  color: white;
  overflow: hidden;
}
.contact-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.contact-hero__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px), radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0.7;
  -webkit-animation: float 20s ease-in-out infinite;
          animation: float 20s ease-in-out infinite;
}
.contact-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contact-hero__title {
  margin-bottom: 24px;
}
.contact-hero__title-main {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, white 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.contact-hero__title-sub {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.8);
}
.contact-hero__description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact-hero__features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-feature i {
  font-size: 1.2rem;
  color: #D4AF37;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-methods {
  background-color: #F8F9FA;
}
.contact-methods__header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-methods__title {
  margin-bottom: 1rem;
}
.contact-methods__subtitle {
  font-size: 1.125rem;
  color: #6C757D;
  margin-bottom: 0;
}
.contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .contact-methods__grid {
    grid-template-columns: 1fr;
  }
}

.contact-method-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, rgba(248, 249, 250, 0.8) 100%);
  border: 1px solid rgba(27, 54, 93, 0.1);
  position: relative;
  overflow: hidden;
}
.contact-method-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.contact-method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(27, 54, 93, 0.1), transparent);
  transition: left 0.5s ease;
}
.contact-method-card:hover::before {
  left: 100%;
}
.contact-method-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1B365D, #D4AF37);
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(27, 54, 93, 0.3);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}
.contact-method-card__icon i {
  font-size: 1.5rem;
  color: #ffffff;
}
.contact-method-card:hover .contact-method-card__icon {
  transform: rotate(0deg) scale(1.1);
}
.contact-method-card__title {
  margin-bottom: 1rem;
  color: #212529;
}
.contact-method-card__description {
  line-height: 1.625;
  margin-bottom: 1.5rem;
  color: #6C757D;
}
.contact-method-card__link {
  font-weight: 600;
  color: #1B365D;
  text-decoration: none;
  position: relative;
}
.contact-method-card__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #1B365D, #D4AF37);
  transition: width 0.3s ease;
}
.contact-method-card__link:hover::after {
  width: 100%;
}

.contact-form-section {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.5) 0%, #ffffff 50%, rgba(212, 175, 55, 0.05) 100%);
}

.contact-form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form__title {
  margin-bottom: 1rem;
}

.contact-form__description {
  font-size: 1.125rem;
  color: #6C757D;
  line-height: 1.625;
  margin-bottom: 0;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-form__visual {
  background: linear-gradient(135deg, #1B365D, #212529);
  border-radius: 20px;
  padding: 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.contact-form__visual::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}
.contact-form__visual-content {
  position: relative;
  z-index: 1;
}
.contact-form__visual-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 2rem;
}
.contact-form__visual-icon i {
  font-size: 1.5rem;
  color: #D4AF37;
}
.contact-form__visual-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.contact-form__visual-text {
  line-height: 1.625;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-form__benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-form__benefit i {
  color: #D4AF37;
  font-size: 1.125rem;
}
.contact-form__benefit span {
  font-weight: 500;
}

.contact-form {
  padding: 80px 0;
  background: #f8f9fa;
}
.contact-form__content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form__header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-form__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1B365D;
  margin-bottom: 16px;
  position: relative;
}
.contact-form__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1B365D, #D4AF37);
  border-radius: 2px;
}
.contact-form__subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-top: 24px;
}
.contact-form__subtitle .required-note {
  color: #e53e3e;
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-form__form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(27, 54, 93, 0.1);
  position: relative;
}
.contact-form__form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1B365D, #D4AF37);
  border-radius: 20px 20px 0 0;
}

.contact-info {
  padding: 80px 0;
  background: white;
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info__card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(27, 54, 93, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.contact-info__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1B365D, #D4AF37);
}
.contact-info__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.contact-info__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info__card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1B365D, #D4AF37);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}
.contact-info__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1B365D;
  margin: 0;
}
.contact-info__card-content .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f3f4;
}
.contact-info__card-content .info-item:last-child {
  border-bottom: none;
}
.contact-info__card-content .info-item strong {
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-info__card-content .info-item span {
  color: #1B365D;
  font-weight: 500;
  text-align: right;
}

.contact-faq {
  padding: 80px 0;
  background: #f8f9fa;
}
.contact-faq__header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact-faq__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1B365D;
  margin-bottom: 16px;
  position: relative;
}
.contact-faq__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1B365D, #D4AF37);
  border-radius: 2px;
}
.contact-faq__subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-top: 24px;
}
.contact-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(27, 54, 93, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #1B365D;
}
.faq-item .faq-question {
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1B365D;
  transition: all 0.3s ease;
}
.faq-item .faq-question:hover {
  background: rgba(27, 54, 93, 0.05);
}
.faq-item .faq-question span {
  flex: 1;
  margin-right: 16px;
}
.faq-item .faq-question i {
  color: #D4AF37;
  transition: transform 0.3s ease;
  font-size: 1rem;
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item .faq-answer p {
  padding: 0 32px 24px;
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
  font-size: 1rem;
}

.contact-trust {
  padding: 80px 0;
  background: #1B365D;
  color: white;
  text-align: center;
}
.contact-trust__content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-trust__icon {
  margin-bottom: 24px;
}
.contact-trust__icon i {
  font-size: 3rem;
  color: #D4AF37;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-trust__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}
.contact-trust__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}
.contact-trust__features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}
.trust-feature i {
  font-size: 1.2rem;
  color: #D4AF37;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 60px;
  }
  .contact-hero__features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .contact-form {
    padding: 60px 0;
  }
  .contact-form__form-wrapper {
    padding: 32px 24px;
  }
  .contact-info {
    padding: 60px 0;
  }
  .contact-info__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-info__card {
    padding: 24px;
  }
  .contact-faq {
    padding: 60px 0;
  }
  .faq-item .faq-question {
    padding: 20px 24px;
    font-size: 1rem;
  }
  .faq-item .faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
  }
  .contact-trust {
    padding: 60px 0;
  }
  .contact-trust__features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .contact-feature,
.trust-feature {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .contact-hero__title-main {
    font-size: 2.2rem;
  }
  .contact-hero__title-sub {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  .contact-form__form-wrapper {
    padding: 24px 16px;
  }
  .contact-info__card {
    padding: 20px;
  }
  .contact-info__card-content .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .contact-info__card-content .info-item span {
    text-align: left;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  -webkit-animation: fadeInUp 0.6s ease forwards;
          animation: fadeInUp 0.6s ease forwards;
}
.fade-in:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.wpcf7 {
  position: relative;
  width: 100%;
}
.wpcf7 form {
  position: relative;
  width: 100%;
}
.wpcf7 p {
  margin-bottom: 2rem;
  position: relative;
}
.wpcf7 p:last-child {
  margin-bottom: 0;
}
.wpcf7 label {
  display: block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #6C757D;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
  background: #ffffff;
  padding: 0 0.5rem;
  border-radius: 4px;
}
.wpcf7 label .required {
  color: #e53e3e;
  margin-left: 2px;
  font-weight: 700;
}
.wpcf7 label.focused, .wpcf7 label.filled {
  transform: translateY(-1.5rem) scale(0.85);
  color: #1B365D;
  background: #ffffff;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=url],
.wpcf7 input[type=number],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=url]::-moz-placeholder, .wpcf7 input[type=number]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder, .wpcf7 select::-moz-placeholder {
  color: transparent;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=url]::placeholder,
.wpcf7 input[type=number]::placeholder,
.wpcf7 textarea::placeholder,
.wpcf7 select::placeholder {
  color: transparent;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=number]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: #1B365D;
  box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1), 0 4px 15px rgba(27, 54, 93, 0.1);
  transform: translateY(-2px);
}
.wpcf7 input[type=text]:focus + label,
.wpcf7 input[type=email]:focus + label,
.wpcf7 input[type=tel]:focus + label,
.wpcf7 input[type=url]:focus + label,
.wpcf7 input[type=number]:focus + label,
.wpcf7 textarea:focus + label,
.wpcf7 select:focus + label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #1B365D;
}
.wpcf7 input[type=text]:not(:-moz-placeholder-shown) + label, .wpcf7 input[type=email]:not(:-moz-placeholder-shown) + label, .wpcf7 input[type=tel]:not(:-moz-placeholder-shown) + label, .wpcf7 input[type=url]:not(:-moz-placeholder-shown) + label, .wpcf7 input[type=number]:not(:-moz-placeholder-shown) + label, .wpcf7 textarea:not(:-moz-placeholder-shown) + label, .wpcf7 select:not(:-moz-placeholder-shown) + label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #1B365D;
}
.wpcf7 input[type=text]:not(:placeholder-shown) + label,
.wpcf7 input[type=email]:not(:placeholder-shown) + label,
.wpcf7 input[type=tel]:not(:placeholder-shown) + label,
.wpcf7 input[type=url]:not(:placeholder-shown) + label,
.wpcf7 input[type=number]:not(:placeholder-shown) + label,
.wpcf7 textarea:not(:placeholder-shown) + label,
.wpcf7 select:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #1B365D;
}
.wpcf7 input[type=text]:invalid,
.wpcf7 input[type=email]:invalid,
.wpcf7 input[type=tel]:invalid,
.wpcf7 input[type=url]:invalid,
.wpcf7 input[type=number]:invalid,
.wpcf7 textarea:invalid,
.wpcf7 select:invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
.wpcf7 input[type=text]:invalid + label,
.wpcf7 input[type=email]:invalid + label,
.wpcf7 input[type=tel]:invalid + label,
.wpcf7 input[type=url]:invalid + label,
.wpcf7 input[type=number]:invalid + label,
.wpcf7 textarea:invalid + label,
.wpcf7 select:invalid + label {
  color: #e53e3e;
}
.wpcf7 input[type=text]:-moz-read-only, .wpcf7 input[type=email]:-moz-read-only, .wpcf7 input[type=tel]:-moz-read-only, .wpcf7 input[type=url]:-moz-read-only, .wpcf7 input[type=number]:-moz-read-only, .wpcf7 textarea:-moz-read-only, .wpcf7 select:-moz-read-only {
  background-color: #F8F9FA;
  cursor: not-allowed;
}
.wpcf7 input[type=text]:read-only,
.wpcf7 input[type=email]:read-only,
.wpcf7 input[type=tel]:read-only,
.wpcf7 input[type=url]:read-only,
.wpcf7 input[type=number]:read-only,
.wpcf7 textarea:read-only,
.wpcf7 select:read-only {
  background-color: #F8F9FA;
  cursor: not-allowed;
}
.wpcf7 input[type=text]:disabled,
.wpcf7 input[type=email]:disabled,
.wpcf7 input[type=tel]:disabled,
.wpcf7 input[type=url]:disabled,
.wpcf7 input[type=number]:disabled,
.wpcf7 textarea:disabled,
.wpcf7 select:disabled {
  background-color: #F8F9FA;
  color: #6B7280;
  cursor: not-allowed;
  opacity: 0.6;
}
.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.625;
}
.wpcf7 select {
  background-image: url("data:image/svg+xml;charset=utf-8,%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 1rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  padding-right: 3rem;
  cursor: pointer;
}
.wpcf7 select:focus {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%231B365D' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
}
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  width: auto;
  margin-right: 0.75rem;
  position: relative;
  cursor: pointer;
}
.wpcf7 input[type=checkbox]:before,
.wpcf7 input[type=radio]:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #E5E7EB;
  border-radius: 4px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.wpcf7 input[type=checkbox]:checked:before,
.wpcf7 input[type=radio]:checked:before {
  background-color: #1B365D;
  border-color: #1B365D;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.wpcf7 input[type=radio]:before {
  border-radius: 50%;
}
.wpcf7 input[type=radio]:checked:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle fill='white' cx='8' cy='8' r='3'/%3E%3C/svg%3E");
}
.wpcf7 input[type=file] {
  width: 100%;
  padding: 1rem;
  border: 2px dashed #E5E7EB;
  border-radius: 12px;
  background-color: #F8F9FA;
  transition: all 0.3s ease;
  cursor: pointer;
}
.wpcf7 input[type=file]:hover {
  border-color: #1B365D;
  background-color: rgba(27, 54, 93, 0.05);
}
.wpcf7 input[type=file]:focus {
  outline: none;
  border-color: #1B365D;
  box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}
.wpcf7 input[type=submit],
.wpcf7 button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  font-size: 1.125rem;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.wpcf7 input[type=submit]::before,
.wpcf7 button[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.wpcf7 input[type=submit]:hover,
.wpcf7 button[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.wpcf7 input[type=submit]:hover::before,
.wpcf7 button[type=submit]:hover::before {
  left: 100%;
}
.wpcf7 input[type=submit]:focus,
.wpcf7 button[type=submit]:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.wpcf7 input[type=submit]:active,
.wpcf7 button[type=submit]:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.wpcf7 input[type=submit]:disabled,
.wpcf7 button[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.wpcf7 input[type=submit]:disabled::before,
.wpcf7 button[type=submit]:disabled::before {
  display: none;
}
.wpcf7 input[type=submit] i,
.wpcf7 button[type=submit] i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.wpcf7 input[type=submit]:hover i,
.wpcf7 button[type=submit]:hover i {
  transform: translateX(3px);
}
.wpcf7 input[type=submit]::after,
.wpcf7 button[type=submit]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.wpcf7 input[type=submit]:hover,
.wpcf7 button[type=submit]:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2E5984 0%, #0F2844 100%);
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-3px) scale(1.02);
}
.wpcf7 input[type=submit]:hover::after,
.wpcf7 button[type=submit]:hover::after {
  width: 200px;
  height: 200px;
  opacity: 1;
}
.wpcf7 input[type=submit]:active,
.wpcf7 button[type=submit]:active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0F2844 0%, #1B365D 100%);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.5);
}
@media screen and (max-width: 576px) {
  .wpcf7 input[type=submit],
.wpcf7 button[type=submit] {
    width: 100%;
  }
}
.wpcf7 input[type=submit].loading,
.wpcf7 button[type=submit].loading {
  pointer-events: none;
  opacity: 0.8;
}
.wpcf7 input[type=submit].loading::after,
.wpcf7 button[type=submit].loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.wpcf7 .wpcf7-not-valid-tip::before {
  content: "⚠";
  font-size: 0.75rem;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(25, 135, 84, 0.05) 100%);
  border: 1px solid rgba(25, 135, 84, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  color: #198754;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
}
.wpcf7 .wpcf7-mail-sent-ok::before {
  content: "✓";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #198754;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-right: 0.75rem;
}
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-validation-errors {
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.1) 0%, rgba(229, 62, 62, 0.05) 100%);
  border: 1px solid rgba(229, 62, 62, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  color: #e53e3e;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
}
.wpcf7 .wpcf7-mail-sent-ng::before,
.wpcf7 .wpcf7-validation-errors::before {
  content: "✗";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #e53e3e;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-right: 0.75rem;
}
.wpcf7 .wpcf7-spam-blocked {
  background: linear-gradient(135deg, rgba(253, 126, 20, 0.1) 0%, rgba(253, 126, 20, 0.05) 100%);
  border: 1px solid rgba(253, 126, 20, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  color: #FD7E14;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
}
.wpcf7 .wpcf7-spam-blocked::before {
  content: "🛡";
  display: inline-block;
  margin-right: 0.75rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wpcf7 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 576px) {
  .wpcf7 .form-row {
    grid-template-columns: 1fr;
  }
}
.wpcf7 .required-field {
  position: relative;
}
.wpcf7 .required-field::after {
  content: "*";
  color: #e53e3e;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-weight: 700;
  z-index: 3;
}
.wpcf7 .field-focused {
  position: relative;
}
.wpcf7 .field-focused::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #1B365D, #D4AF37);
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wpcf7 .field-focused:focus-within::before {
  opacity: 1;
}
@media screen and (max-width: 375px) {
  .wpcf7 .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .wpcf7 input[type=submit],
.wpcf7 button[type=submit] {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.wpcf7-form {
  -webkit-animation: fadeInUp 0.6s ease-out;
          animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wpcf7-acceptance input[type=checkbox] {
  margin-right: 0.75rem;
}
.wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
}
.wpcf7-acceptance .wpcf7-list-item-label a {
  color: #1B365D;
  text-decoration: underline;
}
.wpcf7-acceptance .wpcf7-list-item-label a:hover {
  color: #0F2844;
}

.wpcf7-quiz .wpcf7-quiz-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.wpcf7-captcha .wpcf7-captcha-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.wpcf7-captcha img {
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.products-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #212529 0%, #1B365D 50%, #D4AF37 100%);
  overflow: hidden;
}
.products-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.products-hero__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px), radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.2) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  -webkit-animation: pattern-move 20s linear infinite;
          animation: pattern-move 20s linear infinite;
}
.products-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}
.products-hero__title {
  margin-bottom: 2rem;
}
.products-hero__title-main {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .products-hero__title-main {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 576px) {
  .products-hero__title-main {
    font-size: 1.875rem;
  }
}
.products-hero__title-sub {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .products-hero__title-sub {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 576px) {
  .products-hero__title-sub {
    font-size: 1.125rem;
  }
}
.products-hero__description {
  font-size: 1.125rem;
  line-height: 1.625;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .products-hero__description {
    font-size: 1rem;
  }
}

.products-filter {
  background: linear-gradient(135deg, #ffffff 0%, rgba(248, 249, 250, 0.5) 100%);
  border-bottom: 1px solid #E5E7EB;
}
.products-filter__content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .products-filter__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .products-filter__search {
    order: 3;
  }
}
.products-filter__categories {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  .products-filter__categories {
    order: 1;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 576px) {
  .products-filter__categories {
    gap: 0.25rem;
  }
}
@media screen and (max-width: 768px) {
  .products-filter__sort {
    order: 2;
  }
}

.search-box {
  position: relative;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .search-box {
    max-width: none;
  }
}

.search-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 50px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.search-input:focus {
  outline: none;
  border-color: #1B365D;
  box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}
.search-input::-moz-placeholder {
  color: #6B7280;
}
.search-input::placeholder {
  color: #6B7280;
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: none;
  background: linear-gradient(135deg, #1B365D, #D4AF37);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(27, 54, 93, 0.3);
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 50px;
  background-color: #ffffff;
  color: #6C757D;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: #1B365D;
  color: #1B365D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 54, 93, 0.2);
}
.filter-btn.active {
  background: linear-gradient(135deg, #1B365D, #D4AF37);
  border-color: #1B365D;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(27, 54, 93, 0.3);
}
.filter-btn i {
  font-size: 0.875rem;
}

.sort-select {
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 50px;
  background-color: #ffffff;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml;charset=utf-8,%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 1rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
}
.sort-select:focus {
  outline: none;
  border-color: #1B365D;
  box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}

.products-grid__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 576px) {
  .products-grid__header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.products-grid__count {
  font-size: 1.125rem;
  color: #6C757D;
}
.products-grid__count .products-count {
  font-weight: 700;
  color: #1B365D;
}
.products-grid__view-toggle {
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 576px) {
  .products-grid__view-toggle {
    order: -1;
  }
}
.products-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.products-grid__items.list-view {
  grid-template-columns: 1fr;
}
.products-grid__items.list-view .product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 576px) {
  .products-grid__items.list-view .product-card {
    grid-template-columns: 1fr;
  }
}
.products-grid__items.list-view .product-card__image {
  height: 150px;
}
.products-grid__items.list-view .product-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.view-toggle-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  background-color: #ffffff;
  color: #6C757D;
  cursor: pointer;
  transition: all 0.3s ease;
}
.view-toggle-btn:hover {
  border-color: #1B365D;
  color: #1B365D;
}
.view-toggle-btn.active {
  background-color: #1B365D;
  border-color: #1B365D;
  color: #ffffff;
}

.product-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, rgba(248, 249, 250, 0.3) 100%);
  border: 1px solid rgba(27, 54, 93, 0.1);
}
.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}
.product-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 54, 93, 0.9), rgba(33, 37, 41, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__actions {
  display: flex;
  gap: 0.75rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.product-card:hover .product-card__img {
  transform: scale(1.1);
}
.product-card:hover .product-card__overlay {
  opacity: 1;
}
.product-card:hover .product-card__actions {
  transform: translateY(0);
}
.product-card__content {
  padding: 1.5rem;
}
.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-card__category {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(27, 54, 93, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}
.product-card__title {
  margin-bottom: 0.75rem;
}
.product-card__title a {
  color: #212529;
  text-decoration: none;
  transition: color 0.3s ease;
}
.product-card__title a:hover {
  color: #1B365D;
}
.product-card__excerpt {
  margin-bottom: 1rem;
  color: #6C757D;
  font-size: 0.875rem;
  line-height: 1.5;
}
.product-card__price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-card__delivery {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #6C757D;
}
.product-card__delivery i {
  color: #D4AF37;
}
.product-card__actions-bottom {
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 375px) {
  .product-card__actions-bottom {
    flex-direction: column;
  }
}
.product-card__btn {
  flex: 1;
  justify-content: center;
  font-size: 0.875rem;
}
.product-card__btn i {
  margin-left: 0.5rem;
}
.product-card__details {
  flex: 0 0 auto;
}
@media screen and (max-width: 375px) {
  .product-card__details {
    flex: 1;
  }
}

.product-action-btn {
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #212529;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-action-btn:hover {
  background: #1B365D;
  color: #ffffff;
  transform: scale(1.1);
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge--new {
  background: linear-gradient(135deg, #D4AF37, #ff6b35);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.rating-stars {
  display: flex;
  gap: 0.125rem;
}
.rating-stars .fa-star {
  font-size: 0.875rem;
  color: #e5e7eb;
  transition: color 0.2s ease;
}
.rating-stars .fa-star.active {
  color: #D4AF37;
}

.rating-count {
  font-size: 0.75rem;
  color: #6B7280;
  margin-left: 0.25rem;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1B365D;
  font-family: "Poppins", sans-serif;
}

.price-original {
  font-size: 0.875rem;
  color: #6B7280;
  text-decoration: line-through;
  font-family: "Poppins", sans-serif;
}

.products-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.products-empty__content {
  max-width: 500px;
  margin: 0 auto;
}
.products-empty__icon {
  font-size: 4rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}
.products-empty__title {
  margin-bottom: 1rem;
  color: #212529;
}
.products-empty__description {
  color: #6C757D;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.products-pagination {
  display: flex;
  justify-content: center;
}

.pagination-nav .pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}
.pagination-nav .pagination__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  color: #6C757D;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.pagination-nav .pagination__item a:hover {
  border-color: #1B365D;
  color: #1B365D;
  transform: translateY(-2px);
}
.pagination-nav .pagination__item a.current {
  background: linear-gradient(135deg, #1B365D, #D4AF37);
  border-color: #1B365D;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(27, 54, 93, 0.3);
}

.featured-products {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.5) 0%, #ffffff 50%, rgba(27, 54, 93, 0.05) 100%);
}
.featured-products__header {
  text-align: center;
  margin-bottom: 3rem;
}
.featured-products__title {
  margin-bottom: 1rem;
}
.featured-products__subtitle {
  font-size: 1.125rem;
  color: #6C757D;
  margin-bottom: 0;
}
.featured-products__slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.featured-products__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  padding: 1rem;
}
.featured-products__controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.featured-product-card {
  flex: 0 0 250px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(27, 54, 93, 0.1);
}
.featured-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.featured-product-card__image {
  height: 150px;
  overflow: hidden;
}
.featured-product-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-product-card:hover .featured-product-card__img {
  transform: scale(1.05);
}
.featured-product-card__content {
  padding: 1.5rem;
  text-align: center;
}
.featured-product-card__title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #212529;
}
.featured-product-card__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1B365D;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}
.featured-product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.3);
  position: relative;
  overflow: hidden;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}
.featured-product-card__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured-product-card__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.featured-product-card__btn:hover::before {
  left: 100%;
}
.featured-product-card__btn:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.featured-product-card__btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.featured-product-card__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.featured-product-card__btn:disabled::before {
  display: none;
}
.featured-product-card__btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.featured-product-card__btn:hover i {
  transform: translateX(3px);
}
.featured-product-card__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.featured-product-card__btn:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2E5984 0%, #0F2844 100%);
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-3px) scale(1.02);
}
.featured-product-card__btn:hover::after {
  width: 200px;
  height: 200px;
  opacity: 1;
}
.featured-product-card__btn:active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0F2844 0%, #1B365D 100%);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.5);
}
.featured-product-card__btn i {
  margin-left: 0.5rem;
}

.slider-btn {
  width: 3rem;
  height: 3rem;
  border: 2px solid #E5E7EB;
  border-radius: 50%;
  background: #ffffff;
  color: #6C757D;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-btn:hover {
  border-color: #1B365D;
  color: #1B365D;
  transform: scale(1.1);
}
.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.slider-btn:disabled:hover {
  transform: none;
}

.products-cta {
  background: linear-gradient(135deg, #1B365D 0%, #212529 50%, #D4AF37 100%);
  color: #ffffff;
  text-align: center;
}
.products-cta__content {
  max-width: 600px;
  margin: 0 auto;
}
.products-cta__title {
  color: #ffffff;
  margin-bottom: 1rem;
}
.products-cta__description {
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.products-cta__btn {
  background-color: #D4AF37;
  border-color: #D4AF37;
}
.products-cta__btn:hover {
  background-color: #B8941F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}
.products-cta__btn i {
  margin-left: 0.5rem;
}

@-webkit-keyframes pattern-move {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 50px 50px, 30px 30px;
  }
}

@keyframes pattern-move {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 50px 50px, 30px 30px;
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.product-card.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-animation: shimmer 1.5s infinite;
          animation: shimmer 1.5s infinite;
}

.products-hero {
  background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
  color: #ffffff;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.products-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  opacity: 0.7;
}
.products-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.products-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.products-hero__description {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 0;
}

.products-archive {
  background: #FAFBFC;
}
.products-archive__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E5E7EB;
}
@media screen and (max-width: 576px) {
  .products-archive__header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
.products-archive__header .products-count {
  font-size: 1.125rem;
  font-weight: 500;
  color: #212529;
  margin: 0;
}
.products-archive__header .products-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.products-archive__header .products-sort label {
  font-weight: 500;
  color: #6C757D;
  font-size: 0.875rem;
}
.products-archive__header .products-sort .sort-select {
  padding: 8px 12px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  background: #ffffff;
  font-size: 0.875rem;
  color: #212529;
  cursor: pointer;
  transition: all 0.3s ease;
}
.products-archive__header .products-sort .sort-select:focus {
  outline: none;
  border-color: #1B365D;
  box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}
.products-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .products-archive__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .products-archive__grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
@media screen and (max-width: 375px) {
  .products-archive__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.products-archive__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
}
.products-archive__empty .empty-state {
  max-width: 400px;
  margin: 0 auto;
}
.products-archive__empty .empty-state i {
  font-size: 4rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}
.products-archive__empty .empty-state h3 {
  font-size: 1.25rem;
  color: #212529;
  margin-bottom: 1rem;
}
.products-archive__empty .empty-state p {
  color: #6C757D;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.products-archive__pagination {
  text-align: center;
}
.products-archive__pagination .pagination-links {
  display: inline-flex;
  gap: 0.5rem;
}
.products-archive__pagination .pagination-links ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-archive__pagination .pagination-links a, .products-archive__pagination .pagination-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  background: #ffffff;
  color: #212529;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.products-archive__pagination .pagination-links a:hover, .products-archive__pagination .pagination-links span:hover {
  background: #1B365D;
  color: #ffffff;
  border-color: #1B365D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 54, 93, 0.3);
}
.products-archive__pagination .pagination-links a.current, .products-archive__pagination .pagination-links span.current {
  background: #1B365D;
  color: #ffffff;
  border-color: #1B365D;
}

.product-archive-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-archive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: #D1D5DB;
}
.product-archive-card__image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #F8F9FA;
}
@media screen and (max-width: 576px) {
  .product-archive-card__image {
    height: 220px;
  }
}
.product-archive-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.product-archive-card:hover .product-archive-card__img {
  transform: scale(1.1);
}
.product-archive-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
}
.product-archive-card__badge .badge-amazon {
  background: linear-gradient(135deg, #D4AF37 0%, #E6C866 100%);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}
.product-archive-card__content {
  padding: 1.5rem;
}
.product-archive-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-archive-card__price {
  font-size: 0.875rem;
  color: #1B365D;
  font-weight: 500;
  margin-bottom: 0.75rem;
  padding: 4px 8px;
  background: rgba(27, 54, 93, 0.1);
  border-radius: 4px;
  display: inline-block;
}
.product-archive-card__excerpt {
  font-size: 0.875rem;
  color: #6C757D;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-archive-card__actions {
  margin-top: auto;
}
.product-archive-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-archive-card__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-archive-card__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.product-archive-card__btn:hover::before {
  left: 100%;
}
.product-archive-card__btn:focus {
  outline: 3px solid rgba(27, 54, 93, 0.3);
  outline-offset: 2px;
}
.product-archive-card__btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.product-archive-card__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.product-archive-card__btn:disabled::before {
  display: none;
}
.product-archive-card__btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.product-archive-card__btn:hover i {
  transform: translateX(3px);
}
.product-archive-card__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.product-archive-card__btn:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2E5984 0%, #0F2844 100%);
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-3px) scale(1.02);
}
.product-archive-card__btn:hover::after {
  width: 200px;
  height: 200px;
  opacity: 1;
}
.product-archive-card__btn:active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0F2844 0%, #1B365D 100%);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(27, 54, 93, 0.5);
}
.product-archive-card__btn i {
  font-size: 1.1em;
}
.product-archive-card__btn:hover {
  transform: translateY(-2px) scale(1.02);
}

@media screen and (max-width: 375px) {
  .products-hero {
    padding: 60px 0 40px;
  }
  .products-hero__title {
    font-size: 2rem;
  }
  .products-hero__description {
    font-size: 1rem;
  }
  .products-archive__header {
    margin-bottom: 2rem;
  }
  .products-archive__header .products-count {
    font-size: 1rem;
  }
  .products-archive__grid {
    margin-bottom: 3rem;
  }
  .product-archive-card__content {
    padding: 1.25rem;
  }
  .product-archive-card__title {
    font-size: 1rem;
  }
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1B365D 0%, #212529 50%, #D4AF37 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}
.preloader__content {
  text-align: center;
  color: #ffffff;
}
.preloader__logo {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 2rem;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
.preloader__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 0 auto;
}
.preloader__text {
  margin-top: 1rem;
  font-size: 1.125rem;
  opacity: 0.8;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn--outline {
  background: transparent;
  border: 2px solid #1B365D;
  color: #1B365D;
}
.btn--outline:hover {
  background: #1B365D;
  color: #ffffff;
}
.btn--gradient {
  background: linear-gradient(135deg, #1B365D, #D4AF37);
  border: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.btn--gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #D4AF37, #1B365D);
  transition: left 0.3s ease;
}
.btn--gradient:hover::before {
  left: 0;
}
.btn--gradient span {
  position: relative;
  z-index: 1;
}
.btn--floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.3);
  z-index: 1000;
}
.btn--floating:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(27, 54, 93, 0.4);
}

.card--glass {
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}
.card--neon {
  background: #212529;
  border: 2px solid #D4AF37;
  box-shadow: 0 0 5px #D4AF37, 0 0 10px #D4AF37, 0 0 15px #D4AF37, inset 0 0 5px rgba(212, 175, 55, 0.2);
  -webkit-animation: neon-pulse 2s infinite alternate;
          animation: neon-pulse 2s infinite alternate;
}
.card--gradient-border {
  position: relative;
  background: #ffffff;
}
.card--gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #1B365D, #D4AF37, #1B365D);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: xor;
}
.card--floating {
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}
.card--tilt {
  transition: transform 0.3s ease;
}
.card--tilt:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #1B365D 0%, #D4AF37 100%);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #212529 0%, #1B365D 100%);
}

.bg-gradient-light {
  background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 100%);
}

.bg-pattern-dots {
  background-image: radial-gradient(circle, rgba(27, 54, 93, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-pattern-grid {
  background-image: linear-gradient(rgba(27, 54, 93, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 54, 93, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-pattern-diagonal {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(27, 54, 93, 0.05) 10px, rgba(27, 54, 93, 0.05) 20px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.overlay--dark {
  background: rgba(33, 37, 41, 0.7);
}
.overlay--primary {
  background: rgba(27, 54, 93, 0.8);
}
.overlay--gradient {
  background: linear-gradient(135deg, rgba(27, 54, 93, 0.8), rgba(33, 37, 41, 0.6));
}

.section--full-height {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.section--angled {
  position: relative;
}
.section--angled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: inherit;
  transform: skewY(-3deg);
  transform-origin: top left;
}
.section--wave {
  position: relative;
}
.section--wave::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,64L48,69.3C96,75,192,85,288,90.7C384,96,480,96,576,85.3C672,75,768,53,864,48C960,43,1056,53,1152,64C1200,75,1248,85,1296,85.3L1440,86L1440,120L1296,120C1152,120,1056,120,960,120C864,120,768,120,672,120C576,120,480,120,384,120C288,120,192,120,96,120L0,120Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}

.text--gradient {
  background: linear-gradient(135deg, #1B365D, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.text--glow {
  text-shadow: 0 0 10px rgba(27, 54, 93, 0.5);
}
.text--outline {
  -webkit-text-stroke: 2px #1B365D;
  -webkit-text-fill-color: transparent;
}
.text--shadow-soft {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.text--shadow-hard {
  text-shadow: 2px 2px 0 #212529;
}

.heading--decorated {
  position: relative;
}
.heading--decorated::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #1B365D, #D4AF37);
  border-radius: 2px;
}
.heading--underline {
  position: relative;
}
.heading--underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1B365D;
  transition: width 0.3s ease;
}
.heading--underline:hover::after {
  width: 100%;
}

.tooltip {
  position: relative;
  cursor: help;
}
.tooltip__content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #212529;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.tooltip__content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #212529;
}
.tooltip:hover .tooltip__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 37, 41, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.modal.active .modal__content {
  transform: scale(1);
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #6C757D;
}
.modal__close:hover {
  color: #1B365D;
}

.accordion {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
}
.accordion__item {
  border-bottom: 1px solid #E5E7EB;
}
.accordion__item:last-child {
  border-bottom: none;
}
.accordion__header {
  padding: 1.5rem;
  background: #F8F9FA;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.accordion__header:hover {
  background: rgba(27, 54, 93, 0.05);
}
.accordion__title {
  margin: 0;
  font-weight: 600;
  color: #212529;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__content.active {
  max-height: 500px;
}
.accordion__body {
  padding: 1.5rem;
  color: #6C757D;
  line-height: 1.625;
}

.tabs__nav {
  display: flex;
  border-bottom: 2px solid #E5E7EB;
  margin-bottom: 2rem;
}
.tabs__button {
  padding: 1rem 1.5rem;
  border: none;
  background: none;
  color: #6C757D;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.tabs__button::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1B365D;
  transition: width 0.3s ease;
}
.tabs__button:hover {
  color: #1B365D;
}
.tabs__button.active {
  color: #1B365D;
}
.tabs__button.active::after {
  width: 100%;
}
.tabs__content {
  display: none;
}
.tabs__content.active {
  display: block;
  -webkit-animation: fadeInUp 0.5s ease;
          animation: fadeInUp 0.5s ease;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.5rem;
}

.m-2 {
  margin: 1rem;
}

.m-3 {
  margin: 1.5rem;
}

.m-4 {
  margin: 2rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.rounded-sm {
  border-radius: 4px;
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-xl {
  border-radius: 16px;
}

.rounded-full {
  border-radius: 50%;
}

.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.shadow-xl {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1B365D, #D4AF37);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.125rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.3);
}

@media screen and (max-width: 768px) {
  .lg\:hidden {
    display: none;
  }
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:text-center {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .md\:hidden {
    display: none;
  }
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:text-center {
    text-align: center;
  }
  .md\:flex-col {
    flex-direction: column;
  }
}
@media screen and (max-width: 375px) {
  .sm\:hidden {
    display: none;
  }
  .sm\:block {
    display: block;
  }
  .sm\:text-center {
    text-align: center;
  }
  .sm\:text-sm {
    font-size: 0.875rem;
  }
}
@-webkit-keyframes neon-pulse {
  0% {
    box-shadow: 0 0 5px #D4AF37, 0 0 10px #D4AF37, 0 0 15px #D4AF37, inset 0 0 5px rgba(212, 175, 55, 0.2);
  }
  100% {
    box-shadow: 0 0 10px #D4AF37, 0 0 20px #D4AF37, 0 0 30px #D4AF37, inset 0 0 10px rgba(212, 175, 55, 0.4);
  }
}
@keyframes neon-pulse {
  0% {
    box-shadow: 0 0 5px #D4AF37, 0 0 10px #D4AF37, 0 0 15px #D4AF37, inset 0 0 5px rgba(212, 175, 55, 0.2);
  }
  100% {
    box-shadow: 0 0 10px #D4AF37, 0 0 20px #D4AF37, 0 0 30px #D4AF37, inset 0 0 10px rgba(212, 175, 55, 0.4);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}