@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* CSS Variables */
:root {
  --primary-navy: #004e8a;
  --primary-navy-dark: #003d6b;
  --text-dark: #313943;
  --text-gray: #666666;
  --bg-light: #f7f7fa;
  --bg-gray: #e8eaed;
  --border-color: #ddd;
  --white: #ffffff;
}

/*
#####################################################################
Reset
#####################################################################
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* アンカーずれ対策 */

html {
  scroll-padding-top: 100px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--primary-navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-navy-dark);
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: var(--white);
}

/* .btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  background-color: var(--text-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-dark:hover {
  background-color: #1f252b;
} */

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.section-divider {
  width: 48px;
  height: 4px;
  background-color: var(--primary-navy);
  margin: 0 auto 16px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--primary-navy);
  text-align: center;
  font-weight: 500;
  margin-bottom: 32px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-gray);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Header */
.header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-top {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-info {
  font-size: 12px;
  color: var(--text-gray);
}

.logo {
  text-align: center;
}

.logo-main {
  font-size: 20px;
  font-weight: 550;
  color: var(--primary-navy);
}

.logo-sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-navy);
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
}

.phone svg {
  width: 20px;
  height: 20px;
}

/* Navigation */
.nav {
  border-bottom: 1px solid #f0f0f0;
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 0;
}

.nav-link {
  display: block;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--primary-navy);
  border-bottom-color: var(--primary-navy);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Hero */
.hero {
  position: relative;
  height: 600px;
  /* 背景画像は未収録のため紺単色で表示する */
  background-color: var(--primary-navy-dark);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0d878;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  text-align: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.slide-dots {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
}

.slide-dot.inactive {
  opacity: 0.5;
}

/* Introduction */
.introduction {
  background-color: var(--white);
}

.intro-text {
  font-size: 14px;
  line-height: 2;
  color: var(--text-gray);
  text-align: center;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card {
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-4px);
}

.card-image {
  height: 256px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 24px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.card-title {
  font-size: 1.75rem;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 14px;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: 16px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Blog Section */
.blog-section {
  background-color: var(--bg-light);
}

.blog-list {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  margin-bottom: 32px;
}

.blog-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s;
}

.blog-item:last-child {
  border-bottom: none;
}

.blog-item:hover {
  background-color: #f9f9f9;
}

.blog-arrow {
  color: #ccc;
}

.blog-date {
  font-size: 14px;
  color: var(--text-gray);
  flex-shrink: 0;
}

.blog-title {
  font-size: 14px;
  color: var(--text-dark);
}

.blog-title:hover {
  color: var(--primary-navy);
}

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

/* Service Cards */
.service-section {
  background-color: var(--white);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-image {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: 16px;
}

.service-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.service-overlay p {
  font-size: 12px;
  text-align: center;
}

.service-desc {
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-top: none;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Access Section */
.access-section {
  background-color: var(--bg-light);
}

.office-name {
  font-size: 18px;
  color: var(--primary-navy);
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-table {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  margin-bottom: 32px;
}

.contact-row {
  display: flex;
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-label {
  width: 120px;
  font-size: 14px;
  color: var(--text-gray);
  flex-shrink: 0;
}

.contact-value {
  font-size: 14px;
  color: var(--text-dark);
  white-space: pre-line;
}

.map-container {
  height: 300px;
  background-color: #ddd;
  margin-bottom: 32px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.features-divider {
  width: 48px;
  height: 4px;
  background-color: var(--primary-navy);
  margin-bottom: 24px;
}

.features-subtitle {
  font-size: 14px;
  color: var(--primary-navy);
  font-weight: 500;
}

.features-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Column Section */
.column-section {
  background-color: var(--bg-light);
}

.column-post {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  padding: 24px;
  margin-bottom: 32px;
}

.column-date {
  font-size: 14px;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.column-title {
  font-size: 14px;
  color: var(--text-dark);
}

/* Past Blog Section */
.past-blog-section {
  background-color: var(--white);
}

/* Footer */
.footer {
  background-color: var(--white);
  border-top: 1px solid #e0e0e0;
}

.footer-contact {
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
}

.footer-contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer-phone svg {
  width: 24px;
  height: 24px;
}

.footer-hours {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.scroll-top {
  padding: 12px;
  border: 1px solid #ddd;
  background: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.scroll-top:hover {
  background-color: #f5f5f5;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.footer-nav {
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.footer-link {
  font-size: 12px;
  color: var(--text-gray);
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--primary-navy);
}

.footer-bottom {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.footer-logo {
  margin-bottom: 16px;
}

.copyright {
  font-size: 12px;
  color: var(--text-gray);
}

/*
#####################################################################
Contact & Pricing
#####################################################################
*/

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  padding: 80px 0;
  text-align: center;
} 

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.page-breadcrumb a:hover {
  color: var(--white);
}

.page-breadcrumb span {
  margin: 0 8px;
}

/* Background helper */
  .bg-light {
  background-color: var(--bg-light);
}

/*
#####################################################################
Contact
#####################################################################
*/

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-method {
  background-color: var(--white);
  padding: 40px 32px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.method-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-navy);
}

.contact-method h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.method-phone {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.method-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.method-hours {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.method-note {
  font-size: 12px;
  color: var(--text-gray);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}

/* Form Wrapper */
.form-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.required-mark {
  color: #e53935;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group .required {
  color: #e53935;
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(0, 78, 138, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group select {
  cursor: pointer;
  background-color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Radio & Checkbox */
.radio-group {
  display: flex;
  gap: 24px;
  padding-top: 4px;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dark);
}

.radio-label input,
.checkbox-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group {
  padding-top: 8px;
}

.checkbox-label a {
  color: var(--primary-navy);
  text-decoration: underline;
}

/* Submit Button */
.form-submit {
  padding-top: 16px;
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  background-color: var(--primary-navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-submit:hover {
  background-color: var(--primary-navy-dark);
  transform: translateY(-2px);
}

/* Office Sidebar */
.office-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.office-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.office-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-navy);
}

.office-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 12px;
  color: var(--text-gray);
}

.info-value {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.info-value a {
  color: var(--primary-navy);
  font-weight: 500;
}

/* Map */
.map-small {
  height: 180px;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
}

.map-small iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.access-list {
  list-style: none;
}

.access-list li {
  font-size: 13px;
  color: var(--text-gray);
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.access-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-navy);
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question,
.faq-answer {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
}

.faq-question {
  background-color: var(--white);
  border-bottom: 1px solid #eee;
}

.faq-answer {
  background-color: #fafafa;
}

.faq-q,
.faq-a {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.faq-q {
  background-color: var(--primary-navy);
  color: var(--white);
}

.faq-a {
  background-color: #e8eaed;
  color: var(--text-dark);
}

.faq-question p,
.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
  padding-top: 4px;
}

.faq-question p {
  font-weight: 500;
}

/*
#####################################################################
Pricing
#####################################################################
*/

/* Navigation Active State */
.nav-link.active {
  color: var(--primary-navy);
  border-bottom-color: var(--primary-navy);
}

/* Pricing Section */
.pricing-section {
  padding: 60px 0;
}

.pricing-section.bg-light {
  background-color: var(--bg-light);
}

.pricing-category {
  max-width: 1000px;
  margin: 0 auto;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--primary-navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
}

.category-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 32px;
  padding-left: 64px;
}

/* Pricing Table */
.pricing-table {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr 180px 200px;
  background-color: var(--primary-navy);
  color: var(--white);
}

.pricing-header .pricing-col {
  padding: 16px 20px;
  font-weight: 500;
  font-size: 14px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 180px 200px;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  background-color: #f9f9f9;
}

.pricing-row .pricing-col {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.pricing-row .pricing-col.price {
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 16px;
}

.pricing-row .pricing-col.note {
  color: var(--text-gray);
  font-size: 13px;
}

/* Notes Box */
.notes-box {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px;
  margin-top: 32px;
}

.notes-list {
  list-style: none;
}

.notes-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

.notes-list li:last-child {
  margin-bottom: 0;
}

.notes-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-navy);
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  padding: 80px 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: var(--white);
  color: var(--primary-navy);
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-cta-phone svg {
  width: 20px;
  height: 20px;
}

.btn-cta-contact {
  display: inline-block;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--white);
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-cta-contact:hover {
  background-color: var(--white);
  color: var(--primary-navy);
}

/*
#####################################################################
レスポンシブ対応（追記）
#####################################################################
*/

/* タブレット */
@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-methods {
    grid-template-columns: 1fr 1fr;
  }

  /* 問合せグリッドは1列化し、事務所情報を下に配置する */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-header,
  .pricing-row {
    grid-template-columns: 1fr 140px 160px;
  }

  .features-grid {
    gap: 32px;
  }

  .footer-contact-inner {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* スマートフォン */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* ヘッダーは縦積み中央揃えにし、密集を解消する */
  .header-top-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .header-info {
    display: none;
  }

  .logo-main {
    font-size: 16px;
  }

  .logo-sub {
    font-size: 13px;
  }

  .header-contact {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .phone {
    font-size: 16px;
  }

  .header-contact .btn-outline {
    padding: 8px 16px;
    font-size: 12px;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* ナビは閉状態で非表示、開状態で縦積み表示する */
  .nav {
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-link {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  /* ヒーローは高さを抑え、文字を縮小する */
  .hero {
    height: 420px;
  }

  .hero-title {
    font-size: 1.75rem;
    /* 1文字だけの改行を抑える */
    text-wrap: balance;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* カード網はすべて1列化する（minmaxで内容物による膨張を抑止） */
  .cards-grid,
  .service-cards,
  .contact-methods,
  .features-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-wrapper,
  .office-sidebar {
    min-width: 0;
  }

  /* フォーム部品が列幅を超えないようにする */
  .form-group select,
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group textarea {
    max-width: 100%;
    min-width: 0;
  }

  .card-image {
    height: 200px;
  }

  /* ブログ行は折返して読みやすくする */
  .blog-item {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* 問合せ表は縦積みにする */
  .contact-row {
    flex-direction: column;
    gap: 4px;
  }

  .contact-label {
    width: auto;
  }

  /* フォームは1列化し、余白を抑える */
  .form-wrapper {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .method-phone {
    font-size: 22px;
  }

  /* 料金表は見出し行を隠し、各行をブロック化する */
  .pricing-header {
    display: none;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-row .pricing-col {
    padding: 8px 20px;
  }

  .pricing-row .pricing-col:first-child {
    padding-top: 16px;
    font-weight: 500;
  }

  .pricing-row .pricing-col:last-child {
    padding-bottom: 16px;
  }

  .category-desc {
    padding-left: 0;
  }

  /* フッターは縦積みにする */
  .footer-contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-phone {
    font-size: 1.5rem;
  }

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

  .page-hero {
    padding: 60px 0;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }
}