.form-group .red-text {
    color: #E1005A;
    font-weight: 700;
}

/* Application Details Screen specific styles */
.application-details-container {
    padding: 0 15px 40px; /* SP版のガターに合わせて左右15px */
}
@media (min-width: 768px) {
    .application-details-container {
        max-width: 450px; /* PC版のコンテンツエリア(小)の幅に設定 */
        margin: 0 auto; /* 中央寄せ */
        padding: 0 0 40px; /* PC版では左右のパディングを0に */
    }
}
.application-details-toggle {
    font-size: 18px;
    font-weight: bold;
    color: #002D64;
    cursor: pointer;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 2px dotted #CCCCCC; /* 点線を追加 */
    margin-top: 20px; /* 上の要素との間隔 */
    padding-left: 15px; /* SP版では左パディングを15pxに */
    padding-right: 15px; /* SP版では右パディングを15pxに */
}
@media (min-width: 768px) {
    .application-details-toggle {
        padding-left: 0; /* PC版では左パディングを0に */
        padding-right: 0; /* PC版では右パディングを0に */
    }
}
.application-details-toggle span {
    margin-left: 5px;
    font-size: 24px; /* +記号を大きく */
    line-height: 1; /* 行の高さを調整 */
}

.application-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    display: none; /* 初期は非表示 */
    margin-top: 15px; /* テーブルの上部に余白 */
}

.application-details-table th,
.application-details-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

.application-details-table th {
    background-color: #f2f2f2;
    width: 30%;
}
/* Complete Screen specific styles */
.complete-section-table table {
    width: auto; /* テーブルの幅を内容に合わせる */
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}
.complete-section-table th,
.complete-section-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    white-space: nowrap; /* テキストの折り返しを防ぐ */
}
.complete-section-table th {
    background-color: #002D64;
    color: #FFFFFF; /* 項目名の文字色を002D64に設定 */
    font-weight: bold;
}
.complete-section-title {
    color: #002D64; /* step-titleと同じ色に */
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: left;
}
