@charset "UTF-8";
/*
* 変更履歴: 1.0.0<25/04/22>[U-0052] A-0042-ND
--------------------------------*/
.main-container {
    background: #ffffff;
}

.main {
    width: 864px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 0px 100px;
    box-sizing: border-box;
    gap: 80px;
}

.main-top {
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.common-title {
    width: 100%;
}

.main-titlebox {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    font-size: 16px;
    color: #767676;
}

.main-titlebox > :first-child {
    color: #333;
}

.main-title {
    position: relative;
    padding: 0 40px 0 0;
    box-sizing: border-box;
    letter-spacing: 0.02em;
    line-height: 170%;
    font-weight: 500;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: #333;
    display: block;
}

.main-title:visited {
    color: #767676;
}

@media screen and (max-width: 960px) {
    .main {
        width: 100%;
        padding: 60px 24px 100px 24px;
    }
    .main-title {
        padding: 0;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}