

.p-hero {
    position: relative;
    padding: 7.5rem 0 4.75rem;
    min-height: 600px;
    background: url('../images/bg.png') no-repeat center center / cover;
    @media (768px > width) {
        padding: 3.75rem 0;
        min-height: auto;
        background: url('../images/bg-sp.png') no-repeat center center / cover;
    }
    & .p-hero__background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }
    & .p-hero__bgImage {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    & .p-hero__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 3rem;
        @media (1024px > width) {
            gap: 2rem;
        }
        @media (768px > width) {
            flex-direction: column;
            padding-top: 2.25rem;
        }
    }
    & .p-hero__left {
        width: 50%;
        @media (768px > width) {
            width: 100%;
            text-align: center;
        }
    }
    & .p-hero__tag {
        background-color: var(--color-main);
        border-radius: 30px;
        padding: 0.5rem 1.5rem;
        margin-bottom: 2rem;
        transform-origin: left center;
        white-space: nowrap;
        width: 402px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        @media (768px > width) {
            position: static;
            transform: none;
            margin-bottom: 1.5rem;
            display: inline-flex;
            width: auto;
            height: auto;
        }
    }
    & .p-hero__tagText {
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--color-wh);
        letter-spacing: 0.045em;
        margin: 0;
        @media (768px > width) {
            font-size: 0.875rem;
        }
    }
    & .p-hero__quote {
        position: relative;
        margin-bottom: 2rem;
        @media (768px > width) {
            margin-bottom: 1.5rem;
        }
    }
    & .p-hero__quoteText {
        font-size: clamp(2.625rem, 2.35rem + 1.17vw, 3.375rem);
        font-weight: 700;
        color: var(--color-main02);
        font-family: var(--font-serif);
        line-height: 1.26;
        letter-spacing: 0.1em;
        margin: 0.5rem 0;
        @media (1024px > width) {
            font-size: 2rem;
        }
        @media (768px > width) {
            text-align: center;
            font-size: 1.75rem;
            margin: 0.25rem 0;
        }
    }
    & .p-hero__description {
        margin-bottom: 2rem;
        @media (768px > width) {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        p {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-main02);
            line-height: 1.75;
            margin-bottom: 0.5rem;
            @media (768px > width) {
                font-size: 0.875rem;
            }
        }
    }
    & .p-hero__services {
        display: flex;
        /* justify-content: center; */
        gap: 0.5rem;
        margin-bottom: 2rem;
        @media (768px > width) {
            gap: 0.375rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
    }
    & .p-hero__serviceItem {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        @media (768px > width) {
            gap: 0.375rem;
        }
    }
    & .p-hero__serviceIcon {
        position: relative;
        width: 110px;
        height: 110px;
        @media (1024px > width) {
            width: 95px;
            height: 95px;
        }
        @media (768px > width) {
            width: 80px;
            height: 80px;
        }
        & .p-hero__serviceIconBg {
            width: 100%;
            height: 100%;
            display: block;
        }
        & .p-hero__serviceIconImg {
            position: absolute;
            top: 32%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 32px;
            height: 30px;
            @media (768px > width) {
                width: 24px;
                height: 22px;
            }
        }
        &.icon01 {
            & .p-hero__serviceIconImg {
                width: 32px;
                height: 29px;
            }
        }
        &.icon02 {
            & .p-hero__serviceIconImg {
                width: 29px;
                height: 26px;
            }
        }
        &.icon03 {
            & .p-hero__serviceIconImg {
                width: 27px;
                height: 25px;
            }
        }
        &.icon04 {
            & .p-hero__serviceIconImg {
                width: 35px;
                height: 26px;
            }
        }
    }


    & .p-hero__serviceLabel {
        white-space: nowrap;
        position: absolute;
        bottom: 14%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1rem;
        font-weight: 700;
        color: var(--color-wh);
        text-align: center;
        line-height: 1.125;
        letter-spacing: 0.1em;
        margin: 0;
        @media (1024px > width) {
            font-size: 0.875rem;
        }
        @media (768px > width) {
            font-size: 0.75rem;
        }
        &.company {
            bottom: 24%;
        }
    }
    & .p-hero__buttons {
        display: flex;
        gap: 0.625rem;
        @media (768px > width) {
            gap: 0.75rem;
        }
    }
    & .p-hero__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.625rem;
        padding: 1.125rem 1.25rem;
        border-radius: 3px;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        box-shadow: 0px 2px 6px 0px var(--color-button-shadow);
        transition: all 0.3s ease;
        @media (768px > width) {
            font-size: 0.875rem;
            padding: 0.75rem 1rem;
        }
    }
    & .p-hero__button--primary {
        background: var(--color-grad-orange);
        color: var(--color-wh);
        min-width: 265px;
        @media (768px > width) {
            min-width: 48%;
        }
    }
    & .p-hero__button--secondary {
        background-color: var(--color-wh);
        border: 1px solid var(--color-main);
        color: var(--color-main);
        @media (768px > width) {
            min-width: 48%;
        }
    }
    & .p-hero__buttonIcon {
        width: 23px;
        height: 16px;
        display: block;
        flex-shrink: 0;
        @media (768px > width) {
            width: 18px;
            height: 14px;
        }
    }
    & .p-hero__buttonText {
        white-space: nowrap;
    }
    & .p-hero__right {
        width: 50vw;
        margin-right: calc(50% - 50vw);
        @media (768px > width) {
            width: 100%;
            margin-right: auto;
        }
    }
    & .p-hero__image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 3px;
        @media (768px > width) {
            border-radius: 0;
        }
    }
}

.p-representative {
    position: relative;
    padding: 4.75rem 0 7rem;
    background: var(--color-grad-gray);
    @media (768px > width) {
        padding: 3.25rem 0;
    }
    & .p-representative__header {
        text-align: center;
        margin-bottom: 4rem;
        @media (768px > width) {
            margin-bottom: 2.5rem;
        }
    }
    & .p-representative__decoration {
        position: absolute;
        top: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
        @media (768px > width) {
            margin-bottom: 1rem;
        }
    }
    & .p-representative__decorationLine {
        width: 2px;
        height: 3rem;
        background-color: var(--color-decoration);
        margin-bottom: 0.5rem;
    }
    & .p-representative__decorationDots {
        width: 10px;
        height: 16px;
        display: block;
    }
    & .p-representative__enTitle {
        font-size: 0.875rem;
        font-weight: 400;
        color: var(--color-dark);
        margin-bottom: 0.5rem;
        @media (768px > width) {
            font-size: 0.75rem;
        }
    }
    & .p-representative__jaTitle {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--color-main);
        font-family: var(--font-serif);
        margin-bottom: 1rem;
        letter-spacing: 0.1em;
        @media (768px > width) {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }
    }
    & .p-representative__description {
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-main02);
        line-height: 1.75;
        @media (768px > width) {
            font-size: 0.875rem;
        }
    }
    & .p-representative__content {
        display: flex;
        justify-content: center;
        gap: 4rem;
        align-items: flex-start;
        @media (768px > width) {
            flex-direction: column;
            gap: 2rem;
        }
    }
    & .p-representative__text {
        width: calc(50% - 2rem);
        @media (768px > width) {
            width: 100%;
        }
    }
    & .p-representative__name {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-main02);
        margin-bottom: 2rem;
        letter-spacing: 0.05em;
        @media (768px > width) {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
    }
    & .p-representative__career {
        margin-bottom: 2rem;
        @media (768px > width) {
            margin-bottom: 1.5rem;
        }
        p {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-main02);
            line-height: 1.75;
            @media (768px > width) {
                font-size: 0.875rem;
            }
            &.separate {
                margin-bottom: 1.375rem;
                @media (768px > width) {
                    margin-bottom: 1.125rem;
                }
            }
        }
    }
    & .p-representative__registration {
        p {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-main02);
            line-height: 1.75;
            margin-bottom: 0.5rem;
            @media (768px > width) {
                font-size: 0.875rem;
            }
            span {
                font-weight: 700;
            }
        }
    }
    & .p-representative__image {
        position: relative;
        width: calc(50% - 2rem);
        max-width: 300px;
        @media (768px > width) {
            width: 100%;
            margin: 0 auto;
        }
        img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 5px;
        }
    }
    & .p-representative__signature {
        position: absolute;
        bottom: 1.5rem;
        left: 1.5rem;
        display: flex;
        flex-direction: column;
        transform: rotate(-15deg);
        @media (768px > width) {
            bottom: 1rem;
            left: 1rem;
        }
    }
    & .p-representative__signatureLine {
        font-size: 4rem;
        font-weight: 400;
        color: var(--color-signature-alt);
        font-family: 'La Belle Aurore', 'Brush Script MT', 'Lucida Handwriting', cursive;
        font-style: normal;
        line-height: 1;
        letter-spacing: 0.05em;
        @media (768px > width) {
            font-size: 3rem;
        }
    }
}

.p-strengths {
    position: relative;
    padding: 4.75rem 0 7rem;
    background: #FFFFFFD9;
    @media (768px > width) {
        padding: 3.25rem 0;
    }
    & .p-strengths__background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }
    & .p-strengths__bgImage {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    & .p-strengths__header {
        text-align: center;
        margin-bottom: 4rem;
        @media (768px > width) {
            margin-bottom: 2.5rem;
        }
    }
    & .p-strengths__decoration {
        position: absolute;
        top: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
        @media (768px > width) {
            margin-bottom: 1rem;
        }
    }
    & .p-strengths__decorationLine {
        width: 2px;
        height: 3rem;
        background-color: var(--color-decoration);
        border-radius: 0 0 30px 30px;
        margin-bottom: 0.5rem;
    }
    & .p-strengths__decorationDots {
        width: 10px;
        height: 16px;
        display: block;
    }
    & .p-strengths__enTitle {
        font-size: 0.875rem;
        font-weight: 400;
        color: var(--color-dark);
        margin-bottom: 0.5rem;
        @media (768px > width) {
            font-size: 0.75rem;
        }
    }
    & .p-strengths__jaTitle {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--color-main);
        font-family: var(--font-serif);
        margin-bottom: 0.5rem;
        letter-spacing: 0.1em;
        @media (768px > width) {
            font-size: 1.5rem;
            margin-bottom: 0.375rem;
        }
    }
    & .p-strengths__subtitle {
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-main02);
        @media (768px > width) {
            font-size: 0.875rem;
        }
    }
    & .p-strengths__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
        @media (1024px > width) {
            grid-template-columns: repeat(2, 1fr);
        }
        @media (768px > width) {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
    }
    & .p-strengths__card {
        background-color: var(--color-wh);
        border-radius: 3px;
        box-shadow: 0px 0px 10px 0px var(--color-shadow);
        padding: 2rem 1.5rem;
        @media (768px > width) {
            padding: 1.5rem 1rem;
        }
    }
    & .p-strengths__cardHeader {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--color-dark);
        @media (768px > width) {
            margin-bottom: 0.75rem;
        }
    }
    & .p-strengths__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
        border-radius: 3px;
        background: var(--color-bg-blue);
        @media (768px > width) {
            margin-bottom: 0.75rem;
        }
        svg {
            display: block;
        }
        &.icon01 {
            img {
                width: 35px;
                height: 33px;
            }
        }
        &.icon02 {
            img {
                width: 30px;
                height: 38px;
            }
        }
        &.icon03 {
            img {
                width: 35px;
                height: 35px;
            }
        }
        &.icon04 {
            img {
                width: 36px;
                height: 36px;
            }
        }
        &.icon05 {
            img {
                width: 42px;
                height: 37px;
            }
        }
        &.icon06 {
            img {
                width: 24px;
                height: 35px;
            }
        }
    }
    & .p-strengths__cardTitle {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--color-main);
        margin-bottom: 0.75rem;
        line-height: 1.5;
        @media (768px > width) {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
    }
    & .p-strengths__cardDescription {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--color-main02);
        line-height: 1.75;
        @media (768px > width) {
            font-size: 0.75rem;
        }
    }
    & .p-strengths__cta {
        /* display: none; */
        text-align: center;
    }
    & .p-strengths__button {
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        width: 360px;
        background: linear-gradient(to right, var(--color-main), var(--color-main-light));
        color: var(--color-wh);
        font-size: 1rem;
        font-weight: 700;
        padding: 1.375rem 1.5rem;
        border-radius: 3px;
        text-decoration: none;
        box-shadow: 0px 2px 6px 0px var(--color-button-shadow);
        transition: all 0.3s ease;
        position: relative;
        @media (768px > width) {
            font-size: 0.875rem;
            padding: 0.75rem 1.25rem;
        }
        > div {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
    }
    & .p-strengths__buttonText {
        letter-spacing: 0.1em;
        margin-right: 1rem;
        @media (768px > width) {
            margin-right: 0.75rem;
        }
    }
    & .p-strengths__buttonSeparator {
        width: 1px;
        height: 20px;
        margin: 0;
        background-color: var(--color-wh);
        border-radius: 30px;
        margin-right: 1rem;
        @media (768px > width) {
            height: 16px;
            margin-right: 0.75rem;
        }
    }
    & .p-strengths__buttonIcon {
        width: 20px;
        height: 20px;
        display: block;
        @media (768px > width) {
            width: 16px;
            height: 16px;
        }
    }
}

.p-service {
    position: relative;
    padding: 4.75rem 0 7rem;
    @media (768px > width) {
        padding: 3.25rem 0;
    }
    & .p-service__header {
        text-align: center;
        margin-bottom: 4rem;
        @media (768px > width) {
            margin-bottom: 2.5rem;
        }
    }
    & .p-service__decoration {
        position: absolute;
        top: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
        @media (768px > width) {
            margin-bottom: 1rem;
        }
    }
    & .p-service__decorationLine {
        width: 2px;
        height: 3rem;
        background-color: var(--color-decoration);
        border-radius: 0 0 30px 30px;
        margin-bottom: 0.5rem;
    }
    & .p-service__decorationDots {
        width: 10px;
        height: 16px;
        display: block;
    }
    & .p-service__enTitle {
        font-size: 0.875rem;
        font-weight: 400;
        color: var(--color-dark);
        margin-bottom: 0.5rem;
        @media (768px > width) {
            font-size: 0.75rem;
        }
    }
    & .p-service__jaTitle {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--color-main);
        font-family: var(--font-serif);
        margin-bottom: 0.5rem;
        letter-spacing: 0.1em;
        @media (768px > width) {
            font-size: 1.5rem;
            margin-bottom: 0.375rem;
        }
    }
    & .p-service__subtitle {
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-main02);
        @media (768px > width) {
            font-size: 0.875rem;
        }
    }
    & .p-service__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        @media (768px > width) {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }
    & .p-service__card {
        display: grid;
        grid-template-columns: subgrid;
        background-color: var(--color-wh);
        border-radius: 3px;
        box-shadow: 0px 0px 10px 0px var(--color-shadow);
        overflow: hidden;
        padding-bottom: 2rem;
    }
    & .p-service__image {
        position: relative;
        width: 100%;
        height: 280px;
        overflow: hidden;
        @media (768px > width) {
            height: 200px;
            padding: .9375rem;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
    }
    & .p-service__imageOverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    & .p-service__title {
        font-size: 1.375rem;
        font-weight: 700;
        color: var(--color-main);
        text-align: center;
        margin: 1.5rem 0 1rem;
        letter-spacing: 0.1em;
        @media (768px > width) {
            font-size: 1.125rem;
            margin: 1rem 0 0.75rem;
        }
    }
    & .p-service__description {
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-main02);
        line-height: 1.75;
        padding: 0 1.875rem;
        margin-bottom: 1.5rem;
        @media (768px > width) {
            font-size: 0.875rem;
            padding: 0 1rem;
            margin-bottom: 1rem;
        }
    }
    & .p-service__concern {
        padding: 0 1.875rem;
        @media (768px > width) {
            padding: 0 1rem;
        }
    }
    & .p-service__concernHeader {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        background-color: var(--color-bg-gray);
        margin-bottom: 1rem;
        position: relative;
        @media (768px > width) {
            margin-bottom: 0.75rem;
        }
    }
    & .p-service__concernIcon {
        width: 12px;
        height: 36px;
        display: block;
        flex-shrink: 0;
    }
    & .p-service__concernTitle {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--color-main);
        text-align: center;
        letter-spacing: 0.09em;
        margin: 0;
        @media (1024px > width) {
            font-size: 1rem;
        }
    }
    & .p-service__buttons {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        @media (768px > width) {
            flex-direction: column;
            gap: 0.5rem;
        }
    }
    & .p-service__button {
        flex: 1;
        min-width: 150px;
        height: 80px;
        background-color: var(--color-wh);
        border: 1px solid var(--color-main);
        border-radius: 3px;
        color: var(--color-main);
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        line-height: 1.25;
        padding: 0.75rem 0.5rem;
        cursor: pointer;
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        transition: all 0.3s ease;
        @media (768px > width) {
            min-width: calc(33.333% - 0.5rem);
            height: 70px;
            font-size: 0.875rem;
            padding: 0.5rem 0.25rem;
        }
        &::after {
            content: '';
            position: absolute;
            bottom: 0.25rem;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background-image: url('../images/icon-arrow-right.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            @media (768px > width) {
                bottom: unset;
                left: unset;
                top: 50%;
                transform: translateY(-50%);
                right: 0.5rem;
                width: 14px;
                height: 14px;
            }
        }
        &:hover {
            background-color: var(--color-main);
            color: var(--color-wh);
        }
    }
}
.p-flow {
    position: relative;
    padding: 4.75rem 0 6.875rem;
    @media (768px > width) {
        padding: 3.75rem 0 3.25rem;
    }
    & .p-flow__header {
        text-align: center;
        margin-bottom: 3.75rem;
        @media (768px > width) {
            margin-bottom: 2.5rem;
        }
    }
    & .p-flow__decoration {
        position: absolute;
        top: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
        @media (768px > width) {
            margin-bottom: 1rem;
        }
    }
    & .p-flow__decorationLine {
        width: 2px;
        height: 3rem;
        background-color: var(--color-decoration);
        border-radius: 30px;
        margin-bottom: 0.5rem;
    }
    & .p-flow__decorationDots {
        width: 10px;
        height: 16px;
        display: block;
    }
    & .p-flow__enTitle {
        font-size: 0.875rem;
        font-weight: 400;
        color: var(--color-dark);
        margin-bottom: 0.5rem;
        @media (768px > width) {
            font-size: 0.75rem;
        }
    }
    & .p-flow__jaTitle {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--color-main);
        font-family: var(--font-serif);
        margin-bottom: 0.5rem;
        letter-spacing: 0.1em;
        @media (768px > width) {
            font-size: 1.5rem;
            margin-bottom: 0.375rem;
        }
    }
    & .p-flow__subtitle {
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-main02);
        @media (768px > width) {
            font-size: 0.875rem;
        }
    }
    & .p-flow__steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5625rem 2.5rem;
        justify-content: center;
        max-width: 1100px;
        margin: 0 auto 3.75rem;
        @media (1024px > width) {
            gap: 1.5625rem 1.5rem;
        }
        @media (768px > width) {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
    }
    & .p-flow__step {
        flex: 1 0 0;
        max-width: 335px;
        min-width: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        @media (768px > width) {
            flex-direction: row;
            align-items: flex-start;
            gap: 1.75rem;
            max-width: 100%;
            min-width: 100%;
        }
    }
    & .p-flow__stepInner {
        @media (768px > width) {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .75rem;
        }
    }
    & .p-flow__stepNumber {
        font-size: 1.375rem;
        font-weight: 700;
        color: var(--color-orange);
        font-family: var(--font-serif);
        letter-spacing: 0.055em;
        margin-bottom: 1.5rem;
        @media (768px > width) {
            white-space: nowrap;
            font-size: 1.125rem;
            margin-bottom: 0;
        }
    }
    & .p-flow__stepIcon {
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
        @media (768px > width) {
            width: 80px;
            height: 80px;
            margin-bottom: 1rem;
            padding: .625rem;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
    }
    & .p-flow__stepTitle {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-main02);
        text-align: center;
        margin-bottom: 1.25rem;
        letter-spacing: 0.05em;
        @media (768px > width) {
            text-align: left;
            margin-bottom: .75rem;
            font-size: 1.125rem;
        }
    }
    & .p-flow__stepDescription {
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-main02);
        line-height: 1.75;
        @media (768px > width) {
            font-size: 0.875rem;
        }
    }
    & .p-flow__cta {
        text-align: center;
    }
    & .p-flow__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6875rem;
        background: var(--color-grad-orange);
        color: var(--color-wh);
        font-size: 1rem;
        font-weight: 700;
        padding: 1.4375rem 2.3125rem;
        border-radius: 3px;
        text-decoration: none;
        box-shadow: 0px 2px 6px 0px var(--color-button-shadow);
        transition: all 0.3s ease;
        min-width: 280px;
        max-width: 360px;
        width: 100%;
        @media (768px > width) {
            font-size: 0.875rem;
            padding: 1.21875rem 1.5rem;
            min-width: auto;
            max-width: 280px;
        }
        &:hover {
            opacity: 0.9;
        }
    }
    & .p-flow__buttonIcon {
        width: 23px;
        height: 16px;
        display: block;
        flex-shrink: 0;
        @media (768px > width) {
            width: 18px;
            height: 14px;
        }
    }
    & .p-flow__buttonText {
        letter-spacing: 0.1em;
    }
}

.p-topics {
    padding: 5.625rem 0 8.125rem;
    background-color: var(--color-wh);
    @media (768px > width) {
        padding: 3.25rem 0;
    }
    & .p-topics__content {
        display: flex;
        justify-content: center;
        gap: 6.25rem;
        max-width: 1140px;
        margin: 0 auto;
        @media (1024px > width) {
            gap: 4rem;
        }
        @media (768px > width) {
            flex-direction: column;
            gap: 3.75rem;
        }
    }
    & .p-topics__column,
    & .p-topics__news {
        flex: 1 0 0;
        max-width: 500px;
        min-width: 335px;
        @media (768px > width) {
            max-width: 100%;
            min-width: 100%;
        }
    }
    & .p-topics__header {
        margin-bottom: 3.75rem;
        @media (768px > width) {
            margin-bottom: 2.5rem;
        }
    }
    & .p-topics__enTitle {
        font-size: 0.875rem;
        font-weight: 400;
        color: var(--color-dark);
        margin-bottom: 0.5rem;
        @media (768px > width) {
            font-size: 0.75rem;
        }
    }
    & .p-topics__jaTitle {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--color-main);
        font-family: var(--font-serif);
        letter-spacing: 0.1em;
        margin: 0;
        @media (768px > width) {
            font-size: 1.5rem;
        }
    }
    & .p-topics__list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.4375rem;
    }
    & .p-topics__item {
        position: relative;
        border-top: 1px solid var(--color-dark);
        &:not(:last-child) {
            &::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: var(--color-dark);
                border-radius: 30px;
            }
        }
        &:last-of-type {
            border-bottom: 1px solid var(--color-dark);
        }
    }
    & .p-topics__link {
        display: block;
        padding-block: 1.5rem;
        text-decoration: none;
        color: inherit;
    }
    & .p-topics__itemHeader {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.4375rem;
    }
    & .p-topics__date {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--color-main02);
        line-height: 1.75;
        @media (768px > width) {
            font-size: 0.75rem;
        }
    }
    & .p-topics__arrow {
        width: 19px;
        height: 8.271px;
        display: block;
        flex-shrink: 0;
        @media (768px > width) {
            width: 16px;
            height: 7px;
        }
    }
    & .p-topics__title {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--color-main02);
        margin: 0 0 0.3125rem 0;
        line-height: 1.556;
        @media (768px > width) {
            font-size: 1rem;
        }
    }
    & .p-topics__description {
        overflow: hidden;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        min-height: 3.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-main02);
        line-height: 1.75;
        margin: 0;
        @media (768px > width) {
            font-size: 0.875rem;
        }
    }
    & .p-topics__empty {
        padding: 1.5rem 0;
        color: var(--color-dark);
        font-size: 0.875rem;
        @media (768px > width) {
            font-size: 0.75rem;
            padding: 1rem 0;
        }
    }
}