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

.p-voice
{
    margin-bottom: var(--m100);
}
.p-voice__section
{
    display: none;
}
.p-voice__section.is-active
{
    display: block;
}
.p-voice__main
{
    position: relative;
    z-index: 1;
}
.p-voice__main-inner
{
    position: absolute;
    top: 50%;
    left: 0;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    transform: translateY(-50%);

    justify-content: space-between;
    align-items: flex-start;
}
.p-voice__main-image
{
    width: 66.66%;
    margin-left: auto;

    aspect-ratio: 800/540;
}
.p-voice__main-image img
{
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}
.p-voice__logo
{
    width: 10%;
    max-width: 100px;
}
.p-voice__catch
{
    font-size: var(--fs20_40);
    font-weight: bold;

    color: var(--blue06);
}
.p-voice__profile
{
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}
.p-voice__position
{
    font-size: var(--fs16_30);
    font-weight: bold;
}
.p-voice__name
{
    font-size: var(--fs20_40);
    font-weight: bold;
}
.p-voice__joining-time
{
    font-size: var(--fs14_18);
    font-weight: 500;

    padding-bottom: var(--m40);
}
.p-voice__box
{
    display: flex;

    margin-top: var(--m65);

    align-items: flex-start;
}
.p-voice__box.noimage .p-voice__text-area
{
    width: 100%;
}
.p-voice__box:not(.reverse) .p-voice__text-area
{
    margin-right: -16.66%;
}
.p-voice__box.reverse
{
    flex-direction: row-reverse;
}
.p-voice__box.reverse .p-voice__text-area
{
    margin-left: -16.66%;
}
.p-voice__text-area
{
    position: relative;
    z-index: 2;

    width: 66.66%;
    padding: var(--fs32_80) var(--m16_50);

    background-color: rgba(255, 255, 255, .8);
}
.p-voice__title
{
    font-size: var(--fs18_30);
    font-weight: bold;

    color: var(--blue06);
}
.p-voice__title::after
{
    display: block;

    width: var(--fs24_40);
    height: 3px;
    margin-top: 14px;

    content: '';

    background-color: var(--blue06);
}
.p-voice__text
{
    font-size: var(--fs14_18);
    font-weight: 500;

    margin-top: var(--m35);
}
.p-voice__text b
{
    font-size: var(--fs16_18);
    font-weight: bold;

    display: block;
}
.p-voice__image
{
    position: relative;
    z-index: 1;

    overflow: hidden;

    width: 50%;
    margin-top: var(--m40);

    aspect-ratio: 3/2;
}
.p-voice__image img
{
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}

/* ----------------------------------------------
　PAD以下設定
------------------------------------------------*/
@media all and (max-width: 767px)
{
    .p-voice__tab
    {
        width: 48%;
    }
    .p-voice__main
    {
        position: relative;
        z-index: 1;
    }
    .p-voice__main-inner
    {
        position: static;

        transform: unset;

        grid-gap: 10px;
    }
    .p-voice__main-image
    {
        width: 100%;
    }
    .p-voice__profile
    {
        flex-direction: row;

        width: 100%;

        flex-wrap: wrap;
        justify-content: space-between;
        align-items: baseline;
    }
    .p-voice__position
    {
        width: 100%;
    }
    .p-voice__box
    {
        flex-wrap: wrap;
    }
    .p-voice__box:not(.reverse) .p-voice__text-area
    {
        margin-right: 0;
    }
    .p-voice__box.reverse
    {
        flex-direction: row;
    }
    .p-voice__box.reverse .p-voice__text-area
    {
        margin-left: 0;
    }
    .p-voice__text-area
    {
        width: 100%;
        padding: 16px 0;

        background-color: rgba(255, 255, 255, .8);
    }
    .p-voice__image
    {
        width: 100%;
        margin-top: 0;
    }
}
/* ----------------------------------------------
　SP調整
------------------------------------------------*/
