@charset "UTF-8";

.under_subtitle {
    margin-bottom: 0.5rem;
}

@media screen and (max-width:1200px) {
    .container {
        padding-left: 5%;
        padding-right: 5%;
    }

    /*=====max-width:1200px=====*/
}

/* ============================
* section:flow_guide
* ========================= */

.flow_guide .flowguide_inner {
    margin-bottom: var(--section_gutter);
}

.flow_guide .flow_msg {
    text-align: center;
    margin-bottom: var(--contents_gutter);
}

.flow_guide .flow_msg a {
    color: #9ed0d0;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.flow_guide .flowguide_box {
    display: flex;
    padding: 2rem;
    justify-content: space-between;
    background-color: var(--main_color);
    border-radius: 10px;
}

.flowguide_box .flowguide_item {
    position: relative;
    width: 25%;
}

.flowguide_box .flowguide_step {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    font-size: var(--size_md);
    text-align: center;
    background-color: #fff;
    border: 1px dashed var(--beige_dense);
    border-radius: 50%;
}

.flowguide_box .flowguide_item .flowguide_num {
    position: absolute;
    top: -1rem;
    left: 0;
    color: var(--beige_dense);
}

.flowguide_box span.pc_br {
    display: block;
}

.flowguide_box .flowguide_item:not(:last-child) span.arrow {
    position: absolute;
    top: 50%;
    left: calc(50% + 120px/2);
    width: calc(100% - 120px - 2px);
    height: 2px;
    border-radius: 100%;
    background-color: var(--beige_dense);
}

.flowguide_box .flowguide_item:not(:last-child) span.arrow::before {
    content: "";
    position: absolute;
    top: calc(-0.64952em/2 + 1px);
    right: 0;
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.375em 0.64952em;
    border-left-color: currentColor;
    border-right: 0;
}

@media screen and (max-width:723px) {


    .flow_guide .flowguide_box {
        flex-direction: column;
        background-color: var(--bg_color);
    }

    .flowguide_box .flowguide_item {
        width: 100%;
    }

    .flowguide_box .flowguide_item .flowguide_num {
        position: static;
        margin-right: 1rem;
    }

    .flowguide_box .flowguide_step {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        margin-bottom: var(--contents_side_gutter);
        padding: 0.5rem 0;
        border-radius: 5px;
        background-color: var(--main_color);
    }

    .flowguide_box span.pc_br {
        display: inline;
    }

    .flowguide_box span.pc_br:not(:last-child)::after {
        content: "・";
    }

    .flowguide_box .flowguide_item:not(:last-child) span.arrow {
        top: calc(100% - var(--contents_side_gutter));
        left: calc(50% - 1px);
        width: 2px;
        height: var(--contents_side_gutter);
    }

    .flowguide_box .flowguide_item:not(:last-child) span.arrow::before {
        transform: rotate(90deg) translate(17px, -4px);
    }

    /*=====max-width:723px=====*/
}

/* ============================
* section: flow
* ========================= */

.flow_content {
    position: relative;
    margin-bottom: var(--contents_gutter);
}

.flow_content .container {
    display: flex;
    align-items: center;
}

.flow_step_txtbox {
    width: 50%;
    max-width: 538px;
    padding: 40px;
}

.flow_content .flow_img {
    position: absolute;
    top: 0;
    width: 50%;
    max-height: 538px;
    height: 100%;
}

.flow_content .flow_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow_content .flow_img.right {
    left: 50%;
}

.flow_content .flow_img.left {
    left: 0;
}

.flow_content .blank {
    width: 50%;
    height: 100%;
}

.flow_step_txtbox .flow_step_ttl {
    margin-bottom: 24px;
    color: var(--title_color);
    font-size: var(--size_lg);
    font-weight: 500;
}

.flow_step_txtbox .flow_step_ttl span {
    display: block;
    color: var(--beige_dense);
    font-size: var(--size_ss);
    line-height: 0.5;
}

.flow_step_wrap .flow_step_item {
    position: relative;
    padding: 0.5rem;
}

.flow_step_wrap .flow_step_item::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: calc(20px + 0.5rem);
    display: block;
    width: 1px;
    height: calc(100% - 0.5rem);
    background-color: var(--main_color);
    z-index: -1;
}

.flow_step_wrap .flow_step_item:last-of-type::before {
    display: none;
}

.flow_step_wrap .flex {
    display: flex;
    align-items: center;
    color: var(--title_color);
    font-size: var(--size_md);
}

.flow_step_wrap .flow_num {
    width: 64px;
}

.flow_step_wrap .flow_num span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: var(--beige_dense);
    border-radius: 20px;
    background-color: var(--main_color);
}

.flow_step_txtbox .flow_item_txt {
    margin-left: 64px;
    font-size: var(--size_ss);
}

@media screen and (max-width:1024px) {
    .flow_content .container {
        display: block;
    }

    .flow_content .flow_img {
        position: static;
        width: 100%;
        margin-bottom: 1rem;
    }

    .flow_content .flow_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .flow_step_txtbox .flow_step_ttl span {
        display: inline;
        margin-right: 1rem;
    }

    .flow_step_txtbox {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .flow_content .blank {
        display: none;
    }

    /*=====max-width:1024px=====*/
}

/* ============================
* section:アフターサービス
* ========================= */

.aftersuport .aftersuport_inner {
    margin-bottom: var(--footer_gutter);
    padding-top: var(--footer_gutter);
    padding-left: 1rem;
    padding-right: 1rem;
}

.aftersuport .container {
    max-width: 1000px;
    padding: var(--size_xxl);
    background-color: var(--sub_color);
    border-radius: 30px;
}

.aftersuport .flex {
    display: flex;
    justify-content: space-between;
}

.aftersuport .flex .wrap p {
    margin-bottom: 1rem;
    font-size: var(--size_md);
}

.aftersuport .suport_list {
    list-style-type: disc;
    margin-left: var(--contents_side_gutter);
}

.aftersuport .flex .wrap {
    width: 60%;
}

.aftersuport .aftersuport_img.family {
    width: 40%;
    max-width: 360px;
}

.aftersuport .blank {
    width: 35%;
}

.aftersuport .aftersuport_msg {
    width: 65%;
    margin-top: 1rem;
    padding: var(--contents_side_gutter);
    align-self: flex-end;
}

.aftersuport .wrap.msg {
    position: relative;
}

.aftersuport .aftersuport_img.dog {
    position: absolute;
    width: 35%;
    bottom: 0;
    left: 0;
}

@media screen and (max-width:949px) {
    .aftersuport .flex {
        flex-direction: column;
    }

    .aftersuport .flex .wrap {
        width: 100%;
        text-align: center;
    }

    .aftersuport .suport_list {
        text-align: left;
        margin-left: 10%;
        margin-bottom: 1rem;
    }

    .aftersuport .aftersuport_img.family {
        width: 100%;
        max-width: 200px;
        align-self: end;
    }

    .aftersuport .blank {
        display: none;
    }

    .aftersuport .aftersuport_msg {
        width: 100%;
        margin-top: 1rem;
        padding: 0;
    }

    .aftersuport .aftersuport_img.dog {
        width: 35%;
        bottom: 100%;
        left: 0;
    }

    /*=====max-width:949px=====*/
}

@media screen and (max-width:599px) {

    .aftersuport .container {
        padding: var(--contents_gutter) var(--contents_side_gutter);
    }

    .aftersuport .flex .wrap {
        text-align: left;
    }

    .aftersuport .suport_list {
        margin-left: 1rem;
    }


    .aftersuport .aftersuport_img.family {
        align-self: center;
    }

    .aftersuport .aftersuport_img.dog {
        display: none;
    }

    /*=====max-width:599px=====*/
}