@charset "UTF-8";

/* Font Stabilization */
body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar Utilities */
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Tab UI Fixed State (ensure default visibility handled by JS/HTML structure, style supports it) */
.tab-content {
    transition: opacity 0.3s ease;
}

/* Shadow Minimization override if needed, though Tailwind classes control it mostly */


/* Header CTA hard-fix */
.site-header-right{
  display:flex;
  align-items:center;
  gap:16px;
}
.site-contact-cta{
  display:none;
}
.site-contact-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  padding:10px 20px;
  border-radius:6px;
  background:#0b2545;
  color:#ffffff !important;
  font-size:14px;
  font-weight:500;
  line-height:1;
  text-decoration:none;
  white-space:nowrap;
}
.site-contact-cta a:hover{
  opacity:.9;
}
@media (min-width: 768px){
  .site-contact-cta{
    display:block !important;
  }
}

/* Anti-sales notice */
.contact-notice{
  margin: 0 0 2rem 0;
  color:#4b5563;
  font-size:14px;
  line-height:1.9;
}
.contact-notice-title{
  margin: 0 0 .75rem 0;
  color:#0b2545;
  font-weight:700;
}
.contact-notice p{
  margin: 0;
}
.contact-notice p + p{
  margin-top: .75rem;
}


/* Contact submit button hard-fix */
.contact-submit-wrap{
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}
.contact-submit-note{
  margin: 0 0 16px 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}
.contact-submit-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 32px;
  border: 0;
  border-radius: 8px;
  background: #0b2545;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.contact-submit-btn:hover{
  opacity: .92;
}
.contact-submit-btn:focus{
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}
@media (max-width: 640px){
  .contact-submit-btn{
    width: 100%;
    min-width: 0;
  }
}


/* Brand link fix */
.site-brand,
.site-brand:link,
.site-brand:visited,
.site-brand:hover,
.site-brand:active{
  text-decoration: none !important;
  color: #0b2545;
}


/* Header Nav underline control */
header nav a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: border-color .2s ease;
}

header nav a:hover {
  border-bottom: 2px solid #0b2545;
}

header nav a[aria-current="page"] {
  border-bottom: 2px solid #0b2545;
}
