.home {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.home-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home-section.hide {
    display: none;
}

.home-section__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-section__header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-section__header > div > img {
    width: 32px;
}

.home-section__header > div > div {
    color: #4A4A4A;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.home-section__icon-button {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #DADADA;
}

.home-section__icon-button.hide {
    display: none;
}

.home-section__icon-button > img {
    width: 18px;
}

.home-section__data {
    border-top: 1px solid #DADADA;
    padding-top: 20px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
}

.home-section__data.hide {
    display: none;
}

.home-section__data.home-section__data--announcement {
    gap: 20px;
}

.home-section__data.home-section__data--project {
    gap: 20px;
}

.home-section__data.home-section__data--link {
    gap: 14px;
}

.home-section__item.hide {
    display: none;
}

.home-section__item-content {
    display: grid;
    grid-template-columns: 1fr 32px;
    gap: 20px;
}

.home-section__item-content.hide {
    display: none;
}

.home-section__keywords {
    display: flex;
    column-gap: 8px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.home-section__keywords > div {
    padding: 2px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: #F8F5FC;
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.home-section__item-content.home-section__item-content--announcement > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-section__item-content.home-section__item-content--project > div {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-section__item-content.home-section__item-content--project > div > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-section__more-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.home-section__more-button.hide {
    display: none;
}

.home-section__more-button > button {
    width: 145px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(70, 0, 189, 0.04);
    border-radius: 2px;
    color: var(--point-button-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.home-section__item-content.home-section__item-content--link > a {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-section__item-content.home-section__item-content--link > a > img {
    width: 20px;
}

.home-section__item-content.home-section__item-content--link > a > div {
    color: #4A4A4A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.home-section__icon-button.home-section__icon-button--link {
    align-self: center;
}

.form-back-drop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.form-back-drop.hide {
    display: none;
}

.home-section__item-form {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home-section__item-form.hide {
    display: none;
}

.home-section__item-form-textarea {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.home-section__item-form-textarea > label {
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.home-section__item-form-textarea > div {
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-section__item-form-textarea > div > div {
    position: absolute;
    top: -27px;
    width: 100%;
    display: flex;
    justify-content: end;
}

.home-section__item-form-textarea > div > div > span {
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.home-section__item-form-textarea > div > textarea {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    border: 1px solid #DADADA;
    padding: 14px;
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    resize: none;
}

.home-section__item-form-textarea > div > textarea:focus {
    outline: none;
}

.home-section__item-form-textarea > div > textarea::placeholder {
    color: #9B9B9B;
}

.home-section__item-form-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-section__item-form-button button {
    width: 145px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    background-color: rgba(70, 0, 189, 0.04);
    color: var(--point-button-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.home-section__item-form-button button.hide {
    display: none;
}

.home-section__item-form-button button[type="submit"] {
    background-color: var(--point-button-color);
    color: #FFFFFF;
    line-height: 20px;
}

.home-section__item-form-button > div {
    display: flex;
    gap: 10px;
}

.home-section__item-form-search-keyword {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.home-section__item-form-search-keyword > div:first-child {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.home-section__item-form-search-keyword > div:first-child > input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #DADADA;
    padding: 0 30px 0 55px;
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.home-section__item-form-search-keyword > div:first-child > input:focus {
    outline: none;
}

.home-section__item-form-search-keyword > div:first-child > input::placeholder {
    color: #9B9B9B;
}

.home-section__item-form-search-keyword > div:first-child > div,
.home-section__item-form-search-keyword > div:first-child > img,
.home-section__item-form-search-keyword > div:first-child > button {
    position: absolute;
}

.home-section__item-form-search-keyword > div:first-child > img:first-child {
    width: 14px;
    left: 16px;
}

.home-section__item-form-search-keyword > div:first-child > div {
    color: #DADADA;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    left: 40px;
}

.home-section__item-form-search-keyword > div:first-child > button {
    right: 16px;
}

.home-section__item-form-search-keyword > div:first-child > button.hide {
    display: none;
}

.home-section__item-form-search-keyword > div:first-child > button > img {
    width: 12px;
}

.home-section__item-form-search-keyword > div:last-child {
    width: 100%;
    height: 222px;
    position: absolute;
    border-radius: 5px;
    border: 1px solid #DADADA;
    padding: 0 10px;
    background-color: #FFFFFF;
    overflow: auto;
    top: 54px;
}

.home-section__item-form-search-keyword > div:last-child.hide {
    display: none;
}

.home-section__item-form-search-keyword > div:last-child > div {
    width: 100%;
    height: 37px;
    display: flex;
    align-items: center;
    color: #4A4A4A;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-bottom: 1px solid #DADADA;
    cursor: pointer;
}

.home-section__item-form-search-keyword > div:last-child > div:last-child {
    border-bottom: none;
}

.home-section__item-form-keywords {
    display: flex;
    column-gap: 8px;
    row-gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.home-section__item-form-keywords > div {
    padding: 10px 16px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 9999px;
    background-color: rgba(70, 0, 189, 0.04);
}

.home-section__item-form-keywords > div > div {
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.home-section__item-form-keywords > div > button > img {
    width: 12px;
}

.home-section__item-form-input {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.home-section__item-form-input > label {
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.home-section__item-form-input > div {
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-section__item-form-input > div > div:first-child {
    position: absolute;
    top: -27px;
    width: 100%;
    display: flex;
    justify-content: end;
}

.home-section__item-form-input > div > div:first-child > span {
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.home-section__item-form-input > div > div:last-child {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.home-section__item-form-input > div > div:last-child > input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #DADADA;
    padding: 0 30px 0 16px;
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.home-section__item-form-input > div > div:last-child > input:focus {
    outline: none;
}

.home-section__item-form-input > div > div:last-child > input::placeholder {
    color: #9B9B9B;
    line-height: 24px;
}

.home-section__item-form-input > div > div:last-child > button {
    position: absolute;
    right: 16px;
}

.home-section__item-form-input > div > div:last-child > button.hide {
    display: none;
}

.home-section__item-form-input > div > div:last-child > button > img {
    width: 12px;
}

.home-section__item-form-date {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.home-section__item-form-date > label {
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.home-section__item-form-date > div {
    display: flex;
}

.home-section__item-form-date > div > div {
    display: flex;
    align-items: center;
    position: relative;
}

.home-section__item-form-date > div > div > input {
    width: 210px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #DADADA;
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 0 30px 0 16px;
}

.home-section__item-form-date > div > div > input:focus {
    outline: none;
}

.home-section__item-form-date > div > div > input::placeholder {
    color: #9B9B9B;
}

.home-section__item-form-date > div > div > button {
    position: absolute;
    right: 16px;
}

.home-section__item-form-date > div > div > button.hide {
    display: none;
}

.home-section__item-form-date > div > div > button > img {
    width: 12px;
}

.home-section__item-form-date > div > div:nth-child(1),
.home-section__item-form-date > div > div:nth-child(4) {
    margin-right: 10px;
}

.home-section__item-form-date > div > div:nth-child(3) {
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0 8px;
}

.home-section__no-data {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #DADADA;
    margin-top: 20px;
}

.home-section__no-data.hide {
    display: none;
}

.home-section__no-data > div {
    display: flex;
    gap: 20px;
}

.home-section__no-data > div > img {
    width: 60px;
}

.home-section__no-data > div > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 0;
}

.home-section__title-text {
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.home-section__normal-text {
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.home-section__normal-text.home-section__normal-text--16px {
    font-size: 16px;
}
