@charset "UTF-8";
/* 
Theme Name: 新興電機株式会社_HP
Author:　KAI NAKAMURA
Author URI:　https://kainakamura.vercel.app
 */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes scrollLine {
  0% {
    height: 0;
  }
  50% {
    height: 40px;
  }
  100% {
    height: 0;
  }
}
@keyframes scrollLine {
  0% {
    height: 0;
  }
  50% {
    height: 40px;
  }
  100% {
    height: 0;
  }
}
@-webkit-keyframes heroSlide {
  0%, 33.33% {
    opacity: 1;
  }
  33.34%, 100% {
    opacity: 0;
  }
}
@keyframes heroSlide {
  0%, 33.33% {
    opacity: 1;
  }
  33.34%, 100% {
    opacity: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  line-height: 1.8;
  background: #ffffff;
  overflow-x: hidden;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}
@media (min-width: 768px) {
  .site-header {
    height: 80px;
    width: 85%;
    border-radius: 60px;
    top: 25px;
  }
}
@media (min-width: 1024px) {
  .site-header {
    width: 75%;
    max-width: 1100px;
    border-radius: 70px;
    top: 30px;
  }
}
.site-header.scrolled {
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.15);
  top: 10px;
}
@media (min-width: 768px) {
  .site-header.scrolled {
    top: 15px;
  }
}

.header-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .header-container {
    padding: 0 70px;
  }
}

.logo .logo-text {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #0066cc;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.logo .logo-text:hover {
  color: #00a3e0;
}

.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }
}
.main-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}
.main-nav .nav-link {
  position: relative;
  transition: all 0.3s ease;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0066cc;
  transition: width 0.3s ease;
}
.main-nav .nav-link:hover {
  color: #0066cc;
}
.main-nav .nav-link:hover::after {
  width: 100%;
}
.main-nav .nav-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.main-nav .nav-jp {
  font-size: 14px;
  font-weight: 500;
}
.main-nav .nav-en {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 1001;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 104px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px - 40px);
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 999;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .mobile-menu {
    top: 130px;
    height: calc(100vh - 80px - 50px);
  }
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .mobile-nav {
  padding: 40px 20px;
}
.mobile-menu .mobile-nav ul {
  list-style: none;
}
.mobile-menu .mobile-nav li {
  margin-bottom: 8px;
}
.mobile-menu .mobile-nav .mobile-nav-link {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-nav .mobile-nav-link:hover {
  background: #0066cc;
  color: #ffffff;
  transform: translateX(10px);
}
.mobile-menu .mobile-nav .mobile-nav-jp {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.mobile-menu .mobile-nav .mobile-nav-en {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  padding-top: 0;
}
@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    height: 100vh;
  }
}

.hero-news-bar {
  position: absolute;
  bottom: 80px;
  left: 40px;
  width: calc(100% - 80px);
  max-width: 800px;
  z-index: 10;
  -webkit-animation: fadeInUp 1s ease 1.2s both;
          animation: fadeInUp 1s ease 1.2s both;
}
@media (min-width: 768px) {
  .hero-news-bar {
    bottom: 100px;
    left: 60px;
    width: auto;
    max-width: 900px;
  }
}
@media (min-width: 1024px) {
  .hero-news-bar {
    bottom: 120px;
    left: 80px;
    max-width: 1000px;
  }
}

.hero-news-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 5px;
  align-items: center;
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .hero-news-container {
    padding: 20px 40px;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .hero-news-container {
    padding: 22px 50px;
    gap: 40px;
  }
}

.hero-news-title {
  display: inline-block;
  padding: 8px 20px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero-news-title {
    font-size: 15px;
    padding: 10px 24px;
  }
}

.hero-news-text {
  font-size: 13px;
  line-height: 1.6;
  color: #1a1a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero-news-text {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .hero-news-text {
    font-size: 15px;
  }
}

.hero-news-link {
  flex-shrink: 0;
}

.hero-news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: underline;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero-news-btn {
    font-size: 14px;
  }
}
.hero-news-btn:hover {
  color: #0066cc;
  text-decoration: none;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide:nth-child(1) {
  -webkit-animation: heroSlide 15s infinite;
          animation: heroSlide 15s infinite;
}
@media (max-width: 767px) {
  .hero-slide:nth-child(1) {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
}
.hero-slide:nth-child(2) {
  -webkit-animation: heroSlide 15s 5s infinite;
          animation: heroSlide 15s 5s infinite;
}
@media (max-width: 767px) {
  .hero-slide:nth-child(2) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    -webkit-animation: none !important;
            animation: none !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }
}
.hero-slide:nth-child(3) {
  -webkit-animation: heroSlide 15s 10s infinite;
          animation: heroSlide 15s 10s infinite;
}
@media (max-width: 767px) {
  .hero-slide:nth-child(3) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    -webkit-animation: none !important;
            animation: none !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }
}
.hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  -webkit-animation: fadeInUp 1s ease 0.3s both;
          animation: fadeInUp 1s ease 0.3s both;
}
.hero-title .hero-title-line {
  display: block;
  margin-bottom: 10px;
}
.hero-title .hero-title-line:nth-child(2) {
  -webkit-animation: fadeInUp 1s ease 0.5s both;
          animation: fadeInUp 1s ease 0.5s both;
}

.hero-subtitle {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 300;
  letter-spacing: 2px;
  -webkit-animation: fadeInUp 1s ease 0.7s both;
          animation: fadeInUp 1s ease 0.7s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  z-index: 2;
  -webkit-animation: fadeIn 1s ease 1s both;
          animation: fadeIn 1s ease 1s both;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: #ffffff;
  -webkit-animation: scrollLine 2s ease-in-out infinite;
          animation: scrollLine 2s ease-in-out infinite;
}

.section {
  padding: 100px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 80px;
  }
}

.section-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.section-title.animate {
  -webkit-animation: fadeInUp 0.8s ease both;
          animation: fadeInUp 0.8s ease both;
}
.section-title p {
  font-size: clamp(14px, 2vw, 18px);
  color: #666666;
  margin: 0;
}
.section-title .section-title-main {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #1a1a1a;
}
.section-title .section-title-sub {
  font-family: "Outfit", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
}

.news-top-section {
  padding: 40px 0;
  background: transparent;
}
@media (min-width: 768px) {
  .news-top-section {
    padding: 50px 0;
  }
}

.news-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 5px;
  align-items: center;
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
}
.news-top.animate {
  -webkit-animation: fadeInUp 0.8s ease both;
          animation: fadeInUp 0.8s ease both;
}
@media (min-width: 768px) {
  .news-top {
    padding: 20px 40px;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .news-top {
    padding: 22px 50px;
    gap: 40px;
  }
}

.news-top-title {
  display: inline-block;
  padding: 8px 20px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .news-top-title {
    font-size: 15px;
    padding: 10px 24px;
  }
}

.news-top-text {
  font-size: 13px;
  line-height: 1.6;
  color: #1a1a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .news-top-text {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .news-top-text {
    font-size: 15px;
  }
}

.news-top-link {
  flex-shrink: 0;
}

.news-list-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: underline;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .news-list-btn {
    font-size: 14px;
  }
}
.news-list-btn:hover {
  color: #0066cc;
  text-decoration: none;
}

.about-section {
  background: #f8f9fa;
}

.about-content {
  display: grid;
  gap: 60px;
}
@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  opacity: 0;
}
.about-images.animate {
  -webkit-animation: slideInLeft 0.8s ease 0.2s both;
          animation: slideInLeft 0.8s ease 0.2s both;
}
.about-images .about-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.about-images .about-image-2 {
  margin-top: 40px;
}
.about-images .about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.about-images .about-image:hover img {
  transform: scale(1.05);
}
.about-images .about-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.about-text {
  opacity: 0;
}
.about-text.animate {
  -webkit-animation: slideInRight 0.8s ease 0.2s both;
          animation: slideInRight 0.8s ease 0.2s both;
}
.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about-text p {
    font-size: 16px;
  }
}
.about-text .btn {
  margin-top: 30px;
}

.features-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
}
.feature-card.animate {
  -webkit-animation: scaleIn 0.6s ease both;
          animation: scaleIn 0.6s ease both;
}
.feature-card.animate:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.feature-card.animate:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.feature-card:hover .feature-image img,
.feature-card:hover .feature-image .image-placeholder {
  transform: scale(1.1);
}

.feature-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d0d0d0 0%, #e8e8e8 100%);
  transition: transform 0.6s ease;
}

.feature-content {
  padding: 30px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  .feature-title {
    font-size: 20px;
  }
}

.feature-description {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 20px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0066cc;
  transition: all 0.3s ease;
}
.feature-link:hover {
  color: #00a3e0;
  transform: translateX(5px);
}

.cta-section {
  background: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 120px 0;
  }
}

.cta-content {
  opacity: 0;
}
.cta-content.animate {
  -webkit-animation: fadeInUp 0.8s ease both;
          animation: fadeInUp 0.8s ease both;
}

.cta-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.access-section {
  background: #f8f9fa;
}

.access-content {
  display: grid;
  gap: 60px;
}
@media (min-width: 1024px) {
  .access-content {
    grid-template-columns: 2fr 1fr;
    gap: 80px;
  }
}

.access-map {
  opacity: 0;
}
.access-map.animate {
  -webkit-animation: slideInLeft 0.8s ease 0.2s both;
          animation: slideInLeft 0.8s ease 0.2s both;
}
.access-map .map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .access-map .map-placeholder {
    height: 500px;
  }
}
.access-map .map-placeholder iframe {
  filter: grayscale(30%);
}

.access-info {
  opacity: 0;
}
.access-info.animate {
  -webkit-animation: slideInRight 0.8s ease 0.2s both;
          animation: slideInRight 0.8s ease 0.2s both;
}

.info-item {
  margin-bottom: 40px;
}

.info-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.info-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

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

.info-links {
  list-style: none;
}
.info-links li {
  margin-bottom: 10px;
}
.info-links li a {
  display: inline-block;
  font-size: 15px;
  color: #666666;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}
.info-links li a::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #0066cc;
  transition: all 0.3s ease;
}
.info-links li a:hover {
  color: #0066cc;
  transform: translateX(5px);
}

.footer {
  background: #f8f9fa;
  color: #1a1a1a;
  padding: 40px 0;
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.7;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: #0066cc;
  color: #ffffff;
}
.btn-primary:hover {
  background: #003d7a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}
.btn-white {
  background: #ffffff;
  color: #0066cc;
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover {
  background: #ffffff;
  color: #0066cc;
  transform: translateY(-2px);
}

.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #0066cc;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.page-top.visible {
  opacity: 1;
  visibility: visible;
}
.page-top:hover {
  background: #003d7a;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
}

[data-scroll] {
  opacity: 0;
}
[data-scroll].animate {
  -webkit-animation: fadeInUp 0.8s ease both;
          animation: fadeInUp 0.8s ease both;
}

.page-header {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-top: 0;
}
@media (min-width: 768px) {
  .page-header {
    height: 400px;
  }
}
@media (min-width: 1024px) {
  .page-header {
    height: 500px;
  }
}

.page-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-header-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.page-header-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  margin-bottom: 10px;
  -webkit-animation: fadeInUp 0.8s ease 0.3s both;
          animation: fadeInUp 0.8s ease 0.3s both;
}

.page-header-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  -webkit-animation: fadeInUp 0.8s ease 0.5s both;
          animation: fadeInUp 0.8s ease 0.5s both;
}

.message-section {
  background: #ffffff;
}

.message-header {
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .message-header {
    margin-bottom: 50px;
  }
}

.message-title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.6;
}

.message-body {
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) {
  .message-body {
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
  }
}

.message-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .message-text p {
    font-size: 16px;
  }
}
.message-text p:last-child {
  margin-bottom: 0;
}

.message-image {
  text-align: center;
}
.message-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .message-image img {
    max-width: 350px;
  }
}

.message-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .message-name {
    font-size: 18px;
  }
}

.company-info-section {
  background: #f8f9fa;
}

.company-info-table {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.company-info-table table {
  width: 100%;
  border-collapse: collapse;
}
.company-info-table table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.company-info-table table tr:last-child {
  border-bottom: none;
}
.company-info-table table th,
.company-info-table table td {
  padding: 20px;
  text-align: left;
}
@media (min-width: 768px) {
  .company-info-table table th,
.company-info-table table td {
    padding: 25px 30px;
  }
}
.company-info-table table th {
  width: 30%;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f8f9fa;
}
@media (min-width: 768px) {
  .company-info-table table th {
    font-size: 15px;
    width: 25%;
  }
}
.company-info-table table td {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .company-info-table table td {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .company-info-table table th,
.company-info-table table td {
    display: block;
    width: 100%;
  }
  .company-info-table table th {
    padding-bottom: 10px;
  }
  .company-info-table table td {
    padding-top: 0;
  }
}

.service-intro-section {
  background: #ffffff;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .service-intro-section {
    padding: 100px 0;
  }
}

.service-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-intro-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .service-intro-title {
    margin-bottom: 40px;
  }
}

.service-intro-text {
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .service-intro-text {
    font-size: 15px;
  }
}

.service-intro-image {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.service-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-intro-additional {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .service-intro-additional {
    margin-top: 50px;
  }
}

.additional-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: #0066cc;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.additional-tagline {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.additional-heading {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.additional-text {
  font-size: 15px;
  line-height: 1.9;
  color: #666666;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 768px) {
  .additional-text {
    font-size: 16px;
  }
}

.services-section {
  background: #f8f9fa;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .services-section {
    padding: 80px 0;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}
.service-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .service-item {
    flex-direction: row;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
  .service-item:hover .service-image img {
    transform: scale(1.05);
  }
}

@media (min-width: 1024px) {
  .service-item-reverse .service-image {
    order: 2;
  }
  .service-item-reverse .service-content {
    order: 1;
  }
}

.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  display: block;
}
@media (min-width: 1024px) {
  .service-image {
    flex: 1;
    aspect-ratio: auto;
    height: 100%;
    border-radius: 0;
    margin: 0;
  }
}
.service-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  padding: 0;
  border: none;
  transition: transform 0.6s ease;
}

.service-content {
  padding: 25px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .service-content {
    padding: 30px;
  }
}
@media (min-width: 1024px) {
  .service-content {
    flex: 1;
    padding: 50px;
    border-radius: 0;
    box-shadow: none;
  }
}

.service-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .service-title {
    margin-bottom: 25px;
  }
}

.service-description {
  font-size: 13px;
  line-height: 1.9;
  color: #666666;
}
@media (min-width: 768px) {
  .service-description {
    font-size: 14px;
  }
}

.recruit-message-section {
  background: #ffffff;
}

.recruit-message {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .recruit-message {
    margin-bottom: 80px;
  }
}

.recruit-message-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .recruit-message-title {
    margin-bottom: 40px;
  }
}

.recruit-message-text {
  font-size: 15px;
  line-height: 1.9;
  color: #666666;
}
@media (min-width: 768px) {
  .recruit-message-text {
    font-size: 16px;
  }
}

.recruit-message-image {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.recruit-message-image img {
  width: 100%;
  height: auto;
  display: block;
}

.employee-voice-section {
  background: #f8f9fa;
}

.employee-voice-content {
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) {
  .employee-voice-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}

.employee-voice-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.employee-voice-image img {
  width: 100%;
  height: auto;
  display: block;
}

.employee-voice-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .employee-voice-text p {
    font-size: 16px;
  }
}
.employee-voice-text p:last-child {
  margin-bottom: 0;
}

.recruit-info-section {
  background: #ffffff;
}

.recruit-info-table {
  max-width: 900px;
  margin: 0 auto 40px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .recruit-info-table {
    margin-bottom: 60px;
  }
}
.recruit-info-table table {
  width: 100%;
  border-collapse: collapse;
}
.recruit-info-table table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.recruit-info-table table tr:last-child {
  border-bottom: none;
}
.recruit-info-table table th,
.recruit-info-table table td {
  padding: 20px;
  text-align: left;
}
@media (min-width: 768px) {
  .recruit-info-table table th,
.recruit-info-table table td {
    padding: 25px 30px;
  }
}
.recruit-info-table table th {
  width: 30%;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f8f9fa;
}
@media (min-width: 768px) {
  .recruit-info-table table th {
    font-size: 15px;
    width: 25%;
  }
}
.recruit-info-table table td {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .recruit-info-table table td {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .recruit-info-table table th,
.recruit-info-table table td {
    display: block;
    width: 100%;
  }
  .recruit-info-table table th {
    padding-bottom: 10px;
  }
  .recruit-info-table table td {
    padding-top: 0;
  }
}

.recruit-apply-button {
  text-align: center;
}

.contact-form-section {
  background: #f8f9fa;
}

.contact-form-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact-form-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.contact-form-subtitle {
  font-size: 15px;
  color: #666666;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .contact-form-subtitle {
    font-size: 16px;
  }
}

.contact-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-tab {
  padding: 10px 30px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .contact-tab {
    padding: 12px 35px;
    font-size: 15px;
  }
}
.contact-tab.active {
  background: #0066cc;
  color: #ffffff;
  border-color: #0066cc;
}
.contact-tab:hover {
  border-color: #0066cc;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .contact-form {
    padding: 50px 60px;
  }
}

.form-group {
  margin-bottom: 30px;
}
.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .form-label {
    font-size: 15px;
  }
}
.form-label.required::after {
  content: " *";
  color: #e74c3c;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .form-input,
.form-textarea {
    padding: 14px 18px;
    font-size: 16px;
  }
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0066cc;
  background: #ffffff;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #999;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
}

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

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .form-radio-group {
    flex-direction: row;
    gap: 20px;
  }
}

.form-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-radio input[type=radio] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}
.form-radio span {
  font-size: 14px;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  .form-radio span {
    font-size: 15px;
  }
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.form-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox span {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .form-checkbox span {
    font-size: 14px;
  }
}
.form-checkbox span a {
  color: #0066cc;
  text-decoration: underline;
}
.form-checkbox span a:hover {
  text-decoration: none;
}

.form-submit {
  margin-top: 40px;
  text-align: center;
}

.btn-large {
  padding: 16px 60px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .btn-large {
    padding: 18px 80px;
    font-size: 17px;
  }
}

.form-success-message {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.form-success-message h3 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 20px;
}
.form-success-message p {
  font-size: 15px;
  line-height: 1.9;
  color: #666666;
}
@media (min-width: 768px) {
  .form-success-message p {
    font-size: 16px;
  }
}

.form-error-message {
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 15px 20px;
  background: #ffe6e6;
  color: #e74c3c;
  border: 2px solid #e74c3c;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 768px) {
  .form-error-message {
    font-size: 15px;
  }
}

.contact-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto 40px;
  max-width: 320px;
  gap: 0;
}
.contact-steps__item {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #cccccc;
  padding-bottom: 8px;
  position: relative;
}
.contact-steps__item--active {
  color: #2b6db5;
  font-weight: 700;
  border-bottom: 2px solid #2b6db5;
}
.contact-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #cccccc;
}

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

.contact-form-heading {
  text-align: center;
  margin-bottom: 32px;
}
.contact-form-heading h2 {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px;
}
.contact-form-heading .required-note {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.wpcf7 form p {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  line-height: 1.6;
}
.wpcf7 form p:last-of-type {
  margin-bottom: 0;
}
.wpcf7 form .required {
  color: #e53935;
  font-size: 13px;
  font-weight: 500;
  margin-left: 6px;
}
.wpcf7 form .any {
  color: #888;
  font-size: 13px;
  font-weight: 500;
  margin-left: 6px;
}
.wpcf7 form input[type=text],
.wpcf7 form input[type=email],
.wpcf7 form input[type=tel],
.wpcf7 form input[type=number],
.wpcf7 form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dde0e5;
  border-radius: 8px;
  background: #f5f6f8;
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.wpcf7 form input[type=text]::-moz-placeholder, .wpcf7 form input[type=email]::-moz-placeholder, .wpcf7 form input[type=tel]::-moz-placeholder, .wpcf7 form input[type=number]::-moz-placeholder, .wpcf7 form textarea::-moz-placeholder {
  color: #aaaaaa;
}
.wpcf7 form input[type=text]::placeholder,
.wpcf7 form input[type=email]::placeholder,
.wpcf7 form input[type=tel]::placeholder,
.wpcf7 form input[type=number]::placeholder,
.wpcf7 form textarea::placeholder {
  color: #aaaaaa;
}
.wpcf7 form input[type=text]:focus,
.wpcf7 form input[type=email]:focus,
.wpcf7 form input[type=tel]:focus,
.wpcf7 form input[type=number]:focus,
.wpcf7 form textarea:focus {
  outline: none;
  border-color: #2b6db5;
  box-shadow: 0 0 0 3px rgba(43, 109, 181, 0.12);
  background: #fff;
}
.wpcf7 form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-top: 8px;
}
.wpcf7 form textarea {
  min-height: 180px;
  resize: vertical;
  vertical-align: top;
}
.wpcf7 form br {
  display: none;
}
.wpcf7 form .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333333;
  cursor: pointer;
  line-height: 1.4;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 0;
  border: 1px solid #dde0e5;
  border-radius: 4px;
  accent-color: #2b6db5;
  cursor: pointer;
  background: #f5f6f8;
}
.wpcf7 form .wpcf7-acceptance {
  margin-top: 24px;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label {
  font-size: 13px;
  color: #333333;
  line-height: 1.7;
  cursor: pointer;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label a {
  color: #2b6db5;
  text-decoration: underline;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label a:hover {
  opacity: 0.75;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: #2b6db5;
  cursor: pointer;
  border-radius: 3px;
}
.wpcf7 form .wpcf7-submit {
  display: block;
  margin: 40px auto 0;
  padding: 16px 80px;
  background: #2b6db5;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
}
.wpcf7 form .wpcf7-submit:hover {
  background: #235994;
}
.wpcf7 form .wpcf7-submit:active {
  transform: scale(0.98);
}
.wpcf7 form .wpcf7-submit:disabled {
  background: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
}
.wpcf7 form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 6px;
  display: block;
}
.wpcf7 form .wpcf7-response-output {
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}
.wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}
.wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7 form .wpcf7-response-output.wpcf7-validation-errors {
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #e74c3c;
}

.contact-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto 40px;
  max-width: 320px;
}
.contact-steps__item {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #cccccc;
  padding-bottom: 8px;
  position: relative;
}
.contact-steps__item--active {
  color: #2b6db5;
  font-weight: 700;
  border-bottom: 2px solid #2b6db5;
}
.contact-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #cccccc;
}

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

.contact-form-heading {
  text-align: center;
  margin-bottom: 32px;
}
.contact-form-heading h2 {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px;
}
.contact-form-heading .required-note {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.wpcf7 form p {
  margin: 0 0 16px;
}
.wpcf7 form p:last-of-type {
  margin-bottom: 0;
}
.wpcf7 form br {
  display: none;
}
.wpcf7 form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 form .required {
  color: #e74c3c;
  font-size: 12px;
  margin-left: 4px;
}
.wpcf7 form .any {
  color: #888;
  font-size: 12px;
  margin-left: 4px;
}
.wpcf7 form input[type=text],
.wpcf7 form input[type=email],
.wpcf7 form input[type=tel],
.wpcf7 form input[type=number],
.wpcf7 form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dde0e5;
  border-radius: 8px;
  background: #f5f6f8;
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.wpcf7 form input[type=text]::-moz-placeholder, .wpcf7 form input[type=email]::-moz-placeholder, .wpcf7 form input[type=tel]::-moz-placeholder, .wpcf7 form input[type=number]::-moz-placeholder, .wpcf7 form textarea::-moz-placeholder {
  color: #aaaaaa;
}
.wpcf7 form input[type=text]::placeholder,
.wpcf7 form input[type=email]::placeholder,
.wpcf7 form input[type=tel]::placeholder,
.wpcf7 form input[type=number]::placeholder,
.wpcf7 form textarea::placeholder {
  color: #aaaaaa;
}
.wpcf7 form input[type=text]:focus,
.wpcf7 form input[type=email]:focus,
.wpcf7 form input[type=tel]:focus,
.wpcf7 form input[type=number]:focus,
.wpcf7 form textarea:focus {
  outline: none;
  border-color: #2b6db5;
  box-shadow: 0 0 0 3px rgba(43, 109, 181, 0.12);
  background: #fff;
}
.wpcf7 form textarea {
  min-height: 180px;
  resize: vertical;
  vertical-align: top;
}
.wpcf7 form .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333333;
  cursor: pointer;
  line-height: 1.4;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 0;
  border-radius: 4px;
  accent-color: #2b6db5;
  cursor: pointer;
}
.wpcf7 form .wpcf7-acceptance {
  margin-top: 8px;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label {
  font-size: 13px;
  color: #333333;
  line-height: 1.7;
  cursor: pointer;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label a {
  color: #2b6db5;
  text-decoration: underline;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label a:hover {
  opacity: 0.75;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: #2b6db5;
  cursor: pointer;
  border-radius: 3px;
}
.wpcf7 form .form-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 640px) {
  .wpcf7 form .form-btn-group {
    flex-direction: column;
    gap: 12px;
  }
}
.wpcf7 form .wpcf7-previous {
  display: inline-block;
  padding: 14px 48px;
  background: #ffffff;
  color: #2b6db5;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #2b6db5;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.wpcf7 form .wpcf7-previous:hover {
  background: rgba(43, 109, 181, 0.06);
}
.wpcf7 form .wpcf7-previous:active {
  transform: scale(0.98);
}
@media (max-width: 640px) {
  .wpcf7 form .wpcf7-previous {
    width: 100%;
    padding: 14px 20px;
  }
}
.wpcf7 form .wpcf7-submit {
  display: inline-block;
  padding: 14px 48px;
  background: #2b6db5;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #2b6db5;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.wpcf7 form .wpcf7-submit:hover {
  background: #235994;
  border-color: #235994;
}
.wpcf7 form .wpcf7-submit:active {
  transform: scale(0.98);
}
.wpcf7 form .wpcf7-submit:disabled {
  background: #cccccc;
  border-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
}
@media (max-width: 640px) {
  .wpcf7 form .wpcf7-submit {
    width: 100%;
    padding: 14px 20px;
  }
}
.wpcf7 form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 6px;
  display: block;
}
.wpcf7 form .wpcf7-response-output {
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}
.wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}
.wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7 form .wpcf7-response-output.wpcf7-validation-errors {
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #e74c3c;
}

.contact-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto 40px;
  max-width: 320px;
}
.contact-steps__item {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #cccccc;
  padding-bottom: 8px;
  position: relative;
}
.contact-steps__item--active {
  color: #2b6db5;
  font-weight: 700;
  border-bottom: 2px solid #2b6db5;
}
.contact-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #cccccc;
}

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

.contact-form-heading {
  text-align: center;
  margin-bottom: 32px;
}
.contact-form-heading h2 {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px;
}
.contact-form-heading .required-note {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.wpcf7 form p {
  margin: 0 0 16px;
}
.wpcf7 form p:last-of-type {
  margin-bottom: 0;
}
.wpcf7 form br {
  display: none;
}
.wpcf7 form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 form .required {
  color: #e74c3c;
  font-size: 12px;
  margin-left: 4px;
}
.wpcf7 form .any {
  color: #888;
  font-size: 12px;
  margin-left: 4px;
}
.wpcf7 form input[type=text],
.wpcf7 form input[type=email],
.wpcf7 form input[type=tel],
.wpcf7 form input[type=number],
.wpcf7 form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dde0e5;
  border-radius: 8px;
  background: #f5f6f8;
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.wpcf7 form input[type=text]::-moz-placeholder, .wpcf7 form input[type=email]::-moz-placeholder, .wpcf7 form input[type=tel]::-moz-placeholder, .wpcf7 form input[type=number]::-moz-placeholder, .wpcf7 form textarea::-moz-placeholder {
  color: #aaaaaa;
}
.wpcf7 form input[type=text]::placeholder,
.wpcf7 form input[type=email]::placeholder,
.wpcf7 form input[type=tel]::placeholder,
.wpcf7 form input[type=number]::placeholder,
.wpcf7 form textarea::placeholder {
  color: #aaaaaa;
}
.wpcf7 form input[type=text]:focus,
.wpcf7 form input[type=email]:focus,
.wpcf7 form input[type=tel]:focus,
.wpcf7 form input[type=number]:focus,
.wpcf7 form textarea:focus {
  outline: none;
  border-color: #2b6db5;
  box-shadow: 0 0 0 3px rgba(43, 109, 181, 0.12);
  background: #fff;
}
.wpcf7 form textarea {
  min-height: 180px;
  resize: vertical;
  vertical-align: top;
}
.wpcf7 form .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333333;
  cursor: pointer;
  line-height: 1.4;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 0;
  border-radius: 4px;
  accent-color: #2b6db5;
  cursor: pointer;
}
.wpcf7 form .wpcf7-acceptance {
  margin-top: 8px;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label {
  font-size: 13px;
  color: #333333;
  line-height: 1.7;
  cursor: pointer;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label a {
  color: #2b6db5;
  text-decoration: underline;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label a:hover {
  opacity: 0.75;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: #2b6db5;
  cursor: pointer;
  border-radius: 3px;
}
.wpcf7 form .wpcf7-previous {
  display: inline-block;
  padding: 14px 48px;
  background: #ffffff;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.wpcf7 form .wpcf7-previous:hover {
  background: #e8e8e8;
  border-color: #ccc;
}
.wpcf7 form .wpcf7-previous:active {
  transform: scale(0.98);
}
.wpcf7 form .wpcf7-submit {
  display: inline-block;
  padding: 14px 48px;
  background: #2b6db5;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #2b6db5;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.wpcf7 form .wpcf7-submit:hover {
  background: #235994;
  border-color: #235994;
}
.wpcf7 form .wpcf7-submit:active {
  transform: scale(0.98);
}
.wpcf7 form .wpcf7-submit:disabled {
  background: #cccccc;
  border-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
}
.wpcf7 form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 6px;
  display: block;
}
.wpcf7 form .wpcf7-response-output {
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}
.wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}
.wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7 form .wpcf7-response-output.wpcf7-validation-errors {
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #e74c3c;
}

.contact-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto 40px;
  max-width: 320px;
}
.contact-steps__item {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #cccccc;
  padding-bottom: 8px;
  position: relative;
}
.contact-steps__item--active {
  color: #2b6db5;
  font-weight: 700;
  border-bottom: 2px solid #2b6db5;
}
.contact-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #cccccc;
}

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

.contact-form-heading {
  text-align: center;
  margin-bottom: 32px;
}
.contact-form-heading h2 {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px;
}
.contact-form-heading .required-note {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.wpcf7 form p {
  margin: 0 0 16px;
}
.wpcf7 form p:last-of-type {
  margin-bottom: 0;
}
.wpcf7 form br {
  display: none;
}
.wpcf7 form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 form .required {
  color: #e74c3c;
  font-size: 12px;
  margin-left: 4px;
}
.wpcf7 form .any {
  color: #888;
  font-size: 12px;
  margin-left: 4px;
}
.wpcf7 form input[type=text],
.wpcf7 form input[type=email],
.wpcf7 form input[type=tel],
.wpcf7 form input[type=number],
.wpcf7 form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dde0e5;
  border-radius: 8px;
  background: #f5f6f8;
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.wpcf7 form input[type=text]::-moz-placeholder, .wpcf7 form input[type=email]::-moz-placeholder, .wpcf7 form input[type=tel]::-moz-placeholder, .wpcf7 form input[type=number]::-moz-placeholder, .wpcf7 form textarea::-moz-placeholder {
  color: #aaaaaa;
}
.wpcf7 form input[type=text]::placeholder,
.wpcf7 form input[type=email]::placeholder,
.wpcf7 form input[type=tel]::placeholder,
.wpcf7 form input[type=number]::placeholder,
.wpcf7 form textarea::placeholder {
  color: #aaaaaa;
}
.wpcf7 form input[type=text]:focus,
.wpcf7 form input[type=email]:focus,
.wpcf7 form input[type=tel]:focus,
.wpcf7 form input[type=number]:focus,
.wpcf7 form textarea:focus {
  outline: none;
  border-color: #2b6db5;
  box-shadow: 0 0 0 3px rgba(43, 109, 181, 0.12);
  background: #fff;
}
.wpcf7 form textarea {
  min-height: 180px;
  resize: vertical;
  vertical-align: top;
}
.wpcf7 form .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333333;
  cursor: pointer;
  line-height: 1.4;
}
.wpcf7 form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 0;
  border-radius: 4px;
  accent-color: #2b6db5;
  cursor: pointer;
}
.wpcf7 form .wpcf7-acceptance {
  margin-top: 8px;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label {
  font-size: 13px;
  color: #333333;
  line-height: 1.7;
  cursor: pointer;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label a {
  color: #2b6db5;
  text-decoration: underline;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label a:hover {
  opacity: 0.75;
}
.wpcf7 form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: #2b6db5;
  cursor: pointer;
  border-radius: 3px;
}
.wpcf7 form .wpcf7-previous {
  display: inline-block;
  padding: 14px 48px;
  background: #ffffff;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #2b6db5;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.wpcf7 form .wpcf7-previous:hover {
  background: rgba(43, 109, 181, 0.06);
  border-color: #235994;
}
.wpcf7 form .wpcf7-previous:active {
  transform: scale(0.98);
}
.wpcf7 form .wpcf7-submit {
  display: inline-block;
  padding: 14px 48px;
  background: #2b6db5;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #2b6db5;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.wpcf7 form .wpcf7-submit:hover {
  background: #235994;
  border-color: #235994;
}
.wpcf7 form .wpcf7-submit:active {
  transform: scale(0.98);
}
.wpcf7 form .wpcf7-submit:disabled {
  background: #cccccc;
  border-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
}
.wpcf7 form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 6px;
  display: block;
}
.wpcf7 form .wpcf7-response-output {
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}
.wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}
.wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7 form .wpcf7-response-output.wpcf7-validation-errors {
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #e74c3c;
}

.contact-confirm .wpcf7 form p {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}
.contact-confirm .wpcf7 form p span:not(.required):not(.any) {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
}
.contact-confirm .wpcf7 form p:has(.wpcf7-previous),
.contact-confirm .wpcf7 form p:has(.wpcf7-submit),
.contact-confirm .wpcf7 form p:has(input[type=submit]) {
  display: inline-block;
  width: auto;
  margin: 0;
  text-align: center;
}
.contact-confirm .wpcf7 form p:has(.wpcf7-previous) {
  margin-top: 40px;
  margin-right: 8px;
}
.contact-confirm .wpcf7 form p:has(.wpcf7-submit),
.contact-confirm .wpcf7 form p:has(input[type=submit]) {
  margin-top: 40px;
  margin-left: 8px;
}
.contact-confirm .wpcf7 form {
  text-align: center;
}
.contact-confirm .wpcf7 form p:not(:has(.wpcf7-previous)):not(:has(.wpcf7-submit)):not(:has(input[type=submit])) {
  text-align: left;
}

.contact-form:not(.contact-confirm) .wpcf7 form p:has(.wpcf7-submit), .contact-form:not(.contact-confirm) .wpcf7 form p:has(input[type=submit]) {
  text-align: center;
  margin-top: 32px;
}
.contact-form:not(.contact-confirm) .wpcf7 form .wpcf7-submit,
.contact-form:not(.contact-confirm) .wpcf7 form input[type=submit] {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.contact-thanks {
  max-width: 640px;
  margin: 60px auto;
  padding: 60px 32px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.contact-thanks-icon {
  margin: 0 auto 32px;
}
.contact-thanks-icon svg {
  display: block;
  margin: 0 auto;
  -webkit-animation: checkmark-appear 0.6s ease-out;
          animation: checkmark-appear 0.6s ease-out;
}
.contact-thanks-title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 24px;
  line-height: 1.4;
}
.contact-thanks-message {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 48px;
}
.contact-thanks-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 16px;
  margin-top: 48px;
}
.contact-thanks-buttons .btn {
  min-width: 200px;
}
@media (max-width: 640px) {
  .contact-thanks-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }
  .contact-thanks-buttons .btn {
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 640px) {
  .contact-thanks {
    margin: 40px auto;
    padding: 40px 24px;
  }
}

@-webkit-keyframes checkmark-appear {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes checkmark-appear {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 640px) {
  .wpcf7 form input[type=text],
.wpcf7 form input[type=email],
.wpcf7 form input[type=tel],
.wpcf7 form input[type=number],
.wpcf7 form textarea {
    font-size: 16px;
  }
  .wpcf7 form .wpcf7-previous,
.wpcf7 form .wpcf7-submit {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
  }
  .contact-confirm .wpcf7 form p:has(.wpcf7-previous),
.contact-confirm .wpcf7 form p:has(.wpcf7-submit),
.contact-confirm .wpcf7 form p:has(input[type=submit]) {
    display: block;
    width: 100%;
    margin: 8px auto 0;
  }
  .contact-steps {
    font-size: 12px;
    max-width: 280px;
  }
}
.hero-news-link-text {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-news-link-text:hover {
  opacity: 0.8;
}

.news-archive-section {
  background: #f8f9fa;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }
}

.news-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.news-card-link {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  height: 100%;
}

.news-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-card-content {
  padding: 20px;
}
@media (min-width: 768px) {
  .news-card-content {
    padding: 24px;
  }
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.news-card-date {
  font-size: 13px;
  font-weight: 600;
  color: #666666;
}
@media (min-width: 768px) {
  .news-card-date {
    font-size: 14px;
  }
}

.news-card-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 102, 204, 0.1);
  color: #0066cc;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.news-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .news-card-title {
    font-size: 17px;
  }
}

.news-card-excerpt {
  font-size: 13px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .news-card-excerpt {
    font-size: 14px;
  }
}

.pagination {
  margin-top: 60px;
  text-align: center;
}
.pagination ul {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li a,
.pagination li span {
  display: block;
  padding: 10px 16px;
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.pagination li a:hover,
.pagination li span:hover {
  border-color: #0066cc;
  color: #0066cc;
}
.pagination li.current span {
  background: #0066cc;
  color: #ffffff;
  border-color: #0066cc;
}

.no-posts {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}
.no-posts p {
  font-size: 16px;
  color: #666666;
}

.page-header-small .page-header-content {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .page-header-small .page-header-content {
    padding: 80px 40px;
  }
}

.single-post-section {
  background: #f8f9fa;
}

.single-post {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .single-post {
    padding: 60px 80px;
  }
}

.single-post-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f8f9fa;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.single-post-date {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #666666;
}
@media (min-width: 768px) {
  .single-post-date {
    font-size: 14px;
  }
}

.single-post-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 102, 204, 0.1);
  color: #0066cc;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.single-post-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
}

.single-post-thumbnail {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}
.single-post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post-content {
  font-size: 16px;
  line-height: 1.9;
  color: #1a1a1a;
}
.single-post-content p {
  margin-bottom: 1.5em;
}
.single-post-content p:last-child {
  margin-bottom: 0;
}
.single-post-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f8f9fa;
}
@media (max-width: 768px) {
  .single-post-content h2 {
    font-size: 20px;
  }
}
.single-post-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 15px;
}
@media (max-width: 768px) {
  .single-post-content h3 {
    font-size: 18px;
  }
}
.single-post-content ul,
.single-post-content ol {
  margin: 20px 0;
  padding-left: 25px;
}
.single-post-content ul li,
.single-post-content ol li {
  margin-bottom: 8px;
}
.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}
.single-post-content a {
  color: #0066cc;
  text-decoration: underline;
}
.single-post-content a:hover {
  text-decoration: none;
}

.back-to-archive {
  margin-top: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.btn-secondary {
  background: #f8f9fa;
  color: #1a1a1a;
  border: 2px solid #f8f9fa;
}
.btn-secondary:hover {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.post-navigation {
  display: flex;
  align-items: stretch;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .post-navigation {
    flex-direction: column;
  }
}

.post-nav-item {
  flex: 1;
  display: flex;
}
@media (max-width: 768px) {
  .post-nav-item {
    width: 100%;
  }
}

.post-nav-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 20px;
}
@media (max-width: 768px) {
  .post-nav-divider {
    display: none;
  }
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: transparent;
  text-decoration: none;
  width: 100%;
  transition: all 0.3s ease;
}
.post-nav-link:hover {
  background: #f8f9fa;
}

.post-nav-label {
  font-size: 12px;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .post-nav-title {
    font-size: 15px;
  }
}

.post-nav-empty {
  width: 100%;
  height: 100%;
}

.related-posts {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .related-posts {
    margin-top: 60px;
    padding-top: 40px;
  }
}

.related-posts-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .related-posts-title {
    margin-bottom: 30px;
  }
}

.privacy-section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .privacy-section {
    padding: 120px 0;
  }
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-intro {
  font-size: 16px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 60px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .privacy-intro {
    font-size: 17px;
    padding: 40px;
    margin-bottom: 80px;
  }
}

.privacy-item {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .privacy-item {
    margin-bottom: 60px;
  }
}

.privacy-item-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #0066cc;
}
@media (min-width: 768px) {
  .privacy-item-title {
    margin-bottom: 25px;
  }
}

.privacy-item-content {
  font-size: 15px;
  line-height: 1.9;
  color: #666666;
}
@media (min-width: 768px) {
  .privacy-item-content {
    font-size: 16px;
  }
}
.privacy-item-content p {
  margin-bottom: 20px;
}
.privacy-item-content p:last-child {
  margin-bottom: 0;
}
.privacy-item-content ul {
  list-style: disc;
  padding-left: 25px;
  margin: 20px 0;
}
.privacy-item-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}
.privacy-item-content ul li:last-child {
  margin-bottom: 0;
}

.privacy-contact {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .privacy-contact {
    padding: 30px;
  }
}
.privacy-contact p {
  margin-bottom: 10px;
}
.privacy-contact p:last-child {
  margin-bottom: 0;
}
.privacy-contact strong {
  font-weight: 700;
  color: #1a1a1a;
}
.privacy-contact a {
  color: #0066cc;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.privacy-contact a:hover {
  color: #004d99;
}

.privacy-date {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
  text-align: right;
}
@media (min-width: 768px) {
  .privacy-date {
    margin-top: 80px;
  }
}
.privacy-date p {
  font-size: 14px;
  color: #666666;
}
@media (min-width: 768px) {
  .privacy-date p {
    font-size: 15px;
  }
}
/*# sourceMappingURL=style.css.map */