.jo-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.jo-item {
    width: 100%;
    max-width: 1000px;
    border-bottom: 1px solid #00B1E1;
    transition: background 0.4s ease, border-radius 0.4s ease, margin 0.4s ease;
}
.jo-item.is-open {
    background: #E5F7FC;
    border-radius: 8px;
    border-bottom: none;
    margin-bottom: 8px;
}
.jo-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    cursor: pointer;
    gap: 16px;
}
.jo-item__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.jo-item__title {
    font-size: 24px;
    font-weight: 500;
    color: #00647F;
    line-height: 1.3;
}
.jo-item__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.jo-tag {
    font-size: 14px;
    font-weight: 300;
    color: #00647F;
}
.jo-tag:not(:last-child)::after {
    content: '·';
    margin-left: 8px;
    color: #00647F;
}
.jo-item__toggle {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 0 !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jo-icon--minus {
    display: none;
}
.jo-item.is-open .jo-icon--plus {
    display: none;
}
.jo-item.is-open .jo-icon--minus {
    display: block;
}
.jo-item__body {
    overflow: hidden;
}
.jo-item__body-inner {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 40px;
    transition: max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.5s ease 0.15s,
                padding-bottom 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.jo-item__description {
    font-size: 15px;
    line-height: 1.6;
    color: #00647F;
    margin-bottom: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.jo-item__description h3,
.jo-item__description h4 {
    font-size: 16px;
    font-weight: 700;
    color: #00647F;
    margin: 20px 0 8px;
}
.jo-item__description ul {
    padding-left: 16px;
    margin: 8px 0;
}
.jo-item__description p {
    margin: 8px 0;
}
.jo-item__apply {
    font-size: 16px;
    display: inline-flex;
    align-self: flex-start;
    padding: 16px 30px;
    background: #00647F;
    color: #fff;
    border-radius: 32px;
    text-decoration: none;
    margin-top: 26px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}
.jo-item__apply:hover {
    color: #fff;
}
.jo-item__apply::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
}
.jo-item__apply:hover::after {
    animation: shine 0.8s ease forwards;
}
@keyframes shine {
    0% { left: -150%; }
    100% { left: 150%; }
}
@media (max-width: 768px) {
    .jo-item__header { padding: 16px; }
    .jo-item__title { font-size: 20px; }
    .jo-item__body-inner { padding: 0 16px; }
	.jo-item__apply { padding: 10px 24px;}
}