/* 企業ホームページ用スタイル */

body, html {
  background: #21143a !important;
  color: #fff;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

main, .corporate-section, .section-content {
  background: #21143a !important;
}

/* ヒーローセクション */
.corporate-hero {
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #1a1026;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 0;
}

.hero-content {
  background-image: url('./images/tigaxa-phoenix-header.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 16, 38, 0.7);
  z-index: 1;
}

.phoenix-hero-inner, .hero-text {
  text-align: center;
  z-index: 2;
  position: relative;
}

.phoenix-logo {
  width: 220px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 40px #00eaff88);
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 6.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #00eaff;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #00eaff88;
  margin-top: 40px;
}

.hero-title .phoenix-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  filter: drop-shadow(0 0 20px #00eaff88);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 15px;
  opacity: 0.9;
  font-weight: 300;
  color: #ffb347;
  text-shadow: 0 0 8px #ffb34755;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.8;
  line-height: 1.6;
  color: #fff;
}

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

.hero-image {
  flex: 1;
  text-align: center;
}

/* ボタンスタイル */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #ffb347, #ff416c, #ffb347);
  color: #fff;
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow: 0 0 20px #ff416c88;
  border: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff416c, #ffb347, #ff416c);
  box-shadow: 0 0 40px #ffb34788;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #00eaff;
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid #00eaff;
  transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background: #00eaff22;
  color: #fff;
}

/* セクション共通スタイル */
.corporate-section {
  padding: 32px 0;
  margin-bottom: 24px;
  background: #21143a !important;
  border-radius: 16px;
  box-shadow: 0 4px 32px #0002;
}

.corporate-section:nth-child(even) {
  background: #21143a !important;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00eaff;
  text-shadow: 0 0 16px #00eaff99, 0 0 2px #fff;
  letter-spacing: 0.08em;
  border-bottom: 2px solid #ff416c;
  display: inline-block;
  padding-bottom: 8px;
}

.section-header p {
  font-size: 2.2rem;
  color: #ffb347;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 会社概要セクション */
.company-info, .services-grid, .case-studies, .contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.info-item, .service-item, .case-item, .contact-item {
  background: #21143a !important;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 32px #00eaff22;
  text-align: center;
  color: #fff;
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, #00eaff, #ff416c, #ffb347) 1;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.info-item:hover, .service-item:hover, .case-item:hover {
  box-shadow: 0 0 40px #00eaff88, 0 8px 32px #ff416c44;
  border-color: #ff416c;
}

.info-item h3, .service-item h3, .case-item h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffb347;
}

.info-item p, .service-item p, .case-item p {
  line-height: 1.6;
  color: #fff;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ff416c;
  text-shadow: 0 0 12px #ffb34788;
}

/* 実績・事例セクション */
.case-studies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.case-item {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.case-item p {
  line-height: 1.6;
  color: #666;
}

/* お知らせ・ブログセクション */
.news-list {
  margin-bottom: 40px;
}

.news-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #00eaff33;
}

.news-date {
  font-size: 0.9rem;
  color: #00eaff;
  min-width: 80px;
  font-weight: bold;
  text-shadow: 0 0 6px #00eaff88;
}

.news-title {
  margin: 0;
  flex: 1;
}

.news-title a {
  color: #ffb347;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 4px #ffb34755;
  transition: color 0.2s;
}

.news-title a:hover {
  color: #00eaff;
}

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

/* お問い合わせセクション */
.contact-section {
  background: #1a1026;
  color: white;
}

.contact-section .section-header h2,
.contact-section .section-header p {
  color: #00eaff;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.contact-item {
  text-align: center;
  background: #21143a !important;
  border: 2px solid #00eaff;
  box-shadow: 0 0 24px #00eaff33;
}

.contact-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.contact-item .phone,
.contact-item .email {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-buttons {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3.0rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .corporate-section {
    padding: 60px 0;
  }
  
  .company-info,
  .services-grid,
  .case-studies,
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3.0rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .info-item,
  .service-item,
  .case-item {
    padding: 30px 20px;
  }
}

.bottom-title {
  margin-top: 80px;
  font-size: 1.5rem;
  color: #ffb347;
  text-shadow: 0 0 8px #ffb34755;
  justify-content: center;
  gap: 12px;
}

#wrapper {
  position: relative;
  z-index: 1;
}
#wrapper::before {
  content: none;
  display: none;
}

.corporate-section.narrow {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
} 