@import url(../css/root.css);
.p-business-detail__flex
{
    display: flex;

    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    grid-gap: 24px 0;
}
.p-business-detail__flex-image
{
    overflow: hidden;

    width: 45%;

    aspect-ratio: 2/1;
}
.p-business-detail__catch
{
    width: 55%;
    padding-right: 5%;
    padding-left: 2em;
}
.p-business-detail__catch-line
{
    font-size: var(--fs14_16);
    line-height: min(2.87vw, 2.4em);

    display: block;
}
.p-business-detail__catch-line b
{
    font-size: var(--fs16_20);
    font-weight: bold;
}
.p-business-detail__catch-line.mb
{
  margin-bottom: 1.25em;
}

.p-business-detail__list
{
    display: flex;

    margin-top: var(--m100);

    flex-wrap: wrap;
    grid-gap: var(--m20_30) 2%;
}
.p-business-detail__image
{
    overflow: hidden;

    width: 32%;

    aspect-ratio: 16/9;
}
.p-business-detail__image img
{
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}
.p-business-detail .c-button
{
    max-width: 500px;
    margin: var(--m60) auto 0;
}

@media all and (min-width: 601px)
{
    .p-business-detail__flex
    {
        flex-direction: row-reverse;
    }
}
@media all and (min-width: 1334px)
{
    .p-business-detail__catch
    {
        max-width: 660px;
        padding-right: 0;
    }
    .p-business-detail__flex-image
    {
      width: calc(100% - 660px - (100vw - 1200px) / 2);
    }
}
@media all and (max-width: 768px)
{
    .p-business-detail__catch
    {
        width: 90%;
        margin: 0 auto;
        padding: 0;

        writing-mode: unset;
    }
    .p-business-detail__catch-line
    {
        line-height: 1.7;
    }

    .p-business-detail__flex-image
    {
        width: 100%;
    }
    .p-business-detail__image
    {
        width: 49%;
    }
}
