@charset "UTF-8";
/* ===================================
   ページ共通スタイル
   =================================== */
/* 🔥 最先端ページヘッダー（アニメーション装飾） */
.page-header {
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5F0 50%, #F5FFF0 100%);
}

.page-header::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  content: "";
  background: linear-gradient(135deg, rgba(180, 212, 255, 0.3) 0%, rgba(197, 224, 255, 0.2) 100%);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatRotate 20s ease-in-out infinite;
}

.page-header::after {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  content: "";
  background: linear-gradient(135deg, rgba(255, 180, 212, 0.25) 0%, rgba(255, 197, 224, 0.15) 100%);
  border-radius: 50%;
  opacity: 0.35;
  animation: floatRotate 25s ease-in-out infinite reverse;
}

@keyframes floatRotate {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg) scale(1.05);
  }
  66% {
    transform: translate(-30px, 30px) rotate(240deg) scale(0.95);
  }
}
.page-title {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(180, 212, 255, 0.1);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 50%, var(--pastel-green) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  animation: titleFadeIn 0.8s ease forwards;
  -webkit-text-fill-color: transparent;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-subtitle {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #666;
}

/* ===================================
   Informationページ
   =================================== */
.info-list-section {
  padding: 80px 0;
  background: #fff;
}

.info-list {
  max-width: 900px;
  margin: 0 auto;
}

/* 🔥 最先端インフォアイテム（グラスモーフィズム＋ライト効果） */
.info-item {
  position: relative;
  padding: 40px;
  margin-bottom: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 5px solid transparent;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(180, 212, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item::before {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(180, 212, 255, 0.15) 50%, transparent);
  transition: left 0.7s ease;
}

.info-date {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pastel-blue);
}

.info-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.info-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

/* ===================================
   Businessページ
   =================================== */
.business-intro-section {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.section-heading {
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  letter-spacing: -0.02em;
}

.section-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: #666;
}

.business-detail-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
}

.business-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* 🔥 最先端ビジネスカード（3D効果） */
.business-detail-card {
  position: relative;
  padding: 45px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(180, 212, 255, 0.12), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.business-detail-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: radial-gradient(circle at top left, rgba(180, 212, 255, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.business-icon {
  margin-bottom: 20px;
  font-size: 48px;
}

.business-detail-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.business-description p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.business-list {
  padding: 0;
  list-style: none;
}

.business-list li {
  position: relative;
  padding: 8px 0;
  padding-left: 25px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.business-list li::before {
  position: absolute;
  left: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--pastel-blue);
  content: "✓";
}

/* サポート体制 */
.support-section {
  padding: 80px 0;
  background: #fff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.support-card {
  padding: 35px 25px;
  text-align: center;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
  border-radius: 20px;
  transition: all 0.3s;
}

.support-icon {
  margin-bottom: 20px;
  font-size: 48px;
}

.support-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.support-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* 導入の流れ */
.flow-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
}

.flow-steps {
  max-width: 700px;
  margin: 50px auto 0;
}

.flow-step {
  position: relative;
  padding: 35px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  border-radius: 20px;
}

.flow-step h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.flow-step p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.flow-arrow {
  margin: 20px 0;
  font-size: 32px;
  color: var(--pastel-blue);
  text-align: center;
}

/* 対応業種 */
.industries-section {
  padding: 80px 0;
  background: #fff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.industry-tag {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
  border: 2px solid var(--pastel-blue);
  border-radius: 25px;
  transition: all 0.3s;
}

.industries-note {
  margin-top: 30px;
  font-size: 14px;
  color: #999;
  text-align: center;
}

.main-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.main-service-card {
  position: relative;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.service-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  border-radius: 50%;
}

.main-service-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

.service-lead {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pastel-blue);
}

.service-detail-text {
  padding-top: 20px;
  border-top: 1px solid #F0F0F0;
}

.service-detail-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.mp-detail-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
}

/* CTA */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 50%, var(--pastel-green) 100%);
}

.cta-title {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.cta-text {
  margin-bottom: 40px;
  font-size: 18px;
  color: #fff;
}
.cta-text.cta-text-black {
  color: var(--wp--preset--color--my-black);
}

.btn-cta {
  display: inline-block;
  padding: 18px 50px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--pastel-blue);
  text-decoration: none;
  letter-spacing: -0.01em;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.btn-cta:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

/* ===================================
   Contactページ
   =================================== */
.contact-title {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.contact-message {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  text-align: center;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-btn {
  display: inline-block;
  padding: 15px 40px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  box-shadow: 0 10px 30px rgba(180, 212, 255, 0.4);
  transform: translateY(-3px);
}

.contact-btn-secondary {
  color: var(--pastel-blue);
  background: #fff;
  border: 2px solid var(--pastel-blue);
}

.contact-form-section {
  padding: 80px 0;
  background: #fff;
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  text-align: center;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group.full-width {
  grid-column: 1/-1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.required {
  margin-left: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #FF6B6B;
}

/* 🔥 最先端フォーム入力（グラスモーフィズム＋グロウ効果） */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  font-family: "M PLUS Rounded 1c", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  background: rgba(240, 245, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(180, 212, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--pastel-blue);
  outline: none;
  box-shadow: 0 4px 20px rgba(180, 212, 255, 0.25), 0 0 0 4px rgba(180, 212, 255, 0.1), 0 0 20px rgba(180, 212, 255, 0.15);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
}

.form-privacy {
  margin-bottom: 30px;
}

.form-privacy-link {
  color: var(--pastel-blue);
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 15px;
  color: #666;
}

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

/* 🔥 最先端送信ボタン（リップル＋グロウ） */
.btn-submit {
  position: relative;
  padding: 22px 70px;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
  border: 0;
  border-radius: 35px;
  box-shadow: 0 8px 25px rgba(180, 212, 255, 0.35), 0 0 0 0 rgba(180, 212, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn-submit:hover::before {
  width: 400px;
  height: 400px;
}

.btn-submit:hover {
  filter: brightness(1.1);
  box-shadow: 0 15px 45px rgba(180, 212, 255, 0.5), 0 0 0 8px rgba(180, 212, 255, 0.15), 0 0 35px rgba(180, 212, 255, 0.3);
  transform: translateY(-5px);
}

.btn-submit:active {
  transform: translateY(-2px);
}

.contact-info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
}

/* 🔥 最先端コンタクトカード（グラスモーフィズム＋3D） */
.contact-info-card {
  position: relative;
  padding: 45px 35px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(180, 212, 255, 0.12), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.contact-info-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: radial-gradient(circle at center, rgba(180, 212, 255, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-icon {
  margin-bottom: 20px;
  font-size: 48px;
}

.contact-info-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.contact-value {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--pastel-blue);
}

.contact-note {
  font-size: 13px;
  color: #999;
}

.map-section {
  padding: 80px 0;
  background: #fff;
}

.map-container {
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.access-info {
  max-width: 800px;
  padding: 40px;
  margin: 0 auto;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
  border-radius: 15px;
}

.access-info h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.access-info ul {
  padding: 0;
  list-style: none;
}

.access-info ul li {
  position: relative;
  padding: 10px 0;
  padding-left: 25px;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.access-info ul li::before {
  position: absolute;
  left: 0;
  content: "🚃";
}

/* ===================================
   レスポンシブ
   =================================== */
/* PC・タブレットでは非表示、モバイルのみ表示 */
.sp-only {
  display: none;
}

@media (max-width: 640px) {
  .sp-only {
    display: inline;
  }
}
/* タブレット表示 */
@media (max-width: 1024px) {
  .page-header {
    padding: 100px 0 60px;
  }
  .page-title {
    font-size: 42px;
    line-height: 1.4;
    word-break: keep-all;
  }
  .business-detail-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* 小型タブレット */
@media (max-width: 768px) {
  .page-header {
    padding: 90px 0 50px;
  }
  .page-title {
    display: block;
    padding: 0 10px;
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 1.6;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .page-subtitle {
    display: block;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .info-item {
    padding: 25px 20px;
  }
  .info-content h3 {
    font-size: 18px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .info-text {
    font-size: 14px;
    line-height: 1.9;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .section-heading {
    font-size: 24px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .business-detail-card {
    padding: 30px 25px;
  }
  .business-detail-card h3 {
    font-size: 18px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-title {
    font-size: 28px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .cta-text {
    font-size: 16px;
    line-height: 1.7;
  }
  .access-info {
    padding: 30px 20px;
  }
}
/* スマートフォン表示 */
@media (max-width: 640px) {
  .page-header {
    padding: 80px 0 40px;
  }
  /* モバイルでのページタイトル：英語+日本語の縦並び中央揃え */
  .page-title {
    display: block;
    padding: 0 10px;
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.7;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .page-subtitle {
    display: block;
    padding: 0 5px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  /* Information ページ */
  .info-list-section {
    padding: 50px 0;
  }
  .info-item {
    padding: 20px 16px;
    margin-bottom: 20px;
  }
  .info-date {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .info-content h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .info-text {
    font-size: 13px;
    line-height: 2;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  /* Business ページ */
  .business-intro-section,
  .business-details-section,
  .support-section,
  .flow-section,
  .industries-section,
  .cta-section {
    padding: 50px 0;
  }
  .section-heading {
    padding: 0 5px;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .section-text {
    padding: 0 5px;
    font-size: 14px;
    line-height: 2;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .business-detail-card {
    padding: 25px 18px;
  }
  .detail-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  .detail-icon svg {
    width: 28px;
    height: 28px;
  }
  .business-detail-card h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    word-break: keep-all;
  }
  .business-detail-card p {
    font-size: 13px;
    line-height: 1.8;
  }
  .support-card {
    padding: 25px 18px;
  }
  .support-card h3 {
    font-size: 16px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .support-card p {
    font-size: 13px;
    line-height: 1.7;
  }
  .flow-step {
    padding: 25px 18px;
  }
  .step-number {
    height: 36px;
    margin-bottom: 12px;
    font-size: 14px;
  }
  .flow-step h3 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .flow-step p {
    font-size: 13px;
    line-height: 1.7;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .industry-tag {
    padding: 12px 10px;
    font-size: 13px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-title {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.6;
    word-break: keep-all;
  }
  .cta-text {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.8;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  /* Contact ページ */
  .contact-form-section,
  .contact-info-section {
    padding: 50px 0;
  }
  .form-group label {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .form-control {
    padding: 12px 15px;
    font-size: 14px;
  }
  textarea.form-control {
    min-height: 150px;
  }
  .btn-submit {
    padding: 15px 40px;
    font-size: 15px;
  }
  .contact-info-card {
    padding: 25px 18px;
  }
  .contact-info-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    word-break: keep-all;
  }
  .contact-info-card p,
  .contact-info-card a {
    font-size: 14px;
    line-height: 1.8;
  }
  .access-info {
    padding: 25px 18px;
  }
  .access-info h3 {
    font-size: 18px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .access-info p {
    font-size: 13px;
    line-height: 1.8;
    word-break: break-all;
  }
  .map-container {
    height: 250px;
    border-radius: 12px;
  }
}
/* 極小スマートフォン */
@media (max-width: 375px) {
  .page-title {
    font-size: 24px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industry-tag {
    text-align: center;
  }
}