/* ========================================
   Characters Intro Page Styles
   ======================================== */

.characters-intro-main {
    padding: 40px 0;
}

.intro-content {
    background-color: #ffffff;
    border: 2px solid #DDCDBF;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.intro-description {
    margin-bottom: 30px;
    text-align: center;
}

.intro-description p {
    font-size: var(--min-font-size, 1.125rem);
    line-height: 1.8;
    color: #333333;
    margin-bottom: 15px;
}

.intro-description p:last-child {
    margin-bottom: 0;
}

.notice-section {
    margin-bottom: 40px;
    padding: 25px;
    background-color: rgb(248, 248, 248);
    border-left: 4px solid rgb(113, 175, 182);
}

.notice-section h3 {
    font-size: 1.3rem;
    color: rgb(113, 175, 182);
    margin-bottom: 15px;
    font-weight: 500;
}

.notice-list {
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

.notice-list li {
    font-size: var(--min-font-size, 1.125rem);
    line-height: 2;
    color: #333333;
    margin-bottom: 10px;
    padding-left: 10px;
}

.notice-list li:last-child {
    margin-bottom: 0;
}

.notice-list a {
    color: rgb(113, 175, 182);
    text-decoration: underline;
    text-decoration-color: rgb(113, 175, 182);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.notice-list a:hover {
    color: rgb(95, 155, 162);
    text-decoration-color: rgb(95, 155, 162);
}

.action-section {
    text-align: center;
}

.go-to-plaza-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 400;
    text-decoration: none;
}

.go-to-plaza-btn:hover {
    text-decoration: none;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .intro-content {
        padding: 20px;
    }

    .notice-section {
        padding: 20px;
    }

    .go-to-plaza-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}





