@charset "utf-8";
.content-area .wp-block-group {
    padding: 30px 0;
}

#single-two-column #article-area h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 25px;
}

.content-area h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: .005em;
    color: #FB8202;
}

.content-area h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.875rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #d6d6d6;
    position: relative;
}

.content-area h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: #FB8202;
}

.content-area p {
    font-size: .875rem;
    margin: 0 0 30px 0;
    line-height: 1.75rem;
    letter-spacing: .01rem;
}

.content-area img {
    margin: 0 0 10px 0;
}

.no_bullets {
    width: 100%;
    margin: 30px auto;
    border: 1px solid #d6d6d6;
    padding: 30px 25px;
}

.no_bullets .toc_title {
    text-align: center;
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 20px
}

.no_bullets .toc_list li {
    padding: 15px 0;
    font-size: .97rem;
    line-height: 1.25rem;
}

.no_bullets .toc_list li ul li {
    border-bottom: 1px solid #d6d6d6;
}

.no_bullets .toc_list li ul {
    margin: 20px 0;
    padding-left: 25px
}

@media screen and (min-width: 768px) {
    .content-area h2 {
        font-size: 1.75rem;
        letter-spacing: .08em;
    }
    .content-area h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .content-area p {
        font-size: 1rem;
        margin: 0 0 45px 0;
        line-height: 2.2rem;
        letter-spacing: .08rem;
    }
    .no_bullets {
        width: 80%;
        margin: 40px auto;
        padding: 30px 45px;
    }
    .no_bullets .toc_list li {
        font-size: 1rem;
        padding: 20px 0;
    }
}

.next-article {
    display: block;
    margin: 15px 0;
    padding: 15px;
    background: #ede4cd;
    border: 1px solid #333;
}


/* cvbtn */

.point-area {
    width: 100%;
    background: #212121;
    color: #fff;
    padding: 2%;
    background: #ede4cd;
}

.point-heading {
    margin-bottom: 20px !important;
}

.point-heading span {
    color: #FB8202;
    font-size: 1.2em;
}

.point-textarea {
    color: #333;
    margin-bottom: 2% !important;
}

.point-textarea span {
    font-weight: bold !important;
}

.cv-btn {
    width: 100%;
    background: #333;
    padding: 2% 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px
}

.cv-btn img {
    width: 30%;
    padding: 3%;
    margin: 0;
    filter: invert(100%);
}

.cv-btn a {
    width: 65%;
    padding: 2%;
    margin: 0 !important;
    text-align: center;
    background: #FB8202;
    border-radius: 5rem;
}

.cv-btn a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1.3em;
    font-weight: bold;
    color: #fff
}

@media screen and (max-width:756px) {
    .cv-btn {
        flex-wrap: wrap;
        padding: 3%;
        gap: 15px;
    }
    .cv-btn p {
        width: 100%;
    }
    .cv-btn a {
        font-size: 1em;
        text-wrap: balance;
        word-break: auto-phrase;
    }
}


/* table */

.single-table,
.single-table-pt02 {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
}

.single-table td,
.single-table-pt02 td,
.single-table th,
.single-table-pt02 th {
    border: 1px solid #ddd;
    text-align: center;
    padding: 16px;
    /* 余白を増やす */
}

.single-table th,
.single-table-pt02 th {
    background-color: #d2b48c;
    /* シックなベージュに変更 */
    color: white;
}

.single-table tr:nth-child(even),
.single-table-pt02 tr:nth-child(even) {
    background-color: #fafaf0;
    /* より軽いベージュに変更 */
}

@media screen and (max-width: 768px) {
    .single-table {
        width: 100%;
    }
    .single-table tr {
        display: flex;
        flex-direction: column;
    }
    .single-table th,
    .single-table td {
        padding: 18px;
        /* タブレットサイズでの余白をさらに増やす */
    }
    .table-pt02-container {
        overflow-x: scroll;
    }
    .single-table-pt02 {
        width: 100%;
        min-width: 650px;
    }
    .single-table-pt02 tbody {
        min-width: 700px;
    }
    .single-table-pt02 td {
        display: table-cell;
    }
}

@media screen and (max-width: 480px) {
    .single-table {
        width: 100%;
    }
    .single-table td,
    .single-table th {
        padding: 14px;
        /* スマートフォンサイズでの余白を調整 */
        font-size: 14px;
    }
    .single-table-pt02 td,
    .single-table-pt02 th {
        padding: 14px;
        /* スマートフォンサイズでの余白を調整 */
        font-size: 14px;
    }
}