/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #251D03;
  background-color: #ffffff;
}

/* Main Content */
.main-content {
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://codia-f2c.s3.us-west-1.amazonaws.com/image/2025-07-31/t6M89rUeFa.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin-left: 220px;
}

.page-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.title-en {
  font-size: 14px;
  font-weight: 600;
  color: #251D03;
  letter-spacing: 0;
  line-height: 14px;
}

.title-ja {
  font-size: 32px;
  font-weight: 600;
  color: #251D03;
  letter-spacing: 0;
  line-height: 32px;
}

.title-decoration {
  width: 99px;
  height: 7px;
  background-image: url('https://codia-f2c.s3.us-west-1.amazonaws.com/image/2025-07-31/ZFOu0UZZSp.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Breadcrumb */
.breadcrumb {
  padding: 40px 0;
  background-color: #ffffff;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 220px;
}

.breadcrumb-link {
  color: #2196F3;
  text-decoration: none;
  font-size: 14px;
  line-height: 22.4px;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  display: flex;
  align-items: center;
}

.breadcrumb-current {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
}

/* CTA Section */
.cta-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://codia-f2c.s3.us-west-1.amazonaws.com/image/2025-07-31/ioiMyM25so.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.cta-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.58);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 40px 20px;
}

.cta-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.cta-decoration {
  width: 138px;
  height: 10.32px;
  background: white;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.cta-decoration::before,
.cta-decoration::after {
  content: '';
  width: 12.54px;
  height: 10.32px;
  background-image: url('https://codia-f2c.s3.us-west-1.amazonaws.com/image/2025-07-31/q98ODrn1JG.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 26px;
  border-radius: 80px;
  text-decoration: none;
  font-weight: 600;
  font-size: 21px;
  line-height: 21px;
  text-align: center;
  width: 320px;
  height: 49px;
  transition: all 0.3s ease;
}

.cta-button-primary {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cta-button-primary:hover {
  background: white;
  color: #B33D31;
}

.cta-button-secondary {
  background: white;
  color: #B90B1D;
}

.cta-button-secondary:hover {
  background: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    margin-left: 0;
    text-align: center;
  }
  
  .breadcrumb-container {
    margin-left: 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-button {
    width: 100%;
    max-width: 320px;
  }
}
