@charset "utf-8";
/* CSS Document */

.pinkribbon .eventDetail .selectEvent h2 {color: #F26666;}
.pinkribbon .eventDetail .selectEvent h2>span {background: url(/assets/images/common/icon-check-pink.png) no-repeat left center;}
.pinkribbon .eventDetail .selectEvent:before {background: url(/assets/images/common/triangleMark-pink.png) no-repeat left top;}
.pinkribbon #contents table th {background: #ffcedd;}

/* Orchestra Styles */
.selectEvent {
    background: transparent;
    padding: 20px 0;
}

.selectEventInner {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
    background: #fff;
    /* White background */
    color: #333;
    /* Black text */
    border: 3px double #d4af37;
    /* Subtle gold border */
    border-radius: 4px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.eventDetail .selectEvent p {
    font-size: 26px;
    font-weight: 700;
    margin: 30px 0 0 0;
    line-height: 1.6;
    color: #000;
}

.orchestra-subtitle {
    display: block;
    font-size: 14px !important;
    margin-top: 5px;
    margin-bottom: 25px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.orchestra-subtitle::before {
    content: "※";
    margin-right: 3px;
}

.selectEventInner .data {
    margin-top: 25px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.selectEventInner .data ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.selectEventInner .data ul li {
    font-size: 16px;
    color: #444;
}

.selectEventInner .data ul li span {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

/* Logo */
.orchestra-logo {
    display: block;
    margin: 10px auto 10px;
    width: 230px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Icons */
.orchestra-icon {
    position: absolute;
    width: auto;
    height: 50px;
    pointer-events: none;
    z-index: 5;
}

.icon-violin {
    top: 20px;
    right: 20px;
    height: 60px;
}

.icon-clef {
    top: 20px;
    left: 20px;
    height: 50px;
}

.icon-note {
    bottom: 20px;
    right: 30px;
    height: 40px;
}

.icon-staff {
    bottom: 20px;
    left: 20px;
    height: 60px;
}

/* Responsive adjustment */
@media screen and (max-width: 768px) {
    .selectEventInner {
        padding: 60px 15px;
        margin: 0 10px;
    }

    .orchestra-icon {
        height: 35px;
    }

    .icon-violin {
        height: 45px;
    }

.icon-staff {
    height:55px;
}
    .selectEventInner p {
        font-size: 19px;
    }

    .selectEventInner .data ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* Guest Introduction Styles */
.guest-list {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.guest-item {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 15px;
}

.guest-item .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9f9f9;
}

.guest-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.guest-item .info-box {
    padding: 15px 10px;
}

.guest-item .role {
    display: block;
    font-size: 13px;
    color: #F26666;
    font-weight: 700;
    margin-bottom: 5px;
}

.guest-item .name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.guest-item .name span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-top: 2px;
}

.guest-item .profile-link {
    display: inline-block;
    font-size: 12px;
    color: #888;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 4px 12px;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    .guest-list {
        flex-direction: column;
        align-items: center;
    }

    .guest-item {
        width: 100%;
        max-width: 400px;
    }
}