/* 全体 */
p {
    margin: 0;
}
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
    text-align: center;
}

.alignnone {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

.wp_section > *:not(.wp_h2_title, .wp_h3_title, .wp_h4_title, table) {
    padding: 0 20px;
}

.wp_section:nth-child(even) {
    background-color: #f8f8f8;
}

.wp_section {
    padding: 50px 0;
}
.wp_section:last-child {
    margin-bottom: 50px;
}

.wp_section p {
    line-height: 2;
}

.wp_section > p + p {
    margin-top: 20px;
}

.wp_h2_title, .wp_h3_title, .wp_h4_title{
    padding-bottom: 15px;
    margin: 40px 0 20px;
    font-weight: 500;
    font-size: 20px;
    border-bottom: 1px solid #d2d2d2;
}

.wp_section a {
    color: #1773ba;
    text-decoration: underline;
}

.wp_section table{
    margin: 30px 0;
    width: 100%;
}

.wp_section table td{
    padding: 15px;
    border: 1px solid #d5d5d5;
}

.wp_section table td > p + p {
    margin-top: 20px;
}


/* ステップ */

.wp_step_box {
    display: flex;
    align-items: stretch;
    border: 1px solid #cfcfcf;
    margin: 30px 0;
    padding-left: 0 !important;
}

.wp_step_box dt {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px !important;
    background: #005ba9;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

.wp_step_box dt::after {
    content: "";
    position: absolute;
    top: 0;
    right: -22px;
    width: 0;
    height: 0;
    border-top: 31px solid transparent;
    border-bottom: 31px solid transparent;
    border-left: 22px solid #005ba9;
}

.wp_step_box dd {
    flex: 1;
    margin: 0;
    padding: 15px 20px 15px 35px;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.4;
}

/* 小見出し */

.wp_komidashi_box {
    display: flex;
    gap: 10px;
    padding: 20px 20px 10px 20px !important;
}

.wp_komidashi_text {
    flex: 1;
}

.wp_subheading {
    margin: 0 0 10px 0 !important;
    font-size: 20px;
}

.wp_subheading::before , .wp_list_text::before{
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #000;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.wp_list_text {
    font-weight: bold;
    margin-bottom: 20px;
}

.wp_komidashi_image{
    width: 280px;
}

/* 画像横並び */ 
.wp_image_list_box {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding-top: 10px !important;
}

.wp_image_list_individual{
    flex: 1;
}

