
body {
  margin: 0;
  padding: 0;
  background-color: #f4f6f9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.profile-card {
  width: 100%;
  max-width: 750px;
  padding: 20px;
  box-sizing: border-box;
}

.main-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #1e3a8a; /* 深みのある青 */
  letter-spacing: 1px;
}

.sub-title {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 2px;
  margin: -15px 0 25px 0;
  text-transform: uppercase;
}
.content-container {
  display: flex;
  background-color: #ffffff; 
  border: 1px solid #e2e8f0;   
  border-radius: 8px;        
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); 
  overflow: hidden;
}

.profile-table {
  width: 60%;
  border-collapse: collapse;
}

.profile-table th, 
.profile-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid #edf2f7; 
}

.profile-table tr:last-child th,
.profile-table tr:last-child td {
  border-bottom: none;
}

.profile-table th {
  color: #475569;
  font-weight: 600;
  text-align: left;
  width: 30%;
}

.profile-table td {
  color: #0f172a;
  text-align: left;
}

.name-text {
  font-weight: 700;
  color: #2563eb; 
}

.image-area {
  width: 40%;
  background-color: #f8fafc; 
  border-left: 1px solid #edf2f7; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
}

.logo-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 24px; 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); 
  object-fit: cover;
}

@media (max-width: 600px) {
  .content-container {
    flex-direction: column; 
  }
  .profile-table {
    width: 100%;
  }
  .image-area {
    width: 100%;
    border-left: none;
    border-top: 1px solid #edf2f7;
    padding: 20px;
  }
}