/* find */
.find-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.find-item {
    display: flex;
    flex-direction: column;
}
.find-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* related */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}
.related-item {
    display: flex;
    flex-direction: column;
}
.related-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* question */
.work-list-box {
    margin-top: 60px;
    display: flex;
    border-radius: 20px;
    border: 1px solid #999;
    justify-content: space-between;
}

.work-list-box-left {
    width: 100%;
    min-width: 50%;
    padding: 50px;
}
@media (max-width: 767px) {
    .work-list-box {
        flex-direction: column-reverse;
    }
    .work-list-box-left {
        padding: 20px;
    }
}
.work-title {
    text-align: left;
}
.work-list-box-nav {
    width: 100%;
    min-width: 50%;
    display: flex;
    /*gap: 20px;*/
    flex-direction: column;
}
.work-list-box-nav-item {
    /*border-left: 2px #e9e9e9 solid;*/
    color: #848484;
    transition: transform 0.3s ease;
    /* height: 35px; */
    padding: 15px 0;
    border-bottom: 1px solid #999;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
}
.work-list-box-nav-item:first-child {
    border-top: 1px solid #999;
}
.work-list-box-nav-item.active::after {
    transition: transform 0.3s;
    transform: rotate(-45deg);
}
.work-list-box-nav-item.active h4 {
    color: #000;
}
.work-list-box-nav-item-content {
    width: 100%;
    min-height: 33px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.grid {
    display: grid;
    grid-template-rows: 0fr;
    transition: .3s;
    overflow: hidden;
}
.grid div {
    min-height: 0;
}
.work-list-box-nav-item.active .grid {
    grid-template-rows: 1fr;
}
.work-list-box-nav-item-content p {
    margin: 0;
}
.work-list-box-nav-number {
    font-size: 22px;
    font-family: SailecBold;
    color: #4e5956;
    width: 30px;
    display: flex;
    align-items: start;
}
.work-list {
    overflow: hidden;
}
.work-item {
    border-radius: 20px;
}
.work-item img {
    width: 100%;
    height: auto;
    /*border: 1px solid #666;*/
    border-radius: 20px;
    object-fit: cover;
}
.work-list-box-nav-item-line {
    width: 2px;
    height: 100%;
    background: #e9e9e9;
    position: absolute;
    left: 0;
    top: 0;
}
.work-list-box-nav-item-line-active {
    background: linear-gradient(to bottom, #0033A1 50%, #e9e9e9 50%);
    background-size: 100% 200%;
    animation: changeColor 5s forwards;
}

.work-list-box-nav-item::after {
    transition: transform 0.3s;
    content: '+';
    font-weight: bold;
    transform: rotate(0deg);
    font-size: 26px;
}

@media (max-width: 767px) {
    .work-list-box-nav-item-content h4 {
        font-size: 18px;
    }
}
/* manage */
.manage-section {
    display: flex;
    gap: 100px;
    padding-bottom: 100px;
    background-color: #F9F9F9;
}
.manage-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.manage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.manage-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-color: #FFFFFF;
    height: 250px;
    border-radius: 10px;
}
.manage-item:nth-child(even) {
    top: 50px;
    position: relative;
}
.manage-item-title {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
}
.manage-item-title span {
    font-size: 30px;
    font-weight: bold;
}
.manage-item-title h3 {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .manage-section {
        flex-direction: column;
        gap: 50px;
    }
    .manage-container {
        width: auto;
    }
    .title {
        margin-bottom: 10px;
    }
    .manage-item:nth-child(even) {
        top: 0;
    }
}
/* form */
.visit-form {
    width: 70% !important;
}
@media (max-width: 767px) {
    .visit-form {
        width: auto !important;
    }
}
