
header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.organization {
    padding-top: 0px;
}

#org-map {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: transparent;
    padding: 20px;
    box-sizing: border-box;
}

.organization-container {
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

.section-title{
    margin-top: 100px!important;
}

.department-container {
    position: absolute;
    text-align: center;
    transition: left 0.5s ease, top 0.5s ease;
}

.department-label {
    font-weight: bold;
    color: #DF5446;
    margin-bottom: 5px;
    font-size: 1rem;
}

.department-icon {
    width: 120px;
    height: 120px;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}

.department-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.member-wrapper {
    position: absolute;
    cursor: pointer;
    transition: left 0.5s linear, top 0.5s linear;
    display: flex;
    align-items: center;
}

.member-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #fff;
}

.member-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.member-name {
    margin-left: 5px;
    font-size: 1rem;
    color: #333;
    white-space: nowrap;
}

#org-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#org-overlay.show {
    display: flex;
    opacity: 1;
}

#org-overlay .content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-size: 1rem;
    text-align: left;
}

#org-toggleAlign {
    font-family: "Aozora Mincho";
    position: sticky;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    padding: 10px 20px;
    background: #DF5446;
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
}

@media (min-width: 1024px) {
    .department-icon { width: 120px; height: 120px; }
    .member-icon { width: 50px; height: 50px; }
    .department-label, .member-name { font-size: 1rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .department-icon { width: 100px; height: 100px; }
    .member-icon { width: 40px; height: 40px; }
    .department-label, .member-name { font-size: 0.9rem; }
}

@media (max-width: 767px) {
    .department-icon { width: 80px; height: 80px; }
    .member-icon { width: 30px; height: 30px; }
    .department-label, .member-name { font-size: 0.8rem; }
}

.tag {
  line-height: 1.6;
  margin: 0;
  font-size: 0.8rem;
}

.hash-tag {
  color: #DF5446;         
  text-decoration: none;
  cursor: pointer;
  
  display: inline-block;
  white-space: nowrap;
  margin-right: 0.5em;
  line-height: inherit;
  font-size: 0.8rem;
}

.hash-tag:hover {
  text-decoration: none;
}
