/* お問い合わせフォーム用スタイル */
.inquiry-description {
  margin: 0 auto;
  max-width: 800px;

  font-size: 1rem;
  /* line-height: 1.8; */
  color: #f3f3f3;
}

/* お問い合わせフォーム用スタイル（縦並び・広め・単色ボタン） */
.stylish-contact-form {
  max-width: 800px;
  margin: 2em auto;
  padding: 0.8em 2em 2em 2em;
  background-color: #eeeeee;
  border-radius: 18px;
  /* border-radius: 0.5rem; */
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.stylish-contact-form label {
  font-weight: 600;
  /* color: #333; */
  color: black;
  margin-top: 1.2em;
}
.stylish-contact-form input,
.stylish-contact-form textarea {
  width: 100%;
  padding: 0.9em 1.1em;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1.08em;
  background: #f8fafc;
  transition: border-color 0.2s;
  margin-bottom: 0.2em;
}
.stylish-contact-form input:focus,
.stylish-contact-form textarea:focus {
  border-color: #222;
  outline: none;
}
.stylish-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.single-color-btn {
  display: block;
  width: 100%;
  padding: 0.9em 0;
  background: #222;
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 1.5em;
  box-shadow: 0 2px 8px rgba(75,75,150,0.08);
  transition: background 0.2s;
}
.single-color-btn:hover {
  background: #444;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0a0a0a;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("images/subtle-dark-corporate-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}

.company-name {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(4rem, 12vw, 8rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.status-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  /* font-size: 1.2rem; */
  font-weight: 300;
  color: white;
}

/* スマホビューでのみ改行を表示 */
.mobile-br {
  display: none;
}

/* デスクトップでのみスラッシュを表示 */
.desktop-slash {
  display: inline;
}

@media (max-width: 767px) {
  .mobile-br {
    display: inline;
  }
  .desktop-slash {
    display: none;
  }
}

/* Profile Section */
.profile-section,
.inquiry-section {
  padding: 5rem 0;
  background-color: #1a1a1a;
  color: white;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  /* align-items: center; */
  align-items: start;
  margin-bottom: 4rem;
}

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

.profile-image-container {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .profile-image-container {
    margin-top: 0;
  }
}

.profile-image {
  border-radius: 0.5rem;
  background-size: cover;
  background-position: center;
  /* gemini: 928x1120 */
  width: 240px;
  height: 290px;
  background-image: url("images/profile_516_gemini.png");

  /* width: 240px;
  height: 240px;
  background-image: url("images/profile_516.png"); */

  /* transition: all 0.3s ease; */
}

/* .profile-image:hover {
  background-image: url("images/profile_516.png");
  width: 240px;
  height: 240px;
} */

.profile-furigana {
  font-size: 0.8rem;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.profile-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #f3f3f3;
}

/* .profile-description p {
  margin-bottom: 0.75rem;
} */

/* Media Coverage */
.media-coverage {
  margin-top: 4rem;
}

/* 箇条書きのインデント設定 */
.bullet-list {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0 !important;
}

.profile-description h4 {
  font-size: 1.0rem;
  font-weight: 700;
  color: white;
  margin-top: 0.75rem;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: white;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.media-card {
  background-color: #2a2a2a;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.media-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.media-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.media-logo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.25rem;
  flex-shrink: 0;
}

.media-logo-money-bu {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.25rem;
  flex-shrink: 0;
}

.media-logo-newspicks {
  width: 120px;
  height: 61px;
  object-fit: cover;
  border-radius: 0.25rem;
  flex-shrink: 0;
}

.media-text {
  flex: 1;
}

.media-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.media-source {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 0.75rem;
}

.media-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.media-link:hover {
  color: #93c5fd;
}

.external-icon {
  width: 16px;
  height: 16px;
}

/* Company Section */
.company-section {
  padding: 5rem 5rem;
  background-color: #0a0a0a;
}

.company-card {
  /* background-color: #1a1a1a; */
  background-color: #eeeeee;
  border-radius: 0.5rem;
  padding: 2rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.company-info {
  display: flex;
  flex-direction: column;
  /* gap: 1.5rem; */
}

.info-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.5px solid #999999;
  align-items: center;
}

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

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  /* color: white; */
  color: black;
  margin-left: 1rem;

}

@media (max-width: 767px) {
  .info-label {
    margin-left: 0;
  }
}

.info-value {
  /* color: #e5e5e5; */
  color: black;
}

.info-value-en {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #444444;
  font-size: 1.1rem;
}


.business-item {
  margin-bottom: 1rem;
}

.business-item:last-child {
  margin-bottom: 0;
}

.business-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222222;
  /* color: white; */
}

.business-list {
  list-style: none;
  margin-left: 1rem;
}

.business-list li {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  background-color: white;
  border-top: 1px solid #e5e5e5;
}

.footer-text {
  text-align: center;
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02em;
  /* font-size: clamp(4rem, 12vw, 8rem); */
  /* color: rgba(255, 255, 255, 0.9); */
}

/* Responsive Design */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }

  .profile-section,
  .company-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .profile-image {
    width: 240px;
    height: 290px;
    /* width: 240px;
    height: 240px; */
  }

  .profile-description {
    font-size: 1rem;
  }

  .company-card {
    padding: 1.5rem;
  }
}
