@charset "utf-8";
/* CSS Document */

#S01 {}
#S01 h3 {
    border-bottom: 1px solid #999;
    padding: 1.5em 0.75em 0.75em;
}
#S01 ul {
    width: fit-content;
    margin: auto;
}
#S01 ul li {
    padding: 1em 0 0;
    text-align: left;
}

#S02 {}
main table th {
    background: #e7e5e5;
    color: #333;
}

.detailBox {
    display: flex;
    gap: 20px;
    padding: 3em 0;
}
.leftBox {
  width: 520px;
  flex-shrink: 0; 
}

.rightBox {
  flex: 1;
  min-width: 0;
}

#S03 .rightBox h4 small {
    display: block;
    border-top: 1px solid #999;
    padding: 2px 0 0;
}
#S03 .profile {
    padding: 1em 0;
}

#S03 .profile p {
    text-align: left;
    padding: 0.25em 0;
}
#S03 table {
    margin: 10px 0;
}

#S03 table th {
    width: 24%;
    font-weight: 400;
    background: inherit;
    border-left: none;
}
#S03 table td {
    text-align: left;
    background: inherit;
    border-right: none;
}

/*----------------------------------------------------------- 1024px */
@media screen and (max-width: 1024px) {
.detailBox {
  flex-flow: column;
}
.leftBox {
  width: 100%;
}
}