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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #171717;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* CSS Variables */
:root {
  --color-brand-blue: #015eae;
  --color-brand-blue-dark: #014a8a;
  --color-foreground: #171717;
  --color-muted-foreground: #737373;
  --color-background: #ffffff;
  --color-muted: #f5f5f5;
  --color-border: #e5e5e5;
  --color-white: #ffffff;
  --color-black: #000000;
  --max-width: 1280px;
  --header-height: 80px;
}

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

.hero-content.container{
  max-width: var(--max-width);
}

#about .container,
#services .container,
#news .container,
#careers .container{
  max-width: 1080px;
}

.container-narrow {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container-narrow {
    padding: 0 24px;
  }
}

.container-narrow-1088 {
  max-width: 1088px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container-narrow-1088 {
    padding: 0 24px;
  }
}

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

.flex {
  display: flex;
}

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

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 8px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.gap-12 {
  gap: 48px;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Typography */
.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-base {
  font-size: 16px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 20px;
}

.text-2xl {
  font-size: 24px;
}

.text-3xl {
  font-size: 30px;
}

.text-4xl {
  font-size: 36px;
}

.text-5xl {
  font-size: 48px;
}

.text-6xl {
  font-size: 60px;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.25;
}

.leading-snug {
  line-height: 1.375;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Colors */
.text-white {
  color: var(--color-white);
}

.text-foreground {
  color: var(--color-foreground);
}

.text-muted {
  color: var(--color-muted-foreground);
}

.text-brand-blue {
  color: var(--color-brand-blue);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-muted {
  background-color: var(--color-muted);
}

.bg-brand-blue {
  background-color: var(--color-brand-blue);
}

.bg-black {
  background-color: var(--color-black);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--color-brand-blue);
  color: var(--color-white);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--color-brand-blue);
  border: 1px solid var(--color-brand-blue);
}

.btn-outline:hover {
  background-color: var(--color-brand-blue);
  color: var(--color-white);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-brand-blue);
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* PC SP */
.pc-only{
  display: none;
  }
.sp-only{
  display: block;
}
@media (min-width: 640px){
  .pc-only{
    display: block;
  }
  .sp-only{
    display: none;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.header-content {
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 0 16px;
}

@media (min-width: 640px) {
  .header-content {
    padding: 0 24px;
  }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.header-logo img {
  height: 20px;
  width: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-foreground);
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--color-brand-blue);
}

.mobile-menu-btn {
  display: flex;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--color-white);
  z-index: 40;
  padding-top: 80px;
}

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

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mobile-menu-nav a {
  padding: 16px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--color-border);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 672px;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }
}

.hero-description {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.625;
  max-width: 512px;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 16px;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Section Styles */
.section {
  position: relative;
  z-index: 20;
  padding: 120px 0;
}

.section-header {
  margin-bottom: 48px;
}

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

.section-header p{
  font-size: 14px;
  margin-top: 2em;
}
@media (min-width: 640px) {
  .section-header p{
    font-size: 18px;
  }
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 48px;
  }
}

.section-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-subtitle.center {
  justify-content: center;
}

.section-line {
  width: 32px;
  height: 1px;
  background-color: currentColor;
}

.section-subtitle span {
  font-size: 14px;
}

/* About Section */
#about h3{
  font-size: 24px; 
  font-weight: 500; 
  color: white; 
  line-height: 1.375; 
  margin-top: 48px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  #about h3{
    font-size: 36px;
  }
}

#about p{
  color: rgba(255,255,255,0.8); 
  font-size: 14px; 
  line-height: 1.75; 
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  #about p{
    font-size: 16px; 
  }
}

.about-section {
  background-color: var(--color-brand-blue);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    flex-direction: row;
  }
}

.about-text {
  flex: 1;
}

.about-image {
  width: 100%;
  flex: 1;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .about-image {
    width: auto;
  }
}

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

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

.services-grid {
  display: grid;
  gap: 32px;
}

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

.services-list-box{
  display: flex; 
  flex-direction: column; 
  gap: 48px;
}

.services-list{
  display: flex; 
  flex-direction: row; 
  align-items: center;
  gap: 0; 
  background: var(--color-muted); 
  border-radius: 8px; 
  overflow: hidden;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .services-list{
    flex-wrap: unset;
  }
}

.services-list-img{
  width: 100%; 
}
@media (min-width: 640px) {
  .services-list-img{
    width: 35%; 
  }
}

.services-list-img img{
  width: 100%;
  height: 280px; 
  object-fit: cover;
}
@media (min-width: 640px) {
  .services-list-img img{
    height: 200px; 
  }
}

.services-list-txt {
  width: 100%;
  padding: 24px;
}
@media (min-width: 640px) {
  .services-list-txt {
    width: 65%;
  }
}

.services-list-txt h3{
  font-size: 20px; 
  font-weight: 700; 
  margin-bottom: 12px;
}

.services-list-txt p{
  font-size: 14px; 
  line-height: 1.75; 
  color: var(--color-muted-foreground);
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card-image {
  position: absolute;
  inset: 0;
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.service-card-content {
  position: absolute;
  /* bottom: 0; */
  /* left: 0; */
  /* right: 0; */
  padding: 24px;
  color: var(--color-white);
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.service-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .service-card-title {
    font-size: 30px;
  }
}

.service-card-description {
  font-size: 14px;
  line-height: 1.625;
  margin-bottom: 16px;
  opacity: 0.9;
  padding: 0 20px;
}
@media (min-width: 640px) {
  .service-card-description {
    font-size: 16px;
    padding: 0 70px;
  }
}


/* CTA Section */
.cta-section {
  background: linear-gradient(
    to bottom,
    rgba(1, 94, 174, 0.9),
    rgba(1, 94, 174, 0.8),
    rgba(1, 94, 174, 0.9)
  );
  backdrop-filter: blur(4px);
  text-align: center;
  color: var(--color-white);
}

.cta-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 30px;
  }
}

.cta-description {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 32px;
}

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

.news-list {
  /*border-top: 1px solid var(--color-border);*/
  margin: 70px auto;
}

.news-item {
  display: block;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  transition: opacity 0.2s ease;
}

@media (min-width: 640px) {
  .news-item {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

.news-item:hover {
  opacity: 0.7;
}

.news-date {
  font-size: 14px;
  color: var(--color-foreground);
  min-width: 90px;
  opacity: 0.8;
  margin-right: 2em;
}

.news-category {
  display: inline-flex;
  gap: 8px;
}

.news-tag {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--color-white);
}

.news-tag.blue {
  background-color: var(--color-brand-blue);
}

.news-tag.dark {
  background-color: var(--color-foreground);
}

.news-tag.red {
  background-color: #dc2626;
}

.news-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  margin: 10px 0;
  display: inline-block;
}
@media (min-width: 640px) {
  .news-title {
    margin: 10px 0 10px 20px;
  }
}

.news-item p{
  font-size: 14px;
  opacity: 0.8;
}


/* Careers Section */
.careers-section {
  background-color: var(--color-muted);
}

.careers-content {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .careers-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.careers-image {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

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

/* Footer */
.footer {
  position: relative;
  z-index: 20;
  background-color: var(--color-black);
  padding: 48px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-logo {
  display: inline-block;
  background-color: var(--color-white);
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 8px;
}

.footer-logo img {
  height: 18px;
  width: auto;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    gap: 24px;
  }
}

/* Page Hero */
.page-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-white);
}

.page-hero-title {
  font-size: 36px;
  font-weight: 700;
}

@media (min-width: 640px) {
  .page-hero-title {
    font-size: 48px;
  }
}

.page-hero-subtitle {
  /*margin-top: 8px;*/
  font-size: 14px;
  opacity: 0.8;
}

/* Sub Page Content */
.sub-page-content {
  /*padding-top: 80px;*/
}

/* Company Info Table */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid var(--color-border);
}

.info-table th,
.info-table td {
  padding: 16px;
  text-align: left;
  font-size: 14px;
}

.info-table th {
  width: 120px;
  font-weight: 500;
  background-color: #f9f9f9;
}

@media (min-width: 640px) {
  .info-table th {
    width: 160px;
  }
}

/* Office Location */
.office-card {
  /*background-color: var(--color-white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .office-card {
    flex-wrap: unset;
  }
}

.office-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  /*padding-bottom: 8px;
  border-bottom: 2px solid var(--color-brand-blue);*/
  display: flex;
  align-items: center;
  position: relative;
}
.office-title .office-title-icon{
  background-color: #015eae;
  display: flex;
  padding: 10px;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  color: #fff;
  margin-right: 10px;
}
.office-title .office-title-txt span{
  display: block;
  font-size: 14px;
  opacity: 0.8;
}
.office-title .office-title-img {
  position: absolute;
  right: 0;
}
.office-title .office-title-img a:hover{
  opacity: 0.8;
}

.office-info {
  /*display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;-*/
  width: 100%;
}
@media (min-width: 640px) {
  .office-info {
    width: 50%;
  }
}

.office-info .hr-line{
  border-top: 1px solid #e5e5e5;
  margin: 15px 0 15px 50px;
}

.office-info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin: 0 8px 8px 50px;
}

.office-info-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-brand-blue);
}

.office-info-item ul li {
  text-indent: -1em;
  margin-left: 1em;
  padding: 5px 0 0;
}
.office-info-item ul li:before {
  content: "";
  width: 3px;
  height: 3px;
  display: inline-block;
  background-color: #015eae;
  border-radius: 50%;
  position: relative;
  top: -4px;
  margin-right: 8px;
}

.office-map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .office-map {
    height: auto;
    width: 47%;
  }
}

.office-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Works List */
.works-section {
  background-color: var(--color-brand-blue);
  color: var(--color-white);
}

.works-year {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.works-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.works-item {
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  line-height: 1.625;
}

/* Contact Form */
.contact-section {
  padding-top: 128px;
  padding-bottom: 80px;
  background-color: var(--color-muted);
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-label {
  color: var(--color-brand-blue);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.contact-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 30px;
  }
}

.contact-description {
  font-size: 14px;
  /*color: var(--color-muted-foreground);*/
}

.contact-form-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-label .required {
  color: #dc2626;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-muted);
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-brand-blue);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.form-checkbox input {
  width: 16px;
  height: 16px;
}

.form-checkbox label {
  font-size: 14px;
}

.form-checkbox a {
  color: var(--color-brand-blue);
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.form-submit {
  display: flex;
  justify-content: center;
}

/* Privacy Policy */
.privacy-section {
  padding-top: 128px;
  padding-bottom: 80px;
}

.privacy-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .privacy-title {
    font-size: 30px;
  }
}

.privacy-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  /*border-bottom: 2px solid var(--color-brand-blue);*/
}

.privacy-content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 1em;
}

.privacy-content p.privacy-content-maintxt{
  padding-left: 0;
}

.privacy-content ul {
  margin-bottom: 16px;
  padding-left: 36px;
}

.privacy-content li {
  font-size: 16px;
  line-height: 1.1;
  list-style: disc;
  margin-bottom: 8px;
}

.privacy-content .hr-line{
  border-top: 1px solid #e5e5e5;
  margin-top: 30px;
}

.privacy-content dl{
  background: #f5f5f5;
  padding: 24px;
  box-sizing: border-box;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 14px;
  line-height: 2;
  border-radius: 8px;
}
@media (min-width: 640px) {
  .privacy-content dl{
    margin-left: 1em;
  }
}

.privacy-content dt {
  width: 15%;
  opacity: 0.8;
}

.privacy-content dd {
  width: 85%;
}


/* Recruit */
.recruit-job-card {
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
  text-align: center;
  padding: 24px;
}

.recruit-job-card p{
  margin-bottom: 1.5em;
}

.recruit-job-header {
  background-color: var(--color-brand-blue);
  color: var(--color-white);
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
}

.recruit-job-content {
  padding: 24px;
}

.recruit-job-table {
  width: 100%;
}

.recruit-job-table tr {
  border-bottom: 1px solid var(--color-border);
}

.recruit-job-table tr:last-child {
  border-bottom: none;
}

.recruit-job-table th,
.recruit-job-table td {
  padding: 12px 0;
  font-size: 14px;
  vertical-align: top;
}

.recruit-job-table th {
  width: 100px;
  font-weight: 500;
  color: var(--color-muted-foreground);
}

@media (min-width: 640px) {
  .recruit-job-table th {
    width: 120px;
  }
}

/* Message */
.message-text h3{
  font-size: 24px; 
  font-weight: 700; 
  line-height: 1.5; 
  margin-bottom: 36px;
}
.message-text p{
  font-size: 14px; 
  line-height: 1.75; 
  margin-bottom: 16px;
}
.message-text p.message-text-name{
  margin-top: 36px;
}
.message-text p.message-text-name span{
  display: block;
  font-size: 18px; 
  font-weight: 700;
}

/* Philosophy Cards */
.philosophy-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.philosophy-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .philosophy-card {
    flex-wrap: unset;
  }
}

.philosophy-icon-box {
  display: grid;
  margin-right: 20px;
  text-align: center;
}
@media (min-width: 640px) {
  .philosophy-icon-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.philosophy-icon {
  width: 80px;
  height: 80px;
  background-color: #e5eef6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.philosophy-icon-text{
  color: #e5eef6;
  font-size: 48px;
  font-weight: 700;
}

.philosophy-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-brand-blue);
}

.philosophy-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #171717;
}

.philosophy-card-title span {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #015eae;
}

.philosophy-card-text {
  font-size: 16px;
  line-height: 1.625;
  opacity: 0.8;
  color: #171717;
}

/* MISSION */
.mission-card{
  background-color: rgba(255,255,255,0.1); 
  border-radius: 8px; 
  padding: 32px; 
  text-align: center; 
  margin-bottom: 48px;
  margin-top: 48px;
}
.mission-card h3{
  font-size: 14px; 
  margin-bottom: 16px;
  opacity: 0.8
}
.mission-card .mission-card-title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.mission-card .mission-card-text{
  font-size: 16px;
  opacity: 0.8
}


/* News-detail */
.news-detail-section {
  padding-top: 128px;
  padding-bottom: 200px;
  background-color: var(--color-muted);
}

.news-detail-header {
  text-align: center;
  margin-bottom: 48px;
}

.news-detail-label {
  color: var(--color-brand-blue);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.news-detail-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .news-detail-title {
    font-size: 30px;
  }
}

ul.news-detail-description {
  font-size: 16px;
  /*color: var(--color-muted-foreground);*/
  display: flex;
  justify-content: center;
}

ul.news-detail-description li{
  width: 40%;
}

@media (min-width: 640px) {
  ul.news-detail-description li{
    width: 20%;
  }
}

ul.news-detail-description li:first-child {
  border-right: 1px solid;
}

.news-detail-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 46px 32px 68px;
  max-width: 640px;
  margin: 0 auto;
}

.news-detail-section a{
  display: flex; 
  align-items: center; 
  gap: 4px; 
  font-size: 14px; 
  color: var(--color-foreground);
  justify-content: center;
  margin-top: 60px;
}

.news-detail-section a:hover {
  opacity: 0.7;
}



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

.animation-delay-600 {
  animation-delay: 0.6s;
}

/* Scroll Animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* お問い合わせ項目（プルダウン）の矢印デザイン */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-muted-foreground);
  border-bottom: 2px solid var(--color-muted-foreground);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.select-wrapper select:focus {
  outline: none;
  border-color: var(--color-brand-blue);
  box-shadow: 0 0 0 3px rgba(1, 94, 174, 0.1);
}