@charset "UTF-8";
/* CSS Document */
/*-------------------------------*/

/* SUPPORT */

/*------------------------------*/
/* h2の線 */
.support-mainImg__wrapper .headline.-lower-heading .headline__inner .headline-border {
    width: calc(100% - calc(6 * var(--txt-reg)) - 0.2em);
    background-color: var(--c-gray-light);
}
/*-------------------------------*/
/* REMOTE */
/*------------------------------*/
#support-remote .txt{
	text-align: center;
}
#support-remote .txt span{
    display: block;
    margin-top: 1em;
}
/* ダウンロードボタン */
#support-remote .button{
    width: 280px;
    margin-left: auto;
    margin-right: auto;
}
#support-remote a.button svg{
    width: 24px;
    height: auto;
    fill: var(--c-white);

    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    transition: transform .2s var(--easeInSine);
}
#support-remote a.button-hover svg{
    right: 14px;

    transform: translateY(-50%) scale(0.85);
}
/*------------------------------*/
/* flow */
/*------------------------------*/
#support-flow.content__wrapper{
    width: 100%;
    background-color: var(--c-gray-pale);
    padding: var(--mp-tb-2xl) 0;
}
/* リスト */
.support-flow__list{
    width: calc(1280rem/16);
    max-width: 100%;

    padding: 0 var(--mp-lr-reg);
    margin-top: calc(64rem/16);
	margin-left: auto;
	margin-right: auto;
}
/* アイテム */
.support-flow__list li{
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: min(7vw,calc(64rem/16));
}
.support-flow__list li + li{
    margin-top: calc(104rem/16);

    position: relative;
}
.support-flow__list li + li::before{
    position: absolute;
    top: calc(-42px + calc(-52rem/16));
    left: 50%;
    transform: translateX(-50%);

    content: "";
    background-color: var(--c-gray-light);
    width: 56px;
    height: 56px;
    clip-path: polygon(100% 50%, 50% 100%, 0% 50%);
}
/* 画像 */
.support-flow-photo__inner{
    width: 42%;
    height: 100%;
    position: relative;
}
.support-flow-photo__inner::before{
    content: "";
    display: block;
    padding-top: 56.25%;
}
.support-flow-photo__inner img{
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    position: absolute;
    top: 0;
    left: 0;
}
/* テキスト */
.support-flow-txt__inner{
    width: calc(58% - min(7vw,calc(64rem/16)));

    min-width: calc(240rem/16);
}
.support-flow-txt__inner h3{
    line-height: 1.2;
}
.support-flow-txt__inner .txt{
    margin-top: calc(40rem/16);
}
.support-flow-txt__inner .txt span{
    font-weight: 700;
}
.support-flow-txt__inner .tel-contact__inner{
    justify-content: flex-start;
}



/*-------------------------------*/

/* Tablet 959px */

/*------------------------------*/
@media(max-width: 959px){
    /*------------------------------*/
    /* flow */
    /*------------------------------*/
    #support-flow.content__wrapper{
        padding: calc(80rem/16) 0;
    }
    /* リスト */
    .support-flow__list{
        margin-top: calc(40rem/16);
        
        width: 100%;
        max-width: 100%;
    }
    /* アイテム */
    .support-flow__list li{
        width: 100%;

        gap: min(4vw,calc(40rem/16));
    }
    .support-flow__list li + li{
        margin-top: calc(80rem/16);
    }
    .support-flow__list li + li::before{
        top: calc(-40px + calc(-30rem/16));

        width: 40px;
        height: 40px;
    }
    /* 画像 */
    .support-flow-photo__inner{
        width: 40%;
    }
    .support-flow-photo__inner::before{
        padding-top: 66.666%;
    }
    /* テキスト */
    .support-flow-txt__inner{
        width: calc(60% - min(4vw,calc(40rem/16)));

        min-width: calc(240rem/16);
    }
    .support-flow-txt__inner .txt{
        margin-top: calc(24rem/16);
    }
}/*Tablet END*/



/*-------------------------------*/

/* Smartphone 559px */

/*------------------------------*/
@media(max-width:559px){
    /*-------------------------------*/
    /* REMOTE */
    /*------------------------------*/
    #support-remote .txt{
        text-align: justify;
    }
    /*------------------------------*/
    /* flow */
    /*------------------------------*/
    #support-flow.content__wrapper{
        padding: calc(64rem/16) 0;
    }
    /* アイテム */
    .support-flow__list li{
        width: 100%;

        gap: 0;
    }
    .support-flow__list li + li{
        margin-top: calc(80rem/16);
    }
    .support-flow__list li + li::before{
        top: calc(-40px + calc(-30rem/16));

        width: 40px;
        height: 40px;
    }
    /* 画像 */
    .support-flow-photo__inner{
        width: 100%;
    }
    .support-flow-photo__inner::before{
        padding-top: 56.25%;
    }
    /* テキスト */
    .support-flow-txt__inner{
        width: 100%;
        min-width: 100%;

        display: flex;
		flex-direction: column;
		align-items: center;
    }
    .support-flow-txt__inner .txt{
        margin-top: calc(24rem/16);
    }
}/*Smartphone END*/