/*
Theme Name: Finport Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Finportサイト用のWordPressテーマ
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: finport-theme
*/

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

html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #007bff;
}

ul, ol {
  list-style: none;
}

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

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

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

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

.text-light {
  color: #666666;
}

.text-primary {
  color: #1a1a1a;
}

.text-accent {
  color: #007bff;
}

.heading-xl, .hero .hero-text .hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .heading-xl, .hero .hero-text .hero-title {
    font-size: 32px;
  }
}

.heading-lg, .contact .section-header h2, .recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-title, .news .section-header h2, .about .about-text .about-title, .concerns .section-header h2, .reasons .section-header h2, .services .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .heading-lg, .contact .section-header h2, .recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-title, .news .section-header h2, .about .about-text .about-title, .concerns .section-header h2, .reasons .section-header h2, .services .section-header h2 {
    font-size: 24px;
  }
}

.heading-md, .footer .footer-logo h3, .recruitment .recruitment-positions .positions-title, .reasons .reason-item .reason-content .reason-title, .services .service-card .service-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .heading-md, .footer .footer-logo h3, .recruitment .recruitment-positions .positions-title, .reasons .reason-item .reason-content .reason-title, .services .service-card .service-title {
    font-size: 18px;
  }
}

.heading-sm, .recruitment .recruitment-positions .position-card .position-header .position-title, .news .news-item .news-content .news-title, .concerns .concern-item .concern-content .concern-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.body-lg, .contact .section-header .section-subtitle, .recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-subtitle, .news .section-header .section-subtitle, .about .about-text .about-description, .reasons .section-header .section-subtitle, .services .section-header .section-subtitle, .hero .hero-text .hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
}

.body-md, .footer .footer-links .footer-column h4, .recruitment .recruitment-positions .position-card .position-description, .concerns .concern-item .concern-content .concern-description, .reasons .reason-item .reason-content .reason-description, .services .service-card .service-description {
  font-size: 16px;
  line-height: 1.6;
}

.body-sm, .recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-stats .hero-stat-item .hero-stat-label {
  font-size: 14px;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-column {
  display: flex;
  flex-direction: column;
}

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

.mt-xs {
  margin-top: 8px;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 32px;
}

.mt-xl {
  margin-top: 48px;
}

.mb-xs {
  margin-bottom: 8px;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 24px;
}

.mb-lg {
  margin-bottom: 32px;
}

.mb-xl {
  margin-bottom: 48px;
}

.pt-xs {
  padding-top: 8px;
}

.pt-sm {
  padding-top: 16px;
}

.pt-md {
  padding-top: 24px;
}

.pt-lg {
  padding-top: 32px;
}

.pt-xl {
  padding-top: 48px;
}

.pb-xs {
  padding-bottom: 8px;
}

.pb-sm {
  padding-bottom: 16px;
}

.pb-md {
  padding-bottom: 24px;
}

.pb-lg {
  padding-bottom: 32px;
}

.pb-xl {
  padding-bottom: 48px;
}

.section, .horizontal-scroll-section, .approach, .contact, .recruitment, .news, .about, .concerns, .reasons, .services {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .section, .horizontal-scroll-section, .approach, .contact, .recruitment, .news, .about, .concerns, .reasons, .services {
    padding: 48px 0;
  }
}

.section-sm {
  padding: 48px 0;
}
@media (max-width: 768px) {
  .section-sm {
    padding: 32px 0;
  }
}

.section-lg {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .section-lg {
    padding: 64px 0;
  }
}

.header {
  background-color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 768px) {
  .header .header-content {
    flex-direction: column;
    gap: 16px;
  }
}
.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.header .nav .nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}
@media (max-width: 768px) {
  .header .nav .nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
}
.header .nav .nav-list li {
  min-width: 0;
}
.header .nav .nav-list li a {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.header .nav .nav-list li a:hover {
  color: #007bff;
  background-color: #f8f9fa;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}
.hero .container {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
.hero .hero-image .slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  overflow: hidden;
}
.hero .hero-image .slideshow-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.hero .hero-image .slideshow-container .slide.active {
  opacity: 1;
}
.hero .hero-image .slideshow-container .slide .image-placeholder {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  font-size: 2rem;
  background: rgba(200, 210, 255, 0.25) !important;
}
.hero .hero-image .slideshow-container .slide:not(.active) {
  display: none !important;
}
.hero .hero-image .slideshow-container .slide-nav {
  top: 50%;
  left: 24px;
  right: auto;
  transform: translateY(-50%);
}
.hero .hero-image .slideshow-container .slide-nav.next {
  left: auto;
  right: 24px;
}
.hero .hero-image .slideshow-container .slide-dots {
  bottom: 32px;
}
.hero .hero-text {
  position: relative;
  z-index: 2;
  color: #1a1a1a;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 48px 64px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media (max-width: 768px) {
  .hero .hero-text {
    padding: 32px 24px;
    max-width: 90vw;
  }
}
.hero .hero-text .hero-title {
  margin-bottom: 24px;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.hero .hero-text .hero-subtitle {
  margin-bottom: 48px;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.hero .hero-text .hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.services {
  background-color: rgba(255, 255, 255, 0.7);
}
.services .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.services .section-header h2 {
  color: #1a1a1a;
  margin-bottom: 24px;
}
.services .section-header .section-subtitle {
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  overflow-x: auto;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .services .services-grid {
    grid-template-columns: 1fr;
  }
}
.services .service-card {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.services .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.services .service-card .service-icon {
  margin-bottom: 32px;
}
.services .service-card .service-icon .icon-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #007bff, rgb(102, 175.8, 255));
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}
.services .service-card .service-title {
  color: #1a1a1a;
  margin-bottom: 24px;
}
.services .service-card .service-description {
  color: #666666;
  line-height: 1.6;
}

.reasons {
  background-color: rgba(248, 249, 250, 0.7);
}
.reasons .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.reasons .section-header h2 {
  color: #1a1a1a;
  margin-bottom: 24px;
}
.reasons .section-header .section-subtitle {
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.reasons .reasons-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.reasons .reason-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 768px) {
  .reasons .reason-item {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}
.reasons .reason-item:nth-child(even) .reason-content {
  order: 1;
}
.reasons .reason-item:nth-child(even) .reason-image {
  order: 2;
}
@media (max-width: 768px) {
  .reasons .reason-item:nth-child(even) .reason-content,
  .reasons .reason-item:nth-child(even) .reason-image {
    order: unset;
  }
}
.reasons .reason-item .reason-image .image-placeholder {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 300px;
  background: linear-gradient(45deg, #e9ecef, #f8f9fa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 18px;
}
@media (max-width: 768px) {
  .reasons .reason-item .reason-image .image-placeholder {
    height: 250px;
  }
}
.reasons .reason-item .reason-content {
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.reasons .reason-item .reason-content .reason-number {
  display: inline-block;
  background-color: #007bff;
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.reasons .reason-item .reason-content .reason-title {
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.4;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.reasons .reason-item .reason-content .reason-description {
  color: #666666;
  line-height: 1.6;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.concerns {
  background-color: rgba(255, 255, 255, 0.7);
}
.concerns .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.concerns .section-header h2 {
  color: #1a1a1a;
}
.concerns .concerns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: visible;
}
@media (max-width: 768px) {
  .concerns .concerns-grid {
    grid-template-columns: 1fr;
  }
}
.concerns .concern-item {
  display: flex;
  gap: 32px;
  padding: 48px;
  background-color: rgba(248, 249, 250, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  flex-basis: 0;
  width: 100%;
}
.concerns .concern-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .concerns .concern-item {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}
.concerns .concern-item .concern-icon {
  flex-shrink: 0;
}
.concerns .concern-item .concern-icon .icon-placeholder {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #007bff, rgb(102, 175.8, 255));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
@media (max-width: 768px) {
  .concerns .concern-item .concern-icon .icon-placeholder {
    margin: 0 auto;
  }
}
.concerns .concern-item .concern-content {
  flex: 1;
  max-width: 100%;
  min-width: 0;
  width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.concerns .concern-item .concern-content .concern-title {
  color: #1a1a1a;
  margin-bottom: 16px;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.concerns .concern-item .concern-content .concern-description {
  color: #666666;
  line-height: 1.6;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.about {
  background-color: rgba(248, 249, 250, 0.7);
}
.about .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 768px) {
  .about .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}
.about .about-text {
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.about .about-text .about-title {
  color: #1a1a1a;
  margin-bottom: 32px;
  line-height: 1.3;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.about .about-text .about-description {
  color: #666666;
  line-height: 1.7;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.about .about-image .image-placeholder {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 400px;
  background: linear-gradient(45deg, #e9ecef, #f8f9fa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 18px;
}
@media (max-width: 768px) {
  .about .about-image .image-placeholder {
    height: 300px;
  }
}

.news {
  background-color: rgba(255, 255, 255, 0.7);
}
.news .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.news .section-header h2 {
  color: #1a1a1a;
  margin-bottom: 24px;
}
.news .section-header .section-subtitle {
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.news .news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 992px) {
  .news .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .news .news-grid {
    grid-template-columns: 1fr;
  }
}
.news .news-item {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.news .news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.news .news-item .news-image .image-placeholder {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 200px;
  background: linear-gradient(45deg, #e9ecef, #f8f9fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 18px;
}
.news .news-item .news-content {
  padding: 32px;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.news .news-item .news-content .news-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.news .news-item .news-content .news-meta .news-category {
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.news .news-item .news-content .news-meta .news-date {
  color: #666666;
  font-size: 14px;
}
.news .news-item .news-content .news-title {
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.recruitment {
  background-color: rgba(248, 249, 250, 0.7);
}
.recruitment .recruitment-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 768px) {
  .recruitment .recruitment-hero {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}
.recruitment .recruitment-hero .recruitment-hero-content {
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-title {
  color: #1a1a1a;
  margin-bottom: 24px;
}
.recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-subtitle {
  color: #666666;
  margin-bottom: 48px;
}
.recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-stats {
  display: flex;
  gap: 48px;
}
@media (max-width: 768px) {
  .recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-stats .hero-stat-item {
  text-align: center;
}
.recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-stats .hero-stat-item .hero-stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #007bff;
  line-height: 1;
}
.recruitment .recruitment-hero .recruitment-hero-content .recruitment-hero-stats .hero-stat-item .hero-stat-label {
  color: #666666;
}
.recruitment .recruitment-hero .recruitment-hero-image .image-placeholder {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 400px;
  background: linear-gradient(45deg, #e9ecef, #f8f9fa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 18px;
}
@media (max-width: 768px) {
  .recruitment .recruitment-hero .recruitment-hero-image .image-placeholder {
    height: 300px;
  }
}
.recruitment .recruitment-positions {
  margin-bottom: 64px;
}
.recruitment .recruitment-positions .positions-title {
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 48px;
}
.recruitment .recruitment-positions .positions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 992px) {
  .recruitment .recruitment-positions .positions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .recruitment .recruitment-positions .positions-grid {
    grid-template-columns: 1fr;
  }
}
.recruitment .recruitment-positions .position-card {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 48px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.recruitment .recruitment-positions .position-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.recruitment .recruitment-positions .position-card .position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.recruitment .recruitment-positions .position-card .position-header .position-title {
  color: #1a1a1a;
  margin: 0;
}
.recruitment .recruitment-positions .position-card .position-header .position-type {
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.recruitment .recruitment-positions .position-card .position-description {
  color: #666666;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.recruitment .recruitment-positions .position-card .position-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.recruitment .recruitment-positions .position-card .position-tags .tag {
  background-color: #f8f9fa;
  color: #333333;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.recruitment .recruitment-cta {
  text-align: center;
}

.contact {
  background-color: rgba(255, 255, 255, 0.7);
}
.contact .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.contact .section-header h2 {
  color: #1a1a1a;
  margin-bottom: 24px;
}
.contact .section-header .section-subtitle {
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}
.contact .contact-buttons {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .contact .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.footer {
  background-color: rgba(26, 26, 26, 0.85);
  color: white;
  padding: 64px 0;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }
}
.footer .footer-logo h3 {
  color: white;
  margin: 0;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer .footer-links {
  display: flex;
  gap: 64px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 768px) {
  .footer .footer-links {
    justify-content: center;
    gap: 48px;
  }
}
.footer .footer-links .footer-column {
  min-width: 0;
}
.footer .footer-links .footer-column h4 {
  color: white;
  margin-bottom: 16px;
  font-weight: 500;
  max-width: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer .footer-links .footer-column h4:last-child {
  margin-bottom: 0;
}

.approach {
  background: rgba(248, 249, 250, 0.7);
}
.approach .approach-title {
  text-align: center;
  margin-bottom: 48px;
  font-size: 32px;
  font-weight: 700;
}
.approach .approach-items {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}
.approach .approach-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 80px 120px;
  font-size: 3rem;
  min-width: 400px;
  min-height: 220px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  transform: none;
}
@media (max-width: 768px) {
  .approach .approach-item {
    padding: 40px 10vw;
    font-size: 2rem;
    min-width: 0;
  }
}
.approach .scroll-in {
  opacity: 1;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.horizontal-scroll-section {
  background: rgba(255, 255, 255, 0.7);
  padding-top: 240px;
  padding-bottom: 240px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.horizontal-scroll-section .horizontal-scroll-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
}
.horizontal-scroll-section .horizontal-scroll-track {
  display: flex;
  gap: 48px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 768px) {
  .horizontal-scroll-section .horizontal-scroll-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
  }
}
.horizontal-scroll-section .horizontal-card {
  min-width: 320px;
  min-height: 180px;
  background: rgba(248, 249, 250, 0.7);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .horizontal-scroll-section .horizontal-card {
    min-width: 80vw;
    max-width: 90vw;
  }
}
.horizontal-scroll-section .horizontal-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.horizontal-scroll-section .horizontal-card .card-number {
  color: #666666;
  font-size: 48px;
  font-weight: 700;
  opacity: 0.18;
  margin-bottom: 24px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.horizontal-scroll-section .horizontal-card .card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.horizontal-scroll-section .horizontal-card .card-description {
  font-size: 16px;
  color: #666666;
  margin-bottom: 0;
}

.btn, .contact-btn, .hero-btn, .btn-secondary, .contact-btn.secondary, .hero-btn.secondary, .btn-primary, .recruitment-btn, .contact-btn.primary, .hero-btn.primary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn:hover, .contact-btn:hover, .hero-btn:hover, .btn-secondary:hover, .btn-primary:hover, .recruitment-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn:active, .contact-btn:active, .hero-btn:active, .btn-secondary:active, .btn-primary:active, .recruitment-btn:active {
  transform: translateY(0);
}

.btn-primary, .recruitment-btn, .contact-btn.primary, .hero-btn.primary {
  background-color: #007bff;
  color: white;
}
.btn-primary:hover, .recruitment-btn:hover, .contact-btn.primary:hover, .hero-btn.primary:hover {
  background-color: rgb(0, 98.4, 204);
  color: white;
}

.btn-secondary, .contact-btn.secondary, .hero-btn.secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}
.btn-secondary:hover, .contact-btn.secondary:hover, .hero-btn.secondary:hover {
  background-color: #007bff;
  color: white;
}

.hero-btn {
  padding: 24px 48px;
  font-size: 18px;
  font-weight: 600;
}
.contact-btn {
  padding: 24px 48px;
  font-size: 18px;
  font-weight: 600;
  min-width: 200px;
}
.recruitment-btn {
  padding: 24px 48px;
  font-size: 18px;
  font-weight: 600;
  min-width: 250px;
}

.image-placeholder {
  background: linear-gradient(45deg, #e9ecef, #f8f9fa);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 18px;
  position: relative;
}
.image-placeholder::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.image-placeholder.bg1 {
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.25), rgba(255, 204, 51, 0.25));
}
.image-placeholder.bg2 {
  background: linear-gradient(135deg, rgba(109, 213, 237, 0.25), rgba(33, 147, 176, 0.25));
}
.image-placeholder.bg3 {
  background: linear-gradient(135deg, rgba(247, 151, 30, 0.25), rgba(255, 210, 0, 0.25));
}

.icon-placeholder {
  background: linear-gradient(45deg, #007bff, rgb(102, 175.8, 255));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  position: relative;
}
.icon-placeholder::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

.text-placeholder {
  background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
  height: 1em;
  margin: 8px 0;
}
.text-placeholder.short {
  width: 60%;
}
.text-placeholder.medium {
  width: 80%;
}
.text-placeholder.long {
  width: 100%;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.slide {
  position: relative;
}

.slide-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: none;
  font-size: 2rem;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  text-align: center;
  z-index: 10;
  max-width: 90vw;
  box-sizing: border-box;
  line-height: 1.5;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 600px) {
  .slide-caption {
    font-size: 1.1rem;
    padding: 0;
  }
}


/*# sourceMappingURL=main.css.map */ 