@charset 'UTF-8';
/* ----------------------------------------------
　PC設定
------------------------------------------------*/
.p-business
{
    margin-bottom: var(--m200);
}
.p-business__box
{
    display: flex;

    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    grid-gap: var(--m45) 0;
}
.p-business__box:not(:last-of-type)
{
    margin-bottom: var(--m150);
}
.p-business__text-area
{
    width: 50%;
}
.p-business__title
{
    font-size: var(--fs18_28);
    font-weight: bold;
}
.p-business__text
{
    font-size: var(--fs14_18);
    font-weight: 500;

    margin-top: var(--m40);
}
.p-business__list
{
    margin: var(--fs16_18) 0;
}
.p-business__list li
{
    font-size: var(--fs16_18);
    font-weight: bold;
}
.p-business__image
{
    overflow: hidden;

    width: 45%;

    border-radius: var(--m10);

    aspect-ratio: 54/38;
}
.p-business__image img
{
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}
.p-business__image.business05 img
{
    -o-object-position: top 0 right 20%;
       object-position: top 0 right 20%;
}

/* ----------------------------------------------
　PAD以下設定
------------------------------------------------*/
@media all and (min-width: 769px)
{
    .p-business__box:nth-of-type(odd)
    {
        flex-direction: row-reverse;
    }
}
@media all and (max-width: 768px)
{
    .p-business__text-area
    {
        width: 100%;
    }
    .p-business__image
    {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}
/* ----------------------------------------------
　SP調整
------------------------------------------------*/
