@charset 'UTF-8';
/* ----------------------------------------------
　PC設定
------------------------------------------------*/
.c-title
{
    margin-bottom: var(--m100);
}

.p-flow
{
    margin-bottom: var(--m100);
}
.p-flow__top-text
{
    font-size: var(--fs14_18);
    font-weight: 500;

    margin-bottom: var(--m95);
}
.p-flow__box
{
    display: flex;

    flex-flow: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.p-flow__box:not(:first-of-type)
{
    margin-top: 24px;
}
.p-flow__left
{
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;
    grid-gap: var(--m16_25);
}
.p-flow__num
{
    font-size: var(--fs20_26);
    font-weight: bold;
    line-height: 1;

    position: relative;
    z-index: 1;

    display: flex;

    width: 100%;

    color: var(--main-white);

    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
}
.p-flow__num::before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: inline-block;

    width: 100%;
    height: 100%;

    content: '';

    border-radius: 100%;
    background-color: var(--main-col);
}
.p-flow__arrow
{
    position: relative;

    display: flex;
    flex-direction: column;

    width: 10px;

    background: url(/images/flow/arrow.png) bottom center/cover no-repeat;

    align-items: center;
    justify-content: flex-start;
    aspect-ratio: 10/122;
}
.p-flow__title
{
    font-size: var(--fs18_26);
    font-weight: bold;

    padding: var(--m25) var(--m16_50);

    border-radius: var(--m14);
    background-color: var(--blue03);
}
.p-flow__text
{
    font-size: var(--fs14_18);
    font-weight: 500;

    margin-top: var(--m40);
}
.p-flow__image
{
    overflow: hidden;

    aspect-ratio: 330/221;
}
.p-flow__image img
{
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}

/* ----------------------------------------------
　PAD以下設定
------------------------------------------------*/
@media all and (min-width: 769px)
{
    .p-flow__left
    {
        width: 9.58%;
    }
    .p-flow__text-area
    {
        width: 57.25%;
    }
    .p-flow__image
    {
        width: 27.5%;
    }
}
@media all and (max-width: 768px)
{
    .p-flow__box
    {
        display: grid;

        width: 100%;

        grid-template-columns: max-content 1fr;
        gap: var(--m25);
    }
    .p-flow__box:not(:first-of-type)
    {
        margin-top: 32px;
    }
    .p-flow__left
    {
        height: 100%;

        grid-row: 1/3;
    }
    .p-flow__num
    {
        padding: 0 .4em;
    }
    .p-flow__arrow
    {
        position: relative;

        display: flex;
        flex-direction: column;

        height: 100%;

        background: unset;

        aspect-ratio: unset;
        align-items: center;
        justify-content: flex-start;
    }
    .p-flow__arrow::before,
    .p-flow__arrow::after
    {
        position: absolute;
        left: 50%;

        display: inline-block;

        content: '';
        transform: translateX(-50%);
    }
    .p-flow__arrow::before
    {
        top: 0;

        width: 3px;
        height: calc(100% - 3px);

        background: var(--main-col);
    }
    .p-flow__arrow::after
    {
        bottom: 0;

        width: 100%;

        background: url(/images/flow/arrow.svg) center top/100% no-repeat;

        aspect-ratio: 10.17/9.4;
    }
    .p-flow__text-area
    {
        margin-top: 2.5%;

        grid-column: 2;
    }
    .p-flow__image
    {
        max-width: 500px;
        margin: 0 auto;

        grid-column: 2;
    }
    .p-flow__image img
    {
        display: block;

        width: 100%;
        height: auto;
    }
}
/* ----------------------------------------------
　SP調整
------------------------------------------------*/
