@charset "UTF-8";


@media screen and (min-width: 1024px) {
    .l-header-logo {
        left: 4rem;
        top: 2.125rem;
        font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
        font-weight: 600;
        font-size: 1.25rem;
        line-height: 1.6;
        letter-spacing: -0.04em;
    }

    .l-header-logo img {
        width: 20.3125rem;
    }
}

.l-header-nav {
    display: none;
    opacity: 0;
}

@media screen and (min-width: 1024px) {
    .l-header-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: absolute;
        right: 16.25rem;
        height: var(--header-height);
    }
}

.l-header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

.l-header-nav__list>li {
    position: relative;
}

.l-header-nav__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.4666666667;
    cursor: pointer;
}

.l-header-nav__link.is-open,
.l-header-nav__link:hover {
    color: #C80D2F;
}

.l-header-nav__link.is-open svg,
.l-header-nav__link:hover svg {
    stroke: #C80D2F;
}

.l-header-nav__link i {
    font-size: 0;
    margin-left: 0.5rem;
}

.l-header-nav__link i svg {
    width: 0.625rem;
    height: auto;
    stroke: #191919;
}

.l-header-nav__listLv2 {
    display: none;
}

@media screen and (min-width: 1024px) {
    .l-header-nav__listLv2 {
        margin-top: 1.5rem;
        display: block;
        position: absolute;
        left: 0;
        z-index: -1;
        pointer-events: none;
    }

    .l-header-nav__listLv2 li {
        width: 13.75rem;
        border-bottom: 1px solid #F0F4F8;
        -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        -webkit-transition: -webkit-clip-path 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        transition: -webkit-clip-path 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        transition: clip-path 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        transition: clip-path 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-clip-path 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .l-header-nav__listLv2.is-open li {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        -webkit-transition-duration: 0.6s;
        transition-duration: 0.6s;
    }

    .l-header-nav__listLv2.is-open li:nth-child(2) {
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

    .l-header-nav__listLv2.is-open li:nth-child(3) {
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }

    .l-header-nav__listLv2.is-open li:nth-child(4) {
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    .l-header-nav__listLv2 a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0.75rem 0.75rem;
        background: #E0E7EE;
        font-size: 0.9375rem;
        line-height: 1.125;
    }

    .l-header-nav__listLv2 a i {
        margin-right: 0.75rem;
        font-size: 0;
    }

    .l-header-nav__listLv2 a svg {
        width: 0.875rem;
        height: auto;
        fill: #191919;
    }

    .l-header-nav__listLv2 a:hover {
        color: #fff;
        background-color: #C80D2F;
    }

    .l-header-nav__listLv2 a:hover svg {
        fill: #fff;
    }

    .l-header-nav__listLv2.is-open {
        pointer-events: auto;
        z-index: 1;
    }
}

.l-header-contact {
    display: none;
    opacity: 0;
}

@media screen and (min-width: 1024px) {
    .l-header-contact {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }

    .l-header-contact a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: #C80D2F;
        width: 14rem;
        height: 10.5rem;
        font-weight: 500;
        font-size: 0.9375rem;
        line-height: 1.4666666667;
        color: #FFFFFF;
        -webkit-transition: height 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        transition: height 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .l-header-contact a:before {
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        background-color: #333;
        width: 0;
        -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .is-scrolled .l-header-contact a {
        will-change: height;
        height: 7.5rem;
        -webkit-transition-duration: 0.6s;
        transition-duration: 0.6s;
    }

    .l-header-contact span {
        position: relative;
    }

    .l-header-contact a:hover:before {
        width: 100%;
        left: 0;
        -webkit-transition-duration: 0.6s;
        transition-duration: 0.6s;
    }
}


/*----------------------------------------------------
	main
----------------------------------------------------*/


/*----------------------------------------------------
	フッター
----------------------------------------------------*/

.l-footer {
    position: relative;
    border-top: 1px solid #D9D9D9;
    background-color: #fff;
}

.l-footer-pagetop {
    position: relative;
    height: 5.375rem;
}

.l-footer-pagetop a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #191919;
    width: 4.375rem;
    height: 2.375rem;
    position: absolute;
    right: 0;
    top: -1px;
}

.l-footer-pagetop a:before {
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: -1px;
    right: 0;
    left: auto;
    width: 0;
    background-color: #C80D2F;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.l-footer-pagetop a:hover {
    background-color: #C80D2F;
    border-color: #C80D2F;
}

.l-footer-pagetop a:hover svg {
    fill: #fff;
}

.l-footer-pagetop svg {
    fill: #191919;
    width: 0.6875rem;
    height: auto;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (min-width: 1024px) {
    .l-footer-pagetop {
        height: 4rem;
        margin-bottom: -1px;
    }

    .l-footer-pagetop a {
        width: 16rem;
        height: 4rem;
    }

    .l-footer-pagetop svg {
        width: 1.375rem;
    }
}

.l-footer-content {
    padding: 6.25rem 0 4.25rem;
    color: #fff;
    background: #333333;
}

.l-footer-content a {
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .l-footer-content {
        padding: 10.25rem 12.0625rem 5rem 12.0625rem;
    }
}

@media screen and (min-width: 1024px) {
    .l-footer-wrap {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto 3.75rem auto;
        grid-template-areas: "company nav" "report bnr";
        -ms-grid-columns: 28.125rem 0 1fr;
        grid-template-columns: 28.125rem 1fr;
        gap: 3.75rem 0;
    }
}

.l-footer-nav {
    grid-area: nav;
}

.l-footer-nav a:hover {
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .l-footer-nav {
        margin-top: 3.875rem;
    }
}

.l-footer-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.8125rem 0;
}

.l-footer-nav__list>li {
    width: 50%;
}

@media screen and (min-width: 1024px) {
    .l-footer-nav__list {
        gap: 1.8125rem 1.875rem;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .l-footer-nav__list>li {
        width: auto;
    }
}

.l-footer-nav__listLv2 li {
    margin-top: 0.625rem;
}

.l-footer-nav__listLv2 a {
    font-size: 0.9375rem;
    line-height: 1.4666666667;
}

@media screen and (min-width: 1024px) {
    .l-footer-nav__listLv2 a {
        font-size: 0.75rem;
        line-height: 1.125;
    }
}

.l-footer-nav__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.4666666667;
    color: #fff;
}

.l-footer-nav__link i {
    font-size: 0;
    margin-left: 0.75rem;
}

.l-footer-nav__link i svg {
    width: 0.625rem;
    height: auto;
    stroke: #fff;
}

@media screen and (min-width: 1024px) {
    .l-footer-nav__link {
        font-weight: normal;
    }
}

.l-footer-company {
    grid-area: company;
    display: none;
}

.l-footer-company ._name {
    font-weight: 600;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.5rem;
    line-height: 1.6;
}

.l-footer-company ._en {
    margin-top: 1.625rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.l-footer-company ._info {
    /* margin-top: 1.9375rem; */
    font-size: 0.9375rem;
    line-height: 1.8;
}

@media screen and (min-width: 1024px) {
    .l-footer-company {
        display: block;
    }
}

.l-footer-report {
    grid-area: report;
    margin-top: 3.0625rem;
    border-bottom: 1px solid #D9D9D9;
}

.l-footer-report a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 1.4375rem;
    position: relative;
}

.l-footer-report a i {
    margin-right: 0.5rem;
    width: 0.875rem;
    font-size: 0;
    fill: #fff;
}

.l-footer-report a span {
    font-size: 1rem;
}

.l-footer-report a:after {
    content: "";
    display: block;
    height: 1px;
    background-color: #C80D2F;
    position: absolute;
    right: 0;
    left: auto;
    width: 0;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    bottom: -1px;
}

.l-footer-report a:hover {
    color: #C80D2F;
}

.l-footer-report a:hover i {
    fill: #C80D2F;
}

.l-footer-report a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

@media screen and (min-width: 1024px) {
    .l-footer-report {
        margin-top: auto;
    }

    .l-footer-report a {
        padding: 0 0 2.1875rem;
    }
}

.l-footer-bnr {
    margin-top: 2.5rem;
    grid-area: bnr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
}

@media screen and (min-width: 1024px) {
    .l-footer-bnr {
        margin-top: 0;
        margin-left: auto;
        width: 27.875rem;
        gap: 1.625rem;
    }
}

.l-footer-bottom__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.25rem 0;
}

@media screen and (min-width: 1024px) {
    .l-footer-bottom__wrap {
        padding: 4.75rem 0 0 0;
        display: flex;
        justify-content: space-between;
    }
}

.l-footer-logo {
    width: 4.375rem;
}

@media screen and (min-width: 1024px) {
    .l-footer-logo {
        width: 5.375rem;
    }
}

.l-footer-link {
    margin-left: 0;
}

.l-footer-link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
}

.l-footer-link a {
    font-size: 0.75rem;
}

@media screen and (min-width: 1024px) {
    .l-footer-link ul {
        gap: 3.125rem;
    }
}

.l-footer-bottom {
    background: #333;
    color: #fff;
}

.l-footer-bottom ul li a {
    color: #fff;
}


/*----------------------------------------------------
	l-aside
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.l-aside-name {
    display: none;
}

@media screen and (min-width: 1024px) {
    .l-aside-name {
        display: block;
    }
}

.l-aside-name__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 4rem;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
}

.l-aside-name__txt p {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    white-space: nowrap;
    opacity: 0;
    margin-top: -1.25rem;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.is-scrolled .l-aside-name__txt p {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    margin-top: 0rem;
}

.l-aside-name__border {
    width: 1px;
    height: 0;
    position: fixed;
    left: 4rem;
    top: 0;
    z-index: -1;
    background-color: #D9D9D9;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	...
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-benefits
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-blog
----------------------------------------------------*/

.p-blog {
    padding: 0 0 var(--section-marginL);
}

.p-blog-tag {
    position: relative;
}

.p-blog-tag__list {
    padding: 0.9375rem 0 1.125rem;
}

.p-blog-tag__list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.75rem;
    line-height: 1.125rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0.75rem 0.9375rem;
}

.p-blog-tag__list a.is-current,
.p-blog-tag__list a:hover {
    color: #C80D2F;
}

.p-blog-tag__line {
    width: 0;
    height: 1px;
    background-color: #D9D9D9;
    position: absolute;
    left: 0;
    bottom: 0;
}

.p-blog-list {
    margin-top: 1.75rem;
}

@media screen and (min-width: 1024px) {
    .p-blog-list {
        margin-top: 3.125rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-blog-list__wrap {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        margin-right: -8rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-blog-list__category {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        width: 18rem;
        padding-right: 1.875rem;
        padding-bottom: 3.75rem;
    }

    .p-blog-list__category .cm-page-nav {
        position: sticky;
        top: 14rem;
    }
}

.p-blog-list__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.625rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem 0.625rem;
}

@media screen and (min-width: 1024px) {
    .p-blog-list__grid {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -ms-grid-columns: 1fr 2.0625rem 1fr 2.0625rem 1fr;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.0625rem 2.0625rem;
    }
}

.p-blog-foot {
    margin-top: var(--section-marginM);
}

@media screen and (min-width: 1024px) {
    .p-blog-foot__wrap {
        padding-right: 7.5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-blog-entry {
    padding-top: 11rem;
}

@media screen and (min-width: 1024px) {
    .p-blog-entry {
        padding-top: 15.625rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-blog-entry__wrap {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        margin-right: -8rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-blog-entry__category {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        width: 15.5rem;
        padding-right: 1.875rem;
        padding-bottom: 3.75rem;
    }

    .p-blog-entry__category .cm-page-nav {
        position: sticky;
        top: 14rem;
    }
}

.p-blog-entry__entry {
    padding: 0 0 6.25rem;
}

@media screen and (min-width: 1024px) {
    .p-blog-entry__entry {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding: 0 0 6.25rem;
    }
}

.p-blog-entry__foot {
    position: relative;
    padding: 6.25rem 0 0;
}

.p-blog-entry__foot:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-blog-entry__foot {
        padding: 6.25rem 0 0;
    }

    .p-blog-entry__foot:before {
        width: calc(100% - 4rem);
        left: 4rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-consulting
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-consulting-lead {
    padding-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-consulting-lead {
        padding-top: 5rem;
    }
}

.cm-business-lead__body {
    padding-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .cm-business-lead__body {
        padding: 3.625rem 0 0 26rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-consulting-value {
    margin-top: 4.375rem;
}

@media screen and (min-width: 1024px) {
    .p-consulting-value {
        margin-top: 9.375rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-consulting-feature {
    padding-top: 3.75rem;
}

@media screen and (min-width: 1024px) {
    .p-consulting-feature {
        padding-top: 7.5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-consulting-foot {
    margin-top: var(--section-marginL);
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-contact
----------------------------------------------------*/

.p-contact {
    padding: 0 0 var(--section-marginL);
}

.p-contact-body {
    margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-contact-body {
        margin-top: 5.625rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-contact-form {
        padding-right: 24rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-design
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-design-lead {
    padding-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-design-lead {
        padding-top: 5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-design-feature {
    margin-top: 3.125rem;
    position: relative;
    padding: 3.125rem 0 0;
}

.p-design-feature:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-design-feature {
        margin-top: 6.25rem;
        padding: 6.25rem 0 0;
    }

    .p-design-feature:before {
        width: calc(100% - 4rem);
        left: 4rem;
    }
}

.p-design-feature__head ._txt1 {
    margin-top: 1.5625rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1rem;
    line-height: 165%;
    letter-spacing: -0.01em;
}

.p-design-feature__head ._txt2 {
    margin-top: 1.5625rem;
}

@media screen and (min-width: 1024px) {
    .p-design-feature__head ._txt1 {
        margin-top: 2.125rem;
        font-size: 1.5rem;
    }

    .p-design-feature__head ._txt2 {
        margin-top: 1.5625rem;
        max-width: 54rem;
    }
}

.p-design-feature__body {
    margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
    .p-design-feature__body {
        margin-top: 4rem;
    }
}

.p-design-feature__item {
    display: -ms-grid;
    display: grid;
    gap: 0.625rem;
}

.p-design-feature__item li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 8.1875rem;
    padding: 0.625rem 2.5rem;
    background: #F8F9FB;
}

.p-design-feature__item li ._en {
    font-family: minion-pro, serif;
    font-size: 1.625rem;
    line-height: 0.9;
    text-transform: capitalize;
    color: #292727;
}

.p-design-feature__item li ._ja {
    margin-top: 0.3125rem;
    font-size: 0.75rem;
    line-height: 1.5;
}

.p-design-feature__item li i {
    position: absolute;
    right: 2.5rem;
    width: 3.75rem;
    font-size: 0;
    top: calc(50% - 1.875rem);
}

@media screen and (min-width: 1024px) {
    .p-design-feature__item {
        -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.75rem 1.5rem;
    }

    .p-design-feature__item li {
        padding: 0.625rem 1.625rem;
    }

    .p-design-feature__item li ._en {
        font-size: 2rem;
    }

    .p-design-feature__item li ._ja {
        margin-top: 0.375rem;
    }

    .p-design-feature__item li i {
        right: 1.25rem;
        top: calc(50% - 2.25rem);
        width: 5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-design-solution {
    margin-top: 2.5rem;
    position: relative;
    padding: 3.125rem 0 0;
}

.p-design-solution:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-design-solution {
        margin-top: 5.3125rem;
        padding: 6.25rem 0 0;
    }

    .p-design-solution:before {
        width: calc(100% - 4rem);
        left: 4rem;
    }
}

.p-design-solution__head {
    position: relative;
}

.p-design-solution__headTitle1 {
    position: absolute;
    left: 0;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 120%;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.p-design-solution__headTitle1 svg {
    width: 1.75rem;
    height: auto;
}

@media screen and (min-width: 1024px) {
    .p-design-solution__headTitle1 {
        top: 1.25rem;
        font-size: 2.625rem;
        line-height: 120%;
    }

    .p-design-solution__headTitle1 svg {
        width: 3.375rem;
        height: auto;
    }
}

.p-design-solution__headTitle2 {
    padding: 2.5rem 0 0 3.125rem;
    font-family: minion-pro, serif;
    font-weight: 500;
    font-size: 4.375rem;
    line-height: 1;
}

.p-design-solution__headTitle2 span+span {
    margin-left: 0.25em;
}

@media screen and (min-width: 1024px) {
    .p-design-solution__headTitle2 {
        padding: 1.25rem 0 0 6rem;
        font-size: 12.5rem;
    }
}

.p-design-solution__wrap {
    margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-design-solution__wrap {
        margin-top: 5.25rem;
        padding-left: 6rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1024px) {
    .p-design-solution__pic {
        width: 30rem;
        margin-right: 4rem;
    }
}

.p-design-solution__body {
    margin-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .p-design-solution__body {
        margin-top: -1.125rem;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-design-solution__txt1 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-design-solution__txt1 {
        font-size: 2rem;
    }
}

.p-design-solution__txt2 {
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    line-height: 200%;
}

@media screen and (min-width: 1024px) {
    .p-design-solution__txt2 {
        margin-top: 1.5rem;
        font-size: 0.9375rem;
    }
}

.p-design-solution__txt3 {
    margin-top: 3.125rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.25rem;
    line-height: 165%;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-design-solution__txt3 {
        margin-top: 3.125rem;
        font-size: 1.5rem;
    }
}

.p-design-solution__list {
    margin-top: 1.0625rem;
    font-weight: 700;
    font-size: 0.8125rem;
    line-height: 165%;
}

.p-design-solution__list li+li {
    margin-top: 1rem;
}

.p-design-solution__list li {
    position: relative;
    padding-left: 1.5625rem;
}

.p-design-solution__list li:before {
    content: "";
    width: 1rem;
    height: 1px;
    background: #CA133F;
    position: absolute;
    left: 0;
    top: 0.82em;
}

@media screen and (min-width: 1024px) {
    .p-design-solution__list {
        width: 21.25rem;
        font-size: 1rem;
    }

    .p-design-solution__list li+li {
        margin-top: 2rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-design-process {
    margin-top: 6.25rem;
    padding: 2.5rem 0 2.5rem;
    position: relative;
}

.p-design-process:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #F8F9FB;
    z-index: -1;
}

@media screen and (min-width: 1024px) {
    .p-design-process {
        margin-top: 12.5rem;
        padding: 5rem 0 6.25rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-design-process__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-left: 6rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-design-process__head {
        width: 20rem;
    }
}

.p-design-process__body {
    margin-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .p-design-process__body {
        margin-top: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-design-process-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-design-process-item+.p-design-process-item {
    margin-top: 1.875rem;
}

.p-design-process-item__title {
    width: 7.5rem;
    margin-right: 1.25rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 7.375rem;
    background: #FFFFFF;
    border: 0.125rem solid #E0E7EE;
    text-align: center;
}

.p-design-process-item__title ._en {
    font-family: minion-pro, serif;
    font-size: 0.625rem;
    line-height: 1.1666666667;
    text-transform: uppercase;
    color: #CA133F;
}

.p-design-process-item__title ._ja {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1rem;
    line-height: 200%;
    letter-spacing: -0.01em;
}

.p-design-process-item:not(:last-child) .p-design-process-item__title:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.75rem 1.875rem 0 1.875rem;
    border-color: #E0E7EE transparent transparent transparent;
    position: absolute;
    left: calc(50% - 1.875rem);
    bottom: -1.375rem;
}

@media screen and (min-width: 1024px) {
    .p-design-process-item__title {
        width: 16rem;
        margin-right: 2.0625rem;
    }

    .p-design-process-item__title ._en {
        font-size: 0.75rem;
    }

    .p-design-process-item__title ._ja {
        font-size: 1.5rem;
    }

    .p-design-process-item:not(:last-child) .p-design-process-item__title:before {
        border-width: 0.75rem 1.875rem 0 1.875rem;
        left: calc(50% - 1.875rem);
        bottom: -1.375rem;
    }
}

.p-design-process-item__body {
    font-weight: 700;
    font-size: 0.8125rem;
    line-height: 165%;
}

.p-design-process-item__body li {
    list-style: disc;
    margin-left: 1.5em;
}

@media screen and (min-width: 1024px) {
    .p-design-process-item__body {
        font-size: 0.9375rem;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-design-awards {
    padding-top: 5rem;
}

@media screen and (min-width: 1024px) {
    .p-design-awards {
        padding-top: 9.75rem;
    }
}

.p-design-awards__nav {
    margin-top: 1.5625rem;
    margin-bottom: -1px;
    border-bottom: 1px solid #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-design-awards__nav {
        margin-top: 3.125rem;
    }
}

.p-design-awards-content {
    padding-top: 1.875rem;
}

.p-design-awards-content:not(:first-child) {
    display: none;
}

@media screen and (min-width: 1024px) {
    .p-design-awards-content {
        padding-top: 3.3125rem;
    }
}

.p-design-awards-item {
    font-size: 0.875rem;
    line-height: 165%;
}

.p-design-awards-item+.p-design-awards-item {
    margin-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .p-design-awards-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 0.9375rem;
    }

    .p-design-awards-item+.p-design-awards-item {
        margin-top: 4.0625rem;
    }
}

.p-design-awards-item__year {
    font-weight: 700;
}

@media screen and (min-width: 1024px) {
    .p-design-awards-item__year {
        width: 26rem;
        padding-left: 6rem;
    }
}

.p-design-awards-item__data {
    margin: 0.5rem 0 0 1.25rem;
}

.p-design-awards-item__data li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-design-awards-item__data li+li {
    margin-top: 0.6875rem;
}

.p-design-awards-item__data ._award {
    width: 6.25rem;
}

.p-design-awards-item__data ._client {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (min-width: 1024px) {
    .p-design-awards-item__data {
        margin: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .p-design-awards-item__data ._award {
        width: 15.375rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-design-foot {
    margin-top: var(--section-marginL);
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-esg
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-esg-lead {
    padding-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-lead {
        padding-top: 5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-esg-feature {
    margin-top: 3.125rem;
    position: relative;
    padding: 3.125rem 0 0;
}

.p-esg-feature:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-esg-feature {
        margin-top: 6.25rem;
        padding: 6.25rem 0 0;
    }

    .p-esg-feature:before {
        width: calc(100% - 4rem);
        left: 4rem;
    }
}

.p-esg-service {
    margin-top: 4.375rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-service {
        margin-top: 9.375rem;
    }
}

.p-esg-research {
    margin-top: 3.125rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-research {
        margin-top: 6.25rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-esg-service-lead__desc {
    margin-top: 0.9375rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-lead__desc {
        margin-top: 1.875rem;
    }
}

.p-esg-service-lead__pic {
    margin-top: 1.5625rem;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-lead__pic {
        margin-top: 3.125rem;
    }

    .p-esg-service-lead__pic img {
        width: 58.125rem;
    }
}

.p-esg-service-list {
    margin-top: 3.125rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-list {
        margin-top: 6.125rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.p-esg-service-list__head {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 165%;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-list__head {
        width: 32rem;
        font-size: 1.5rem;
    }
}

.p-esg-service-list__item {
    margin-top: 0.9375rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.125rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.125rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-list__item {
        margin-top: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        gap: 2.5rem 1.75rem;
    }
}

.p-esg-service-list-item dt {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 165%;
    letter-spacing: -0.01em;
}

.p-esg-service-list-item ul {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    line-height: 165%;
}

.p-esg-service-list-item li {
    position: relative;
    padding-left: 0.75rem;
}

.p-esg-service-list-item li:before {
    content: "";
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 100%;
    background: #C80D2F;
    position: absolute;
    left: 0;
    top: 0.375rem;
}

.p-esg-service-list-item li+li {
    margin-top: 0.5rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-list-item dt {
        font-size: 1.5rem;
    }

    .p-esg-service-list-item ul {
        font-size: 0.9375rem;
    }

    .p-esg-service-list-item li:before {
        top: 0.5625rem;
    }
}

.p-esg-service-starter {
    margin-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-starter {
        margin-top: 3.125rem;
    }
}

.p-esg-service-starter__wrap {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-starter__wrap {
        margin-top: 2.875rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.p-esg-service-starter__pic {
    position: relative;
    text-align: center;
    left: 1.25rem;
    top: -2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-starter__pic {
        width: 36rem;
        left: -1.25rem;
        top: -5.5rem;
        text-align: left;
    }

    .p-esg-service-starter__pic img {
        width: 38.75rem;
        max-width: none;
    }
}

.p-esg-service-starter__body {
    margin-top: -2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-starter__body {
        margin-top: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-esg-service-starter__desc {
    margin-top: 1.125rem;
    font-size: 0.8125rem;
    line-height: 165%;
}

@media screen and (min-width: 1024px) {
    .p-esg-service-starter__desc {
        font-size: 1.125rem;
    }
}

.p-esg-service-starter__more {
    margin-top: 1.125rem;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-expertise
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-expertise-lead {
    position: relative;
    overflow: hidden;
    padding: 3.125rem 0;
}

.p-expertise-lead:before {
    content: "";
    display: block;
    width: calc(50% + 28.75rem);
    height: 100%;
    background: #F8F9FB;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

@media screen and (min-width: 1024px) {
    .p-expertise-lead {
        padding: 7.1875rem 0;
    }
}

.p-expertise-lead__title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-expertise-lead__title {
        font-size: 3.25rem;
        line-height: 1.5;
    }
}

.p-expertise-lead__txt {
    margin-top: 1.25rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 0.875rem;
    line-height: 1.65;
}

@media screen and (min-width: 1024px) {
    .p-expertise-lead__txt {
        width: 57rem;
        margin-top: 1.875rem;
        font-size: 1.5rem;
        line-height: 2.4;
    }
}

.p-expertise-lead__pic {
    position: relative;
    z-index: 10;
    margin-top: 3.125rem;
}

@media screen and (min-width: 1024px) {
    .p-expertise-lead__pic {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 6.25rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-expertise-logic {
    margin-top: 3.125rem;
}

@media screen and (min-width: 1024px) {
    .p-expertise-logic {
        margin-top: 11.3125rem;
    }
}

.p-expertise-logic__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-expertise-logic__nav a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 0.625rem 0 0.625rem 0;
}

.p-expertise-logic__nav a span {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    letter-spacing: -0.01em;
}

.p-expertise-logic__nav a i {
    margin-top: 0.625rem;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media screen and (max-width: 1023px) {
    .p-expertise-logic__nav ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .p-expertise-logic__nav li {
        width: 50%;
    }

    .p-expertise-logic__nav li:nth-child(1),
    .p-expertise-logic__nav li:nth-child(2) {
        border-bottom: 1px solid #C1BFC0;
    }

    .p-expertise-logic__nav li:nth-child(2),
    .p-expertise-logic__nav li:nth-child(4) {
        border-left: 1px solid #C1BFC0;
    }
}

@media screen and (min-width: 1024px) {
    .p-expertise-logic__nav li {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border-left: 1px solid #C1BFC0;
    }

    .p-expertise-logic__nav li:last-child {
        border-right: 1px solid #C1BFC0;
    }

    .p-expertise-logic__nav a {
        padding: 0 0 0.625rem 0;
    }

    .p-expertise-logic__nav a span {
        font-size: 1.75rem;
    }

    .p-expertise-logic__nav a i {
        margin-top: 1.875rem;
    }
}

.p-expertise-logic__item {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-expertise-logic__item {
        margin-top: 2.75rem;
        padding-left: 20rem;
    }
}

.p-expertise-logic-item {
    padding: 2.5rem 0;
}

@media screen and (min-width: 1024px) {
    .p-expertise-logic-item {
        padding: 5rem 0;
    }
}

.p-expertise-logic-item__title {
    margin-top: -0.375rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.5rem;
    line-height: 1.3;
}

@media screen and (max-width: 640px) {
    .p-expertise-logic-item__title {
        word-break: initial !important;
    }
}

@media screen and (min-width: 1024px) {
    .p-expertise-logic-item__title {
        margin-top: 0;
        padding-top: 1rem;
        font-size: 2rem;
        line-height: 165%;
    }
}

.p-expertise-logic-item__txt {
    margin-top: 1.25rem;
}

.p-expertise-logic-item__txt>*+* {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-expertise-logic-item__txt {
        margin-top: 1.25rem;
    }

    .p-expertise-logic-item__txt>*+* {
        margin-top: 1.25rem;
    }
}

.p-expertise-logic-item__pic {
    margin-top: 1.125rem;
}

.p-expertise-logic-item__pic img {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .p-expertise-logic-item__pic {
        margin-top: 2.5rem;
    }
}

.p-expertise-logic-item__step {
    margin: 1.875rem 0 0.625rem -5rem;
}

.p-expertise-logic-item__step dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-expertise-logic-item__step dl+dl {
    margin-top: 0.75rem;
}

.p-expertise-logic-item__step dt {
    margin-right: 0.5625rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3.1875rem;
    height: 1.9375rem;
    border: 1px solid #000000;
    border-radius: 0.25rem;
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    font-size: 0.75rem;
    line-height: 1.25;
}

.p-expertise-logic-item__step dd {
    margin-top: 0.125rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 165%;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-expertise-logic-item__step {
        margin: 2.8125rem -1.25rem 0 0.5rem;
    }

    .p-expertise-logic-item__step dt {
        margin-right: 1rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-expertise-foot {
    margin-top: var(--section-marginL);
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	.p-message
----------------------------------------------------*/

.p-message-body__wrap {
    padding: 0;
    display: -ms-grid;
    display: grid;
    grid-template-areas: "head head" "message message" "pic pic" "text text" "sign sign";
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 1024px) {
    .p-message-body__wrap {
        padding: 0.5rem 0 0;
        grid-template-areas: "head head" "pic message" "pic text" "sign text";
        -ms-grid-columns: 26rem 6rem 1fr;
        grid-template-columns: 26rem 1fr;
        -ms-grid-rows: auto 0 auto 0 auto 0 1fr;
        grid-template-rows: auto auto auto 1fr;
        gap: 0 6rem;
    }
}

.p-message-body__head {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: head;
}

.p-top-blog__wrap>.p-message-body__head {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
}

.p-message-body__message {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    margin-top: 2.1875rem;
    grid-area: message;
}

.p-message-body__message .c-heading-serif {
    line-height: 1.6;
}

@media screen and (min-width: 1024px) {
    .p-message-body__message {
        margin: 8.6875rem 0 0 0;
    }
}

.p-message-body__pic {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: pic;
    margin: 2.5rem -1.25rem 0;
}

@media screen and (min-width: 1024px) {
    .p-message-body__pic {
        margin: 9.25rem 0 0;
    }
}

.p-message-body__text {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    margin-top: 1.875rem;
    grid-area: text;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #3D3D3D;
}

@media screen and (min-width: 1024px) {
    .p-message-body__text {
        margin-top: 3.125rem;
        font-size: 1.125rem;
        line-height: 2.2;
    }

    .p-message-body__text ._txt2 {
        margin: 2.5rem 6.25rem 0 0;
    }
}

.p-message-body__sign {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: sign;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 1.75rem 0 0 auto;
}

.p-message-body__sign ._job {
    margin: 0 0 0.3125rem 0;
    font-size: 0.6875rem;
    line-height: 200%;
    color: #3D3D3D;
}

.p-message-body__sign ._name {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-message-body__sign {
        margin: 1.8125rem 0 0;
    }

    .p-message-body__sign ._job {
        margin: 0 0 0.3125rem;
        font-size: 0.9375rem;
    }

    .p-message-body__sign ._name {
        font-size: 2rem;
    }
}

.p-message-foot {
    margin-top: var(--section-marginL);
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-philosophy
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-philosophy-lead__wrap {
    margin-top: 3.75rem;
}

@media screen and (min-width: 1024px) {
    .p-philosophy-lead__wrap {
        margin-top: 6.875rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1024px) {
    .p-philosophy-lead__title {
        width: 26rem;
        margin-right: 6rem;
    }
}

.p-philosophy-lead__body {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-philosophy-lead__body {
        margin-top: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-philosophy-lead__type {
    margin: -3.75rem 0 -0.625rem;
    position: relative;
    overflow: hidden;
    z-index: -1;
    font-family: minion-pro, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 5rem;
    line-height: 0.95;
    color: #F0F4F8;
    white-space: nowrap;
}

.p-philosophy-lead__type p span {
    display: inline-block;
    width: 68.75rem;
}

.p-philosophy-lead__type p:nth-child(1) {
    margin-left: -13.75rem;
}

.p-philosophy-lead__type p:nth-child(2) {
    margin-left: 3.75rem;
}

@media screen and (min-width: 1024px) {
    .p-philosophy-lead__type {
        margin: -3.75rem 0 -0.625rem;
        font-size: 8rem;
    }

    .p-philosophy-lead__type p span {
        width: 102.5rem;
    }

    .p-philosophy-lead__type p:nth-child(1) {
        margin-left: -9.375rem;
    }

    .p-philosophy-lead__type p:nth-child(2) {
        margin-left: 18.125rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-philosophy-figure {
    padding: 3.75rem 0;
    position: relative;
}

.p-philosophy-figure:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #F8F9FB;
    z-index: -1;
}

@media screen and (max-width: 1023px) {
    .p-philosophy-figure {
        margin-bottom: -2.5rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-philosophy-figure {
        height: 42.375rem;
        padding: 8.375rem 0 0 3.75rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-philosophy-figure__pic {
        width: 58.125rem;
        margin-inline: auto;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-philosophy-purpose {
    overflow: hidden;
}

.p-philosophy-purpose__wrap {
    position: relative;
    padding: 0rem 0;
}

.p-philosophy-purpose__wrap:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #F8F9FB;
    z-index: -1;
}

@media screen and (min-width: 1024px) {
    .p-philosophy-purpose__wrap {
        padding: 0rem 0 10rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-philosophy-purpose__item {
        padding-left: 20rem;
    }
}

.p-philosophy-purpose-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.p-philosophy-purpose-item+.p-philosophy-purpose-item {
    margin-top: 3.75rem;
}

.p-philosophy-purpose-item dt {
    font-family: minion-pro, serif;
    font-size: 1rem;
    line-height: 1.1875;
    color: #C80D2F;
}

.p-philosophy-purpose-item dd .c-heading-serif {
    margin-bottom: 0.625rem;
}

@media screen and (max-width: 1023px) {
    .p-philosophy-purpose-item dd {
        margin-top: 0.625rem;
    }

    .p-philosophy-purpose-item dd .c-heading-serif {
        -webkit-font-feature-settings: "palt";
        font-feature-settings: "palt";
    }

    .p-philosophy-purpose-item dd .c-paragraph {
        padding-left: 5.625rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-philosophy-purpose-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .p-philosophy-purpose-item+.p-philosophy-purpose-item {
        margin-top: 7.5rem;
    }

    .p-philosophy-purpose-item dt {
        width: 12rem;
        font-size: 1.25rem;
    }

    .p-philosophy-purpose-item dt .c-heading-serif {
        margin-bottom: 1.25rem;
    }

    .p-philosophy-purpose-item dd {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .p-philosophy-purpose-item dd .c-heading-serif {
        margin-top: -0.5rem;
    }
}

.p-philosophy-purpose-item__value {
    display: -ms-grid;
    display: grid;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

.p-philosophy-purpose-item__value li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 8.1875rem;
    padding: 0.625rem 2.5rem;
}

.p-philosophy-purpose-item__value li ._en {
    font-family: minion-pro, serif;
    font-size: 1.625rem;
    line-height: 0.9;
    text-transform: capitalize;
    color: #292727;
}

.p-philosophy-purpose-item__value li ._ja {
    margin-top: 0.3125rem;
    font-size: 0.75rem;
    line-height: 1.5;
}

.p-philosophy-purpose-item__value li i {
    position: absolute;
    right: 2.5rem;
    width: 3.75rem;
    font-size: 0;
    top: calc(50% - 1.875rem);
}

@media screen and (min-width: 1024px) {
    .p-philosophy-purpose-item__value {
        -ms-grid-columns: 1fr 1.5rem 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem 1.5rem;
        margin-top: 0;
    }

    .p-philosophy-purpose-item__value li {
        padding: 0.625rem 1.625rem;
    }

    .p-philosophy-purpose-item__value li ._en {
        font-size: 2rem;
    }

    .p-philosophy-purpose-item__value li ._ja {
        margin-top: 0.375rem;
    }

    .p-philosophy-purpose-item__value li i {
        right: 1.25rem;
        top: calc(50% - 2.25rem);
        width: 5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-privacy
----------------------------------------------------*/

.p-privacy {
    padding: 0 0 var(--section-marginL);
}

.p-privacy-body {
    margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-privacy-body {
        margin-top: 6.25rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-privacy-body__wrap {
        padding-right: 24.5rem;
    }
}

.p-privacy-lead__title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-privacy-lead__title {
        font-size: 2rem;
        line-height: 1.5;
    }
}

.p-privacy-lead__body {
    margin-top: 1.25rem;
}

.p-privacy-lead__body p {
    font-size: 0.875rem;
    line-height: 180%;
}

@media screen and (min-width: 1024px) {
    .p-privacy-lead__body {
        margin-top: 2.5rem;
    }

    .p-privacy-lead__body p {
        font-size: 1.125rem;
    }
}

.p-privacy-item {
    margin-top: 2.4375rem;
}

@media screen and (min-width: 1024px) {
    .p-privacy-item {
        margin-top: 4.5rem;
    }
}

.p-privacy-item__title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 160%;
}

@media screen and (min-width: 1024px) {
    .p-privacy-item__title {
        font-weight: 400;
        font-size: 1.25rem;
    }
}

.p-privacy-item__body {
    margin-top: 1.25rem;
    padding-left: 2.0625rem;
}

.p-privacy-item__body>*+* {
    margin-top: 0.625rem;
}

.p-privacy-item__body p {
    font-size: 0.875rem;
    line-height: 180%;
}

.p-privacy-item__body li {
    color: #C80D2F;
    font-size: 0.875rem;
    line-height: 180%;
}

.p-privacy-item__body li span {
    color: #191919;
}

.p-privacy-item__body ul li {
    list-style: disc;
}

.p-privacy-item__body ol li {
    list-style: decimal;
}

@media screen and (min-width: 1024px) {
    .p-privacy-item__body {
        margin-top: 1.625rem;
    }

    .p-privacy-item__body p {
        font-size: 1.125rem;
    }

    .p-privacy-item__body li {
        font-size: 1.125rem;
        line-height: 180%;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-profile
----------------------------------------------------*/

.p-profile-body__wrap {
    margin-top: 2.1875rem;
}

@media screen and (min-width: 1024px) {
    .p-profile-body__wrap {
        margin-top: 6.875rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1024px) {
    .p-profile-body__aside {
        width: 26rem;
        margin-right: 6rem;
    }

    .p-profile-body__aside ul {
        position: sticky;
        top: calc(var(--header-height) + 6.25rem);
    }
}

.p-profile-body__content {
    margin-top: 2.9375rem;
}

@media screen and (min-width: 1024px) {
    .p-profile-body__content {
        margin-top: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-profile-data dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-profile-data dl+dl {
    margin-top: 2.5rem;
}

.p-profile-data dt {
    width: 5.625rem;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 165%;
}

.p-profile-data dd {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 0.875rem;
    line-height: 165%;
}

.p-profile-data ._link-map {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.p-profile-data ._link-map span {
    color: #C80D2F;
    text-decoration: underline;
}

.p-profile-data ._link-map:hover span {
    text-decoration: none;
}

.p-profile-data ._link-map i {
    margin-left: 0.3125rem;
    font-size: 0;
    width: 0.8125rem;
}

@media screen and (min-width: 1024px) {
    .p-profile-data dl+dl {
        margin-top: 2rem;
    }

    .p-profile-data dt {
        width: 11.875rem;
        font-size: 0.9375rem;
    }

    .p-profile-data dd {
        font-size: 0.9375rem;
    }

    .p-profile-data ._link-map {
        margin-left: 1em;
    }
}

.p-profile-member {
    padding-top: 5.8125rem;
    margin-top: 4.125rem;
    border-top: 1px solid #D9D9D9;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.625rem 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.25rem 0.625rem;
}

@media screen and (min-width: 1024px) {
    .p-profile-member {
        border-top: none;
        padding-top: 0;
        margin-top: 8rem;
        grid-gap: 1.875rem 0.75rem;
    }
}

.p-profile-member-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.p-profile-member-item figcaption {
    padding: 1.1875rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.p-profile-member-item figcaption ._job {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #A6A6A8;
}

.p-profile-member-item figcaption ._name {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.3125rem;
    line-height: 200%;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-profile-member-item figcaption {
        padding: 1.4375rem 1.25rem 1.5rem;
    }

    .p-profile-member-item figcaption ._name {
        font-size: 1.5rem;
    }
}

.p-profile-foot {
    margin-top: var(--section-marginL);
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-recruit
----------------------------------------------------*/

.p-recruit {
    padding: 0 0 var(--section-marginL);
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-recruit-lead__wrap {
    padding: 3.125rem 0;
}

@media screen and (min-width: 1024px) {
    .p-recruit-lead__wrap {
        padding: 8.125rem 0 6.25rem;
    }
}

.p-recruit-lead__head {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-recruit-lead__head {
        font-size: 2rem;
        line-height: 1.5;
    }
}

.p-recruit-lead__body {
    padding-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-lead__body {
        padding: 3.625rem 0 0 26rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-recruit-job {
    position: relative;
    padding: 3.75rem 0 0;
}

.p-recruit-job:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job {
        padding: 9.8125rem 0 0;
    }

    .p-recruit-job:before {
        width: calc(100% - 4rem);
        left: 4rem;
    }
}

.p-recruit-job__lead {
    margin-top: 1.25rem;
    max-width: 50rem;
}

.p-recruit-job-list__nav {
    margin-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list__nav {
        margin-top: 3.125rem;
    }
}

.p-recruit-job-list__body {
    padding: 3.75rem 1.25rem;
    background: #F0F4F8;
}

@media screen and (max-width: 640px) {
    .p-recruit-job-list__body {
        margin-inline: -1.25rem;
    }
}

@media screen and (min-width: 641px) and (max-width: 1023px) {
    .p-recruit-job-list__body {
        margin-inline: -2.5rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list__body {
        padding: 5.25rem 4.25rem 9.375rem;
    }
}

.p-recruit-job-list__content:not(:first-child) {
    display: none;
}

.p-recruit-job-list-item {
    background-color: #fff;
}

.p-recruit-job-list-item+.p-recruit-job-list-item {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list-item+.p-recruit-job-list-item {
        margin-top: 0.625rem;
    }
}

.p-recruit-job-list-item__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 1.25rem 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list-item__head {
        padding: 2.625rem 2.625rem;
    }
}

.p-recruit-job-list-item__title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list-item__title {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        font-size: 1.5rem;
    }
}

.p-recruit-job-list-item__ico {
    margin-left: auto;
}

.p-recruit-job-list-item__body {
    display: none;
    margin: -0.3125rem 0 0;
    padding: 0 1.25rem 1.25rem;
    font-size: 0.8125rem;
    line-height: 150%;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list-item__body {
        margin: -1.25rem 0 0;
        padding: 0 2.625rem 2.625rem;
        font-size: 1.125rem;
        line-height: 165%;
    }
}

.p-recruit-job-list__more {
    margin-top: 1.875rem;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list__more {
        margin-top: 3.125rem;
    }
}

.p-recruit-job-list__system {
    margin-top: 5rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list__system {
        margin-top: 9.375rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list__systemHead {
        width: 20rem;
    }
}

.p-recruit-job-list__systemBody {
    margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list__systemBody {
        margin-top: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-recruit-job-list-system-item+.p-recruit-job-list-system-item {
    margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list-system-item+.p-recruit-job-list-system-item {
        margin-top: 5.625rem;
    }
}

.p-recruit-job-list-system-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.625rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.p-recruit-job-list-system-item__title i {
    width: 2rem;
    padding-top: 0.375rem;
    font-style: normal;
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    font-size: 0.6875rem;
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list-system-item__title {
        font-size: 2rem;
        line-height: 1.5;
    }

    .p-recruit-job-list-system-item__title i {
        font-size: 0.9375rem;
    }
}

.p-recruit-job-list-system-item__body {
    padding: 0.625rem 0 0 2rem;
    font-size: 0.8125rem;
    line-height: 150%;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-list-system-item__body {
        padding: 1.25rem 0 0 2rem;
        font-size: 0.9375rem;
        line-height: 165%;
    }
}

.p-recruit-job-welfare {
    margin-top: 5rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-welfare {
        margin-top: 9.375rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-welfare__head {
        width: 26rem;
    }
}

.p-recruit-job-welfare__body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 2.5rem;
}

.p-recruit-job-welfare__body ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-welfare__body {
        margin-top: 0;
    }
}

.p-recruit-job-welfare__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #C1BFC0;
    border-bottom: 1px solid #C1BFC0;
    margin-bottom: -1px;
    width: 50%;
    height: 4.6875rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 0.875rem;
    line-height: 150%;
}

.p-recruit-job-welfare__list:nth-child(odd) {
    border-right: 1px solid #C1BFC0;
}

.p-recruit-job-welfare__list span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-recruit-job-welfare__list span:before {
    margin-right: 0.5rem;
    margin-top: 0.375rem;
    content: "";
    display: block;
    width: 0.4375rem;
    height: 0.4375rem;
    border-radius: 100%;
    background-color: #C80D2F;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 1023px) {
    .p-recruit-job-welfare__list:nth-child(odd) {
        padding-right: 0.625rem;
    }

    .p-recruit-job-welfare__list:nth-child(even) {
        padding-left: 0.875rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-recruit-job-welfare__list {
        height: 6.25rem;
        padding: 0 2.1875rem;
        font-size: 0.9375rem;
    }

    .p-recruit-job-welfare__list span {
        margin-top: 0.375rem;
        margin-right: 0.625rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-recruit-interview {
    position: relative;
    overflow: hidden;
    padding: var(--section-marginL) 0;
}

.p-recruit-interview__lead {
    margin-top: 1.25rem;
    max-width: 50rem;
}

.p-recruit-interview__type {
    position: absolute;
    z-index: -1;
}

.p-recruit-interview__type p._type {
    margin-top: 2.5rem;
    font-family: minion-pro, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(240, 244, 248, 0.5);
}

.p-recruit-interview__type .c-heading-line {
    position: absolute;
    left: 0;
    top: 4.375rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-interview__type p._type {
        margin-top: 1.875rem;
        font-size: 12.5rem;
    }

    .p-recruit-interview__type .c-heading-line {
        top: 6.875rem;
    }
}

.p-recruit-interview__item {
    margin-top: 6.25rem;
    position: relative;
}

.p-recruit-interview__item:before {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    top: 0;
    width: auto;
    height: 100%;
    background: #F8F9FB;
    z-index: -1;
}

@media screen and (min-width: 1024px) {
    .p-recruit-interview__item {
        margin-top: 10.625rem;
    }
}

.p-recruit-interview-item {
    position: relative;
    border-bottom: 1px solid #D9D9D9;
}

.p-recruit-interview-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 9.375rem;
    padding: 0 0.625rem;
}

.p-recruit-interview-item__link:before {
    content: "";
    display: block;
    position: absolute;
    right: calc(50% - 50vw);
    top: 0;
    width: 0;
    height: 100%;
    background: #C80D2F;
    -webkit-transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.p-recruit-interview-item__link:hover {
    color: #fff;
}

.p-recruit-interview-item__link:hover:before {
    left: calc(50% - 50vw);
    width: 100vw;
}

@media screen and (min-width: 1024px) {
    .p-recruit-interview-item__link {
        height: 23.375rem;
        padding: 0 7.5rem 0 0;
    }
}

.p-recruit-interview-item__figure {
    position: absolute;
    pointer-events: none;
    width: 11.4375rem;
    right: 5rem;
    opacity: 0;
    -webkit-transform: rotate(-8.33deg) translateY(1.25rem);
    transform: rotate(-8.33deg) translateY(1.25rem);
}

a:hover .p-recruit-interview-item__figure {
    -webkit-transition: 0.8s 0s opacity cubic-bezier(0.23, 1, 0.32, 1), 0.8s 0s transform;
    transition: 0.8s 0s opacity cubic-bezier(0.23, 1, 0.32, 1), 0.8s 0s transform;
    opacity: 1;
    -webkit-transform: rotate(-8.33deg) translateY(0);
    transform: rotate(-8.33deg) translateY(0);
}

@media screen and (min-width: 1024px) {
    .p-recruit-interview-item__figure {
        right: 14.1875rem;
        width: 23.75rem;
    }

    a:hover .p-recruit-interview-item__figure {
        -webkit-transform: rotate(-9.3deg) translateY(0);
        transform: rotate(-9.3deg) translateY(0);
    }
}

.p-recruit-interview-item__wrap {
    position: relative;
}

.p-recruit-interview-item__title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.3125rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-recruit-interview-item__title {
        font-size: 2rem;
    }
}

.p-recruit-interview-item__name {
    margin-top: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-recruit-interview-item__name ._job {
    margin-right: 0.3125rem;
    font-size: 0.625rem;
    line-height: 1;
}

.p-recruit-interview-item__name ._name {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-recruit-interview-item__name {
        margin-top: 1.875rem;
    }

    .p-recruit-interview-item__name ._job {
        margin-right: 0.625rem;
        font-size: 0.75rem;
    }

    .p-recruit-interview-item__name ._name {
        font-size: 1.5rem;
    }
}

.p-recruit-interview-item__ico {
    position: absolute;
    right: 0;
    bottom: 3.125rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-interview-item__ico {
        bottom: calc(50% - 3rem);
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-recruit-gallery {
    overflow: hidden;
}

.p-recruit-gallery__slide {
    margin-top: 1.875rem;
    width: 20.1875rem;
}

.p-recruit-gallery__slide .swiper {
    overflow: initial;
    z-index: 0;
}

.p-recruit-gallery__slide .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.p-recruit-gallery__slide figure {
    padding: 0 0.125rem;
}

@media screen and (min-width: 1024px) {
    .p-recruit-gallery__slide {
        margin-top: 2.375rem;
        width: 32.6875rem;
    }

    .p-recruit-gallery__slide figure {
        padding: 0 0.3125rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	.p-research
----------------------------------------------------*/

.p-research {
    padding: 0 0 var(--section-marginL);
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-research-lead__wrap {
    padding: 3.125rem 0;
}

@media screen and (min-width: 1024px) {
    .p-research-lead__wrap {
        padding: 8.125rem 0 6.25rem;
    }
}

.p-research-lead__head {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-research-lead__head {
        font-size: 2rem;
        line-height: 1.5;
    }
}

.p-research-lead__body {
    padding-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .p-research-lead__body {
        padding: 3.625rem 0 0 26rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-research-list__content {
    padding-top: 1.875rem;
    margin-top: -1px;
    border-top: 1px solid #D9D9D9;
}

.p-research-list__content:not(:first-child) {
    display: none;
}

@media screen and (min-width: 1024px) {
    .p-research-list__content {
        padding-top: 3.125rem;
    }
}

.p-research-list__contentItem {
    margin-top: 1.875rem;
    display: -ms-grid;
    display: grid;
    gap: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-research-list__contentItem {
        margin-top: 2.5rem;
        -ms-grid-columns: 1fr 1.875rem 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 2.125rem 1.875rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-research-list-item--col2 {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }

    .p-research-list-item--col2 .p-research-list-item__link {
        width: 36rem;
    }
}

.p-research-list-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #D9D9D9;
}

.p-research-list-item__link:hover {
    border-color: #C80D2F;
}

.p-research-list-item__year {
    padding: 1rem 1rem;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-weight: 700;
    font-size: 0.8125rem;
    line-height: 1.65;
}

@media screen and (min-width: 1024px) {
    .p-research-list-item__year {
        padding: 1.4375rem 0 1.4375rem 2.125rem;
        width: 6rem;
        font-size: 0.9375rem;
    }
}

.p-research-list-item__pic {
    margin-right: 0.9375rem;
}

.p-research-list-item__pic img {
    width: auto;
    height: 7.5rem;
}

@media screen and (min-width: 1024px) {
    .p-research-list-item__pic {
        margin-right: 2.25rem;
    }
}

.p-research-list-item__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.p-research-list-item__title {
    font-weight: 700;
    line-height: 1.65;
    font-size: 0.8125rem;
}

@media screen and (min-width: 1024px) {
    .p-research-list-item__title {
        font-size: 0.9375rem;
    }
}

.p-research-list-item__more {
    margin-left: 1.25rem;
}

.p-research-list-item__more span {
    font-size: 0.75rem;
    color: #C80D2F;
    text-decoration-line: underline;
}

.p-research-list-item__more i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3.3125rem;
    height: 1.375rem;
    background: #C80D2F;
    font-style: normal;
    font-weight: 700;
    font-size: 0.625rem;
    color: #FFFFFF;
}

.p-research-list-item__more i svg {
    width: 0.625rem;
    height: auto;
    margin-left: 0.125rem;
    fill: #fff;
    stroke: #fff;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-structure
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-structure-lead {
    position: relative;
    overflow: hidden;
}

.p-structure-lead__wrap {
    margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-structure-lead__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: calc(50% - 50vw);
    }
}

.p-structure-lead__body {
    padding-bottom: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-structure-lead__body {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 8rem;
        padding-top: 5.8125rem;
        padding-bottom: 5rem;
    }
}

.p-structure-lead__title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-structure-lead__title {
        font-size: 2rem;
        line-height: 1.5;
    }
}

.p-structure-lead__text {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-structure-lead__text {
        margin-top: 1.9375rem;
    }
}

.p-structure-lead__figure {
    position: relative;
    z-index: 5;
    margin-top: 1.25rem;
}

@media screen and (max-width: 640px) {
    .p-structure-lead__figure {
        margin-inline: -1.25rem;
    }
}

@media screen and (min-width: 641px) and (max-width: 1023px) {
    .p-structure-lead__figure {
        margin-inline: -2.5rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-structure-lead__figure {
        margin-top: 0;
        width: 42.3611111111vw;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-structure-lead__type {
    margin-top: -3.375rem;
    padding: 0 0 3.125rem;
    font-family: minion-pro, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 5rem;
    line-height: 0.95;
    color: #F0F4F8;
    white-space: nowrap;
}

.p-structure-lead__type p span {
    display: inline-block;
    width: 68.75rem;
}

.p-structure-lead__type p:nth-child(1) {
    margin-left: -13.75rem;
}

.p-structure-lead__type p:nth-child(2) {
    margin-left: 3.75rem;
}

@media screen and (min-width: 1024px) {
    .p-structure-lead__type {
        margin-top: -8.75rem;
        padding: 0 0 3.125rem;
        font-size: 8rem;
    }

    .p-structure-lead__type p span {
        width: 93.75rem;
    }

    .p-structure-lead__type p:nth-child(1) {
        margin-left: -9.375rem;
    }

    .p-structure-lead__type p:nth-child(2) {
        margin-left: 18.125rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-structure-professionals {
    position: relative;
    padding: 6.25rem 0 var(--section-marginL);
}

.p-structure-professionals:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #F8F9FB;
    z-index: -10;
}

@media screen and (min-width: 1024px) {
    .p-structure-professionals {
        padding: 8.75rem 0 var(--section-marginL);
    }
}

.p-structure-professionals__item {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-structure-professionals__item {
        margin-top: 3.125rem;
    }
}

.p-structure-professionals-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 1px solid #D9D9D9;
}

.p-structure-professionals-item:last-child {
    border-bottom: 1px solid #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-structure-professionals-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        border-top: none;
    }

    .p-structure-professionals-item:last-child {
        border-bottom: none;
    }
}

.p-structure-professionals-item__head {
    padding: 2.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (min-width: 1024px) {
    .p-structure-professionals-item__head {
        border-top: 1px solid #D9D9D9;
        padding: 3.125rem 0 1.875rem 1.875rem;
        margin-right: 2.125rem;
        width: 30rem;
    }
}

.p-structure-professionals-item__title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.p-structure-professionals-item__title ._en {
    font-family: minion-pro, serif;
    font-size: 1.75rem;
    line-height: 1.1875;
    letter-spacing: -0.01em;
}

.p-structure-professionals-item__title ._ja {
    margin-top: 0.4375rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .p-structure-professionals-item__title ._en {
        font-family: minion-pro, serif;
        font-size: 2rem;
        line-height: 1.1875;
        letter-spacing: -0.01em;
    }

    .p-structure-professionals-item__title ._ja {
        margin-top: 0.4375rem;
        font-size: 0.75rem;
        line-height: 1.5;
        color: #C80D2F;
    }
}

.p-structure-professionals-item__body {
    padding: 0 0 2.5rem 2.5rem;
}

.p-structure-professionals-item__body ._title {
    margin-bottom: 0.625rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-structure-professionals-item__body {
        border-top: 1px solid #D9D9D9;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding: 2.5rem 0;
    }

    .p-structure-professionals-item__body ._title {
        margin-bottom: 0.625rem;
        font-size: 2rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-sustainable
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-sustainability-lead {
    position: relative;
    overflow: hidden;
}

.p-sustainability-lead__wrap {
    margin-top: 2.3125rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-lead__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: calc(50% - 50vw);
    }
}

@media screen and (min-width: 1024px) {
    .p-sustainability-lead__body {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 8rem;
        padding-top: 5.8125rem;
        padding-bottom: 5rem;
    }
}

.p-sustainability-lead__desc {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-lead__desc {
        margin-top: 1.9375rem;
    }
}

.p-sustainability-lead__pic {
    margin-top: 1.875rem;
}

@media screen and (max-width: 640px) {
    .p-sustainability-lead__pic {
        margin-inline: -1.25rem;
    }
}

@media screen and (min-width: 641px) and (max-width: 1023px) {
    .p-sustainability-lead__pic {
        margin-inline: -2.5rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-sustainability-lead__pic {
        margin-top: 0;
        width: 42.3611111111vw;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-sustainability-stakeholder {
    position: relative;
    background: #F0F4F8;
}

.p-sustainability-stakeholder__type {
    position: absolute;
    top: calc(50% - 5.625rem);
    left: 0;
    font-family: minion-pro, serif;
    font-weight: 500;
    font-size: 6.25rem;
    line-height: 0.9;
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-stakeholder__type {
        top: calc(50% - 11.25rem);
        left: calc(50% - 37.5rem);
        font-size: 12.5rem;
    }
}

.p-sustainability-stakeholder__wrap {
    position: relative;
    padding: 3.75rem 0 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-stakeholder__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 15rem 0 5rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-sustainability-stakeholder__head {
        width: 37.25rem;
    }
}

.p-sustainability-stakeholder__body {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-stakeholder__body {
        margin-top: 0rem;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-sustainability-stakeholder__lead {
    font-weight: bold;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-stakeholder__lead {
        padding-right: 1.875rem;
    }
}

.p-sustainability-stakeholder__link {
    margin-top: 1.25rem;
}

.p-sustainability-stakeholder__link a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.p-sustainability-stakeholder__link a i {
    margin-left: 0.25rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-stakeholder__link {
        margin-top: 3.125rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-sustainability-activity {
    padding-top: 5.5rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-activity {
        padding-top: 5.5rem;
    }
}

.p-sustainability-activity__item {
    margin-top: 1.25rem;
    padding-left: 3.75rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-activity__item {
        margin-top: 2.5rem;
        padding-left: 20rem;
    }
}

.p-sustainability-activity-item+.p-sustainability-activity-item {
    margin-top: 1.875rem;
    padding-top: 1.25rem;
    border-top: 1px solid #D9D9D9;
}

.p-sustainability-activity-item ._cvrl {
    width: 13.75rem;
}

.p-sustainability-activity-item ._iso {
    width: 15rem;
}

.p-sustainability-activity-item>*+* {
    margin-top: 1.25rem;
}

.p-sustainability-activity-item .c-list-border a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.p-sustainability-activity-item .c-list-border a i {
    margin-left: 0.25rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-activity-item+.p-sustainability-activity-item {
        margin-top: 3.75rem;
        padding-top: 2.5rem;
    }

    .p-sustainability-activity-item>*+* {
        margin-top: 2.5rem;
    }
}

.p-sustainability-activity__direction {
    margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-activity__direction {
        margin-top: 5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1024px) {
    .p-sustainability-activity__directionHead {
        width: 20rem;
    }
}

.p-sustainability-activity__directionBody .c-list-border a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.p-sustainability-activity__directionBody .c-list-border a i {
    margin-left: 0.25rem;
}

@media screen and (max-width: 1023px) {
    .p-sustainability-activity__directionBody {
        padding-top: 1.25rem;
        padding-left: 3.75rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-sustainability-activity__directionBody {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-sustainability-initiative {
    margin-top: 3.125rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-initiative {
        margin-top: 6.25rem;
    }
}

.p-sustainability-initiative__body {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-initiative__body {
        margin-top: 2.5rem;
        margin-left: 20rem;
    }
}

.p-sustainability-initiative__item {
    margin-top: 1.25rem;
    display: -ms-grid;
    display: grid;
    gap: 0.625rem;
    -ms-grid-columns: 1fr 0.625rem 1fr;
    grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 1024px) {
    .p-sustainability-initiative__item {
        margin-top: 2.5rem;
        gap: 1.5rem;
        -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-sustainability-foot {
    margin-top: var(--section-marginM);
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-sustainable
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-sustainable-lead {
    margin-top: 2.1875rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-lead {
        margin-top: 6.375rem;
    }
}

.p-sustainable-lead__title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.75rem;
    line-height: 2.625rem;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-lead__title {
        font-size: 2rem;
        line-height: 3rem;
    }
}

.p-sustainable-lead__text {
    margin-top: 3.1875rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-lead__text {
        margin-top: 4.6875rem;
        padding-left: 26rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-sustainable-partner {
    margin-top: 6.75rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-partner {
        margin-top: 8.5rem;
    }
}

.p-sustainable-partner__headTitle {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.75rem;
    line-height: 2.625rem;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-partner__headTitle {
        font-size: 2rem;
        line-height: 3rem;
    }
}

.p-sustainable-partner__headText {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-partner__headText {
        margin-top: 0.6875rem;
    }
}

.p-sustainable-partner__item {
    margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-partner__item {
        margin-top: 6.8125rem;
    }
}

.p-sustainable-partner-item+.p-sustainable-partner-item {
    margin-top: 3.75rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-partner-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1024px) {
    .p-sustainable-partner-item__head {
        width: 20rem;
    }
}

.p-sustainable-partner-item__body {
    margin-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-partner-item__body {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-top: 0;
    }
}

.p-sustainable-partner-item__partner {
    display: -ms-grid;
    display: grid;
    gap: 0.625rem;
    -ms-grid-columns: 1fr 0.625rem 1fr;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 3.75rem;
    border-bottom: 1px solid #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-partner-item__partner {
        gap: 1.5rem;
        -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.p-sustainable-partner-item__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.p-sustainable-partner-item__list li {
    font-weight: bold;
    font-size: 0.6875rem;
    line-height: 200%;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-partner-item__list {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto 3rem auto 3rem 1fr;
        grid-template-columns: auto auto 1fr;
        gap: 0 3rem;
    }
}

.p-sustainable-partner-item__foot {
    margin-top: 1.875rem;
    text-align: right;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-sustainable-history {
    margin-top: 5rem;
    padding-bottom: 1px;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history {
        margin-top: 12.1875rem;
    }
}

.p-sustainable-history__wrap {
    position: relative;
    padding: 3.75rem 0;
}

.p-sustainable-history__wrap:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #F8F9FB;
    z-index: -1;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history__wrap {
        padding: 6.25rem 0;
    }
}

.p-sustainable-history__body {
    margin-top: 3rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history__body {
        margin-top: 4.6875rem;
    }
}

.p-sustainable-history-item+.p-sustainable-history-item {
    margin-top: 6.25rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: calc(50% - 50vw);
    }

    .p-sustainable-history-item+.p-sustainable-history-item {
        margin-top: 6.25rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history-item__head {
        width: 26rem;
    }
}

.p-sustainable-history-item__body {
    margin-top: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.p-sustainable-history-item__body::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history-item__body {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-top: -0.625rem;
    }
}

.p-sustainable-history__links {
    margin-top: 4.8125rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history__links {
        margin-top: 6.0625rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history-links__head {
        width: 26rem;
    }
}

.p-sustainable-history-links__item {
    margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history-links__item {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-top: -0.375rem;
        padding-right: 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.p-sustainable-history-links-item {
    border-top: 1px solid #C1BFC0;
    border-bottom: 1px solid #C1BFC0;
    margin-bottom: -1px;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history-links-item {
        width: 50%;
    }

    .p-sustainable-history-links-item:nth-child(odd) {
        border-right: 1px solid #C1BFC0;
    }
}

.p-sustainable-history-links-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 4.6875rem;
    padding: 0 1.25rem;
}

.p-sustainable-history-links-item__link span {
    margin-right: 0.625rem;
    font-size: 0.9375rem;
}

.p-sustainable-history-links-item__link .c-btn-circle {
    position: absolute;
    right: 1.25rem;
    top: calc(50% - 1.09375rem);
}

.p-sustainable-history-links-item__link i svg {
    stroke: #191919;
}

.p-sustainable-history-links-item__link:hover {
    color: #C80D2F;
}

.p-sustainable-history-links-item__link:hover i svg {
    stroke: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .p-sustainable-history-links-item__link {
        padding: 0 1.875rem;
        height: 6.25rem;
    }

    .p-sustainable-history-links-item__link .c-btn-circle {
        right: 1.875rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-sustainable-foot {
    margin-top: var(--section-marginM);
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	.p-top
----------------------------------------------------*/

.p-top-lead {
    position: relative;
    z-index: 10;
    padding: 6.875rem 0 5rem;
}

@media screen and (min-width: 1024px) {
    .p-top-lead {
        margin-top: -4.5rem;
        padding: 0rem 0 10.1875rem;
    }
}

.p-top-blog {
    padding-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-top-blog {
        padding-top: 3.125rem;
    }
}

.p-top-solution {
    position: relative;
    padding: 6.25rem 0 0;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .p-top-solution {
        padding: 7rem 0 0;
    }
}

.p-top-feature {
    padding: 5rem 0 3.75rem;
}

@media screen and (min-width: 1024px) {
    .p-top-feature {
        padding: 7.1875rem 0 7.75rem;
    }
}

.p-top-business {
    position: relative;
    padding: 3.75rem 0 3.75rem;
}

.p-top-business:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-top-business {
        padding: 7rem 0 8.125rem;
    }

    .p-top-business:before {
        width: calc(100% - 4rem);
        left: 4rem;
    }
}

.p-top-awards {
    position: relative;
    padding: 3.75rem 0 3.75rem;
}

.p-top-awards:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-top-awards {
        padding: 6.875rem 0 6.875rem;
    }

    .p-top-awards:before {
        width: calc(100% - 4rem);
        left: 4rem;
    }
}

.p-top-news {
    position: relative;
    padding: 3.75rem 0 6.25rem;
}

.p-top-news:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .p-top-news {
        padding: 9.8125rem 0 6.25rem;
    }

    .p-top-news:before {
        width: calc(100% - 4rem);
        left: 4rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-top-blog {
    overflow: hidden;
}

.p-top-blog__wrap {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "head ctrl" "slide slide" "more more";
}

@media screen and (min-width: 1024px) {
    .p-top-blog__wrap {
        grid-template-areas: "head ctrl more" "slide slide slide";
        -ms-grid-columns: 1fr auto auto;
        grid-template-columns: 1fr auto auto;
    }

    .p-top-blog__wrap>.p-message-body__head {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }
}

.p-top-blog__head {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: head;
}

.p-top-blog__wrap>.p-top-blog__head {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
}

.p-top-blog__ctrl {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: ctrl;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-top-blog__ctrl button+button {
    margin-left: 1rem;
}

@media screen and (min-width: 1024px) {
    .p-top-blog__ctrl {
        position: relative;
        margin-right: 2.625rem;
        margin-top: 1.25rem;
        padding-right: 2rem;
    }

    .p-top-blog__ctrl:after {
        content: "";
        display: block;
        width: 1px;
        height: 2.375rem;
        background: #D9D9D9;
        position: absolute;
        right: 0;
        top: calc(50% - 1.1875rem);
    }

    .p-top-blog__ctrl button+button {
        margin-left: 1.25rem;
    }
}

.p-top-blog__slide {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    position: relative;
    z-index: 0;
    grid-area: slide;
    margin-top: 0.9375rem;
    width: 10.625rem;
}

.p-top-blog__slide .swiper {
    overflow: initial;
}

.p-top-blog__slide .swiper-slide {
    height: auto;
}

.p-top-blog__slide .c-card-blog {
    height: 100%;
}

@media screen and (min-width: 1024px) {
    .p-top-blog__slide {
        width: 20rem;
        margin-top: 2.375rem;
    }
}

.p-top-blog__more {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: more;
    margin-top: 1.875rem;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .p-top-blog__more {
        margin-top: 1.25rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

@media screen and (min-width: 1024px) {
    .p-top-solution {
        margin-top: 1.25rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-top-feature {
    position: relative;
    overflow: hidden;
}

.p-top-feature__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (min-width: 1024px) {
    .p-top-feature__wrap {
        padding: 0 4rem;
    }
}

.p-top-feature__head {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.p-top-feature__ctrl {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.p-top-feature__ctrl button+button {
    margin-left: 1rem;
}

@media screen and (min-width: 1024px) {
    .p-top-feature__ctrl {
        position: relative;
        margin-right: 2rem;
        padding-right: 2rem;
    }

    .p-top-feature__ctrl:after {
        content: "";
        display: block;
        width: 1px;
        height: 2.375rem;
        background: #D9D9D9;
        position: absolute;
        right: 0;
        top: calc(50% - 1.1875rem);
    }

    .p-top-feature__ctrl button+button {
        margin-left: 1.25rem;
    }
}

.p-top-feature__count {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: #C80D2F;
}

@media screen and (max-width: 1023px) {
    .p-top-feature__count {
        display: none;
    }
}

.p-top-feature__slide {
    margin-top: 1.875rem;
}

.p-top-feature__slide .swiper {
    margin-left: 0;
    width: 18.75rem;
    overflow: initial;
}

@media screen and (min-width: 1024px) {
    .p-top-feature__slide {
        margin-left: 0rem;
    }

    .p-top-feature__slide .swiper {
        width: 54rem;
    }
}

.p-top-feature-slide__indicator {
    position: relative;
    margin-top: 1.25rem;
    height: 3px;
    background: #D9D9D9;
}

.p-top-feature-slide__indicator #featureIndicator {
    height: 100%;
}

.p-top-feature-slide__indicator .swiper-pagination-progressbar-fill.swiper-pagination-progressbar-fill {
    height: 3px;
    background: #333;
}

@media screen and (min-width: 1024px) {
    .p-top-feature-slide__indicator {
        width: 28rem;
        margin-left: auto;
        margin-top: 3.125rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-top-business__lead {
    margin-top: 1.875rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.0625rem;
    ine-height: 1.8;
    letter-spacing: 0.01em;
}

@media screen and (min-width: 1024px) {
    .p-top-business__lead {
        margin-top: 2.5rem;
        font-size: 2rem;
        line-height: 1.8;
        width: 72%;
    }
}


/*:::::::::::::::::::強調 by 平尾:::::::::::::::::::::::::::::*/

.p-top-business .p-top-business__lead {
    line-height: 1.8;
}


/*:::::::::::::::::::::ここまで:::::::::::::::::::::::::::::*/

.p-top-business__desc {
    margin-top: 1.25rem;
    max-width: 54rem;
    font-size: 0.9375rem;
    line-height: 2;
}

@media screen and (min-width: 1024px) {
    .p-top-business__desc {
        margin-top: 1.875rem;
        font-size: 1.125rem;
    }
}

.p-top-business__wrap {
    position: relative;
    margin-top: 3.75rem;
}

@media screen and (max-width: 1023px) {
    .p-top-business__wrap {
        padding-top: 3.125rem;
    }

    .p-top-business__wrap:before {
        content: "";
        display: block;
        width: calc(100% + 2.5rem);
        height: 1px;
        position: absolute;
        left: -1.25rem;
        top: 0;
        background-color: #D9D9D9;
    }
}

@media screen and (min-width: 1024px) {
    .p-top-business__wrap {
        margin-top: 5.375rem;
        display: -ms-grid;
        display: grid;
        grid-template-areas: "desc2 figure" "foot figure";
        -ms-grid-columns: 26.75rem 40.6875rem;
        grid-template-columns: 26.75rem 40.6875rem;
        -ms-grid-rows: auto 1fr;
        grid-template-rows: auto 1fr;
    }
}

.p-top-business__figure {
    grid-area: figure;
}

.p-top-business__desc2 {
    grid-area: desc2;
    margin-top: 1.875rem;
}

.p-top-business__desc2 p {
    font-size: 0.9375rem;
    line-height: 1.8;
}

.p-top-business__desc2 ul {
    margin-top: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.3125rem 0.3125rem;
}

.p-top-business__desc2 li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 0.3125rem;
    height: 1.3125rem;
    border: 1px solid #C7C7C7;
    font-size: 0.6875rem;
}

@media screen and (min-width: 1024px) {
    .p-top-business__desc2 {
        margin-top: 0;
    }

    .p-top-business__desc2 p {
        max-width: 19.875rem;
    }

    .p-top-business__desc2 ul {
        margin-top: 2.25rem;
        gap: 0.75rem 0.375rem;
        max-width: 23.5rem;
    }

    .p-top-business__desc2 li {
        padding: 0 0.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }
}

.p-top-business__foot {
    grid-area: foot;
    margin-top: 1.25rem;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .p-top-business__foot {
        text-align: left;
        margin-top: 2.375rem;
    }
}

.p-top-business__area {
    margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
    .p-top-business__area {
        margin-top: 3.75rem;
        margin-right: -4rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

@media screen and (min-width: 1024px) {
    .p-top-awards__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

@media screen and (min-width: 1024px) {
    .p-top-awards__client {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-top-awards__clientList {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0.375rem 0 0 -0.625rem;
}

@media screen and (min-width: 1024px) {
    .p-top-awards__clientList {
        margin: 0.375rem 0 0 -1.1875rem;
        gap: 0 3.875rem;
    }
}

.p-top-awards__clientList2 {
    margin: 1.25rem 0 0 0;
}

@media screen and (min-width: 1024px) {
    .p-top-awards__clientList2 {
        margin: 2.875rem 0 0 0.4375rem;
    }

    .p-top-awards__clientList2 img {
        width: 39.9375rem;
    }
}

.p-top-awards__awards {
    margin-top: 3.75rem;
}

@media screen and (min-width: 1024px) {
    .p-top-awards__awards {
        margin-top: 0;
        width: 31.25rem;
    }
}

.p-top-awards__awardsLead {
    margin-top: 1.25rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

@media screen and (min-width: 1024px) {
    .p-top-awards__awardsLead {
        margin-top: 3rem;
    }

    .p-top-awards__awardsLead:before {
        display: block;
        height: 2px;
    }
}

.p-top-awards__awardsList {
    margin-top: 1rem;
}

.p-top-awards__awardsList dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-top-awards__awardsList dl+dl {
    margin-top: 0.625rem;
}

.p-top-awards__awardsList dt {
    width: 4.375rem;
    font-family: minion-pro, serif;
    font-size: 1.3125rem;
    line-height: 1.1904761905;
}

.p-top-awards__awardsList dd {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 0.8125rem;
    line-height: 1.6666666667;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

@media screen and (min-width: 1024px) {
    .p-top-news__wrap {
        display: -ms-grid;
        display: grid;
        grid-template-areas: "head head" "nav body" "nav foot";
        -ms-grid-columns: 23.875rem 1fr;
        grid-template-columns: 23.875rem 1fr;
    }

    .p-top-news__wrap>.p-top-business__foot {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }
}

.p-top-news__head {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: head;
}

.p-top-blog__wrap>.p-top-news__head {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
}

@media screen and (min-width: 1024px) {
    .p-message-body__head {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
    }

    .p-message-body__message {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
    }

    .p-message-body__pic {
        -ms-grid-row: 3;
        -ms-grid-row-span: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

    .p-message-body__text {
        -ms-grid-row: 5;
        -ms-grid-row-span: 3;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
    }

    .p-message-body__sign {
        -ms-grid-row: 7;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

    .p-top-blog__head {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
    }

    .p-top-blog__wrap>.p-top-blog__head {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

    .p-top-blog__ctrl {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }

    .p-top-blog__slide {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
    }

    .p-top-blog__more {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
    }

    .p-top-news__head {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
    }

    .p-top-blog__wrap>.p-top-news__head {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }
}

@media screen and (min-width: 1024px) {
    .p-top-news__head {
        margin-bottom: 2.125rem;
    }
}

.p-top-news__nav {
    grid-area: nav;
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .l-footer-nav {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .l-footer-company {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .l-footer-report {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .l-footer-bnr {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    .p-top-news__nav {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
}

@media screen and (min-width: 1024px) {
    .p-top-news__nav {
        margin-top: 0;
    }
}

.p-top-news__body {
    grid-area: body;
    margin-top: 0.625rem;
}

@media screen and (min-width: 1024px) {
    .p-top-news__body {
        margin-top: -0.625rem;
    }
}

.p-top-news__foot {
    grid-area: foot;
    margin-top: 1.25rem;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .p-top-business__figure {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        -ms-grid-column: 2;
    }

    .p-top-business__desc2 {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .p-top-business__foot {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .p-top-news__body {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }

    .p-top-news__foot {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .p-top-news__wrap>.p-top-news__foot {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }
}

@media screen and (min-width: 1024px) {
    .p-top-news__foot {
        margin-top: 1rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	.p-vision
----------------------------------------------------*/

.p-vision-location {
    position: relative;
}

.p-vision-location:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #F8F9FB;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-vision-content {
    position: relative;
    padding: 3.75rem 0 4.375rem;
}

.p-vision-content:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #F8F9FB;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

@media screen and (min-width: 1024px) {
    .p-vision-content {
        padding: 7.1875rem 0;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

@media screen and (min-width: 1024px) {
    .p-vision-content-lead {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.p-vision-content-lead__head {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .p-vision-content-lead__head {
        width: 25.875rem;
        font-size: 3.25rem;
        line-height: 1.5;
    }

    .p-vision-content-lead__head h2 {
        position: sticky;
        left: 0;
        top: calc(var(--header-height) + 6.25rem);
    }
}

.p-vision-content-lead__body {
    margin-top: 1.5625rem;
    font-size: 0.875rem;
    line-height: 1.65;
}

.p-vision-content-lead__body p+p {
    margin-top: 1.25rem;
}

.p-vision-content-lead__body ._s {
    opacity: 0;
    -webkit-transform: translate3d(0, 6.25rem, 0);
    transform: translate3d(0, 6.25rem, 0);
    display: inline-block;
}

.p-vision-content-lead__body ._flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.p-vision-content-lead__body ._flow span {
    text-decoration: underline;
    text-underline-offset: 0.375rem;
}

.p-vision-content-lead__body ._flow svg {
    width: 0.5rem;
    height: auto;
    margin-inline: 0.4375rem;
}

@media screen and (min-width: 1024px) {
    .p-vision-content-lead__body {
        margin-top: 0;
        margin-right: -3.75rem;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        font-size: 1.5rem;
        line-height: 2.4;
    }

    .p-vision-content-lead__body p+p {
        margin-top: 3.25rem;
    }

    .p-vision-content-lead__body ._flow svg {
        width: 0.75rem;
        margin-inline: 1.25rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-vision-content-figure {
    position: relative;
    margin: 5.625rem 1.25rem 0;
}

.p-vision-content-figure img:nth-child(1) {
    position: relative;
    z-index: 2;
}

.p-vision-content-figure img:nth-child(2),
.p-vision-content-figure img:nth-child(3) {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    -webkit-animation: animeCircle 40s linear infinite;
    animation: animeCircle 40s linear infinite;
}

.p-vision-content-figure img:nth-child(3) {
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
}

@media screen and (min-width: 1024px) {
    .p-vision-content-figure {
        margin: 11.25rem auto 0;
        width: 50.625rem;
    }

    .p-vision-content-figure img:nth-child(2) {
        -webkit-animation-duration: 60s;
        animation-duration: 60s;
    }

    .p-vision-content-figure img:nth-child(3) {
        -webkit-animation-duration: 30s;
        animation-duration: 30s;
    }
}

@-webkit-keyframes animeCircle {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(365deg);
        transform: rotate(365deg);
    }
}

@keyframes animeCircle {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(365deg);
        transform: rotate(365deg);
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-vision-content__item {
    position: relative;
    margin: 3.75rem 0 0;
    height: 28.125rem;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .p-vision-content__item {
        margin: 12.5rem 0 0;
        height: 36.25rem;
    }
}

.p-vision-content__slide {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 1.375rem;
    padding: 0 1.25rem;
}

@media screen and (min-width: 1024px) {
    .p-vision-content__slide {
        gap: 0 6.25rem;
        padding: 0 17.7777777778vw;
    }
}

.p-vision-content__indicator {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 356px;
    height: 5px;
    background: #D9D9D9;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.p-vision-content__indicator span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 5px;
    background: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .p-vision-content__indicator {
        width: 928px;
        margin: 0 auto;
    }
}

.p-vision-content-item {
    width: 16.25rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 1024px) {
    .p-vision-content-item {
        width: 28.125rem;
    }
}

.p-vision-content-item__head {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .p-vision-content-item__head {
        font-size: 3.4375rem;
    }
}

.p-vision-content-item__body {
    margin-top: 0.3125rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

@media screen and (min-width: 1024px) {
    .p-vision-content-item__body {
        margin-top: 1.875rem;
        font-size: 1.125rem;
        line-height: 1.65;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.p-vision-solution {
    padding: 4.375rem 0 0;
}

@media screen and (min-width: 1024px) {
    .p-vision-solution {
        padding: 10.75rem 0;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	...
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	cm-blog
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-blog-latest {
    overflow: hidden;
}

.cm-blog-latest__slide {
    margin-top: 1.25rem;
    width: 10.625rem;
}

.cm-blog-latest__slide .swiper {
    overflow: initial;
}

.cm-blog-latest__slide .swiper-slide {
    height: auto;
}

.cm-blog-latest__slide .c-card-blog {
    height: 100%;
}

@media screen and (min-width: 1024px) {
    .cm-blog-latest__slide {
        margin-top: 2.8125rem;
        width: 20rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	cm-breadcrumb
----------------------------------------------------*/

.cm-breadcrumb__list {
    padding-top: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cm-breadcrumb__list::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
}

.cm-breadcrumb__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cm-breadcrumb__list li:not(:first-child):before {
    content: "";
    display: block;
    margin-inline: 0.5rem;
    width: 0.625rem;
    height: 1px;
    background: #C1BFC0;
}

.cm-breadcrumb__list .is-current {
    color: #A6A6A8;
}

.cm-breadcrumb__list a.hover {
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .cm-breadcrumb__list {
        padding-top: 1.125rem;
    }
}

.cm-breadcrumb--pb .cm-breadcrumb__list {
    padding-bottom: 0.625rem;
}

@media screen and (min-width: 1024px) {
    .cm-breadcrumb--pb .cm-breadcrumb__list {
        padding-bottom: 1.125rem;
    }
}

.cm-breadcrumb--pd0 .cm-breadcrumb__list {
    padding: 0rem;
}

@media screen and (min-width: 1024px) {
    .cm-breadcrumb--pd0 .cm-breadcrumb__list {
        padding: 0rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	cm-business
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-business-feature__lead {
    margin-top: 0.9375rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.25rem;
    line-height: 165%;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .cm-business-feature__lead {
        margin-top: 1.875rem;
        font-size: 1.5rem;
    }
}

.cm-business-feature__text {
    margin-top: 0.9375rem;
}

@media screen and (min-width: 1024px) {
    .cm-business-feature__text {
        margin-top: 1.5rem;
    }
}

.cm-business-feature__item {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .cm-business-feature__item {
        margin-top: 2.5rem;
    }
}

.cm-business-feature-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 1px solid #D9D9D9;
}

.cm-business-feature-item:last-child {
    border-bottom: 1px solid #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .cm-business-feature-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        border-top: none;
    }

    .cm-business-feature-item:last-child {
        border-bottom: none;
    }
}

.cm-business-feature-item__head {
    padding: 2.5rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (min-width: 1024px) {
    .cm-business-feature-item__head {
        border-top: 1px solid #D9D9D9;
        padding: 1.875rem 0 1.875rem 0;
        margin-right: 2.125rem;
        width: 30rem;
    }
}

.cm-business-feature-item__no {
    font-family: minion-pro, serif;
    font-weight: 500;
    font-size: 3.75rem;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #A6A6A8;
}

@media screen and (max-width: 1023px) {
    .cm-business-feature-item__no {
        width: 5rem;
    }
}

@media screen and (min-width: 1024px) {
    .cm-business-feature-item__no {
        font-size: 8rem;
    }
}

.cm-business-feature-item__en {
    position: relative;
    top: 1.25rem;
    font-family: minion-pro, serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .cm-business-feature-item__en {
        margin-left: 0.9375rem;
        font-size: 1.5rem;
    }
}

.cm-business-feature-item__dt {
    position: relative;
    top: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .cm-business-feature-item__dt {
        margin-left: 0.9375rem;
    }
}

.cm-business-feature-item__dt .cm-business-feature-item__en {
    margin-left: 0;
    top: 0;
}

.cm-business-feature-item--vision .cm-business-feature-item__no {
    color: #191919;
}

.cm-business-feature-item--vision .cm-business-feature-item__en {
    color: #191919;
}

@media screen and (max-width: 1023px) {
    .cm-business-feature-item--vision .cm-business-feature-item__body {
        margin-top: 1.25rem;
    }
}

.cm-business-feature-item__ja {
    margin-top: 0.4375rem;
    font-size: 0.75rem;
    line-height: 1.5;
}

@media screen and (min-width: 1024px) {
    .cm-business-feature-item__ja {
        margin-top: 0.75rem;
    }
}

.cm-business-feature-item__body {
    padding: 0 0 2.5rem 5rem;
}

.cm-business-feature-item__body ._title {
    margin-bottom: 0.625rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .cm-business-feature-item__body {
        border-top: 1px solid #D9D9D9;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding: 3.125rem 0;
    }

    .cm-business-feature-item__body ._title {
        margin-bottom: 0.625rem;
        font-size: 2rem;
    }
}

.cm-business-feature-item__title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .cm-business-feature-item__title {
        font-size: 2rem;
    }
}

.cm-business-feature-item__text {
    margin-top: 0.75rem;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-business-blockA {
    position: relative;
    padding: 4.375rem 0 1.875rem;
}

.cm-business-blockA:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #F0F4F8;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.cm-business-blockA .l-container {
    position: relative;
}

@media screen and (min-width: 1024px) {
    .cm-business-blockA {
        padding: 9.25rem 0 12rem;
    }

    .cm-business-blockA.cm-business-blockA--research {
        padding: 11.75rem 0 10.125rem;
    }
}

.cm-business-blockA__type {
    position: absolute;
    left: 0;
    top: -3.75rem;
    font-family: minion-pro, serif;
    font-weight: 500;
    font-size: 6.25rem;
    line-height: 1;
    color: #FFFFFF;
}

@media screen and (min-width: 1024px) {
    .cm-business-blockA__type {
        font-size: 12.5rem;
    }
}

.cm-business-blockA__wrap {
    position: relative;
}

@media screen and (min-width: 1024px) {
    .cm-business-blockA__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.cm-business-blockA__head {
    position: relative;
}

@media screen and (min-width: 1024px) {
    .cm-business-blockA__head {
        width: 37.5rem;
        padding-bottom: 1.875rem;
    }
}

.cm-business-blockA__body {
    position: relative;
    margin-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .cm-business-blockA__body {
        margin-top: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .cm-business-blockA__body p {
        line-height: 2;
    }

    .cm-business-blockA--research .cm-business-blockA__body {
        margin-top: 3.5rem;
    }
}

.cm-business-blockA__more {
    margin-top: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 0 2rem;
}

@media screen and (min-width: 1024px) {
    .cm-business-blockA__more {
        margin-top: 3.75rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	cm-entry
----------------------------------------------------*/

body figure {
    margin-bottom: 0;
}

.cm-entry {
    max-width: 58rem;
}

@media screen and (min-width: 1024px) {
    .cm-entry {
        padding: 0 6rem;
    }
}

@media screen and (min-width: 1024px) {
    .cm-entry__head {
        margin-inline: -6rem;
    }
}

.cm-entry__title {
    margin-bottom: 1.125rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .cm-entry__title {
        margin-bottom: 1.25rem;
        font-size: 2rem;
        line-height: 1.5;
    }
}

.cm-entry__meta {
    padding-top: 1.25rem;
    margin-bottom: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #D9D9D9;
}

@media screen and (max-width: 640px) {
    .cm-entry__meta {
        margin-inline: -1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media screen and (min-width: 1024px) {
    .cm-entry__meta {
        padding-top: 1.5rem;
        margin-bottom: 3.25rem;
    }
}

.cm-entry__cate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cm-entry__cate span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.125rem 0.625rem;
    height: 1.375rem;
    border: 1px solid #C80D2F;
    border-radius: 2.5rem;
    font-size: 0.6875rem;
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .cm-entry__cate span {
        padding: 0.125rem 0.8125rem;
        height: 1.4375rem;
        border-radius: 3.125rem;
        font-size: 0.75rem;
    }
}

.cm-entry__tag {
    margin-left: 1.25rem;
    font-size: 0.75rem;
    line-height: 1.125rem;
    color: #C1BFC0;
}

.cm-entry__date {
    margin-left: auto;
    font-size: 0.6875rem;
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    line-height: 1.1818181818;
    letter-spacing: -0.01em;
    color: #A6A6A8;
}

@media screen and (min-width: 1024px) {
    .cm-entry__date {
        font-size: 0.9375rem;
        line-height: 1.2;
    }
}

.cm-entry__eyecatch {
    margin-bottom: 1.875rem;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

@media screen and (max-width: 1023px) {
    .cm-entry__eyecatch {
        margin-inline: -1.25rem;
    }
}

@media screen and (min-width: 1024px) {
    .cm-entry__eyecatch {
        margin-bottom: 3.75rem;
        margin-inline: -6rem;
        border: 1px solid #D9D9D9;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.cm-entry__page {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #D9D9D9;
}

.cm-entry__page ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 3.75rem;
}

.cm-entry__page ._list {
    font-size: 0.9375rem;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.01em;
    color: #545759;
}

@media screen and (min-width: 1024px) {
    .cm-entry__page {
        margin-top: 6.25rem;
        padding-top: 3.75rem;
    }

    .cm-entry__page ul {
        gap: 0 6.25rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper,
.cm-entry__editor {
    font-size: 0.875rem;
    line-height: 1.5;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper>*+*,
.cm-entry__editor>*+* {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
    word-break: break-all;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h1,
.cm-entry__editor h1 {
    font-weight: 700;
    font-size: 1.4375rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h1+*,
.cm-entry__editor h1+* {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {

    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h1,
    .cm-entry__editor h1 {
        font-size: 2rem;
        line-height: 1.4;
    }
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h2,
.cm-entry__editor h2 {
    font-weight: 700;
    font-size: 1.3125rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h2+*,
.cm-entry__editor h2+* {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {

    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h2,
    .cm-entry__editor h2 {
        font-size: 1.75rem;
        line-height: 1.4;
    }
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h3,
.cm-entry__editor h3 {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h3+*,
.cm-entry__editor h3+* {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {

    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h3,
    .cm-entry__editor h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h4,
.cm-entry__editor h4 {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h4+*,
.cm-entry__editor h4+* {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {

    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h4,
    .cm-entry__editor h4 {
        font-size: 1.25rem;
        line-height: 1.9;
    }
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h5,
.cm-entry__editor h5 {
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h5+*,
.cm-entry__editor h5+* {
    margin-top: 1.25rem;
}

@media screen and (min-width: 1024px) {

    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper h5,
    .cm-entry__editor h5 {
        font-size: 1rem;
        line-height: 1.9;
    }
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper strong,
.cm-entry__editor strong {
    font-weight: bold;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper em,
.cm-entry__editor em {
    font-style: italic;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper ul,
.cm-entry__editor ul {
    padding: 0.625rem 0 0.625rem 1.5em;
    border-top: 1px solid #C7C7C7;
    border-bottom: 1px solid #C7C7C7;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper ol,
.cm-entry__editor ol {
    margin-left: 1.5em;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper li,
.cm-entry__editor li {
    list-style: disc;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper ol li,
.cm-entry__editor ol li {
    list-style: decimal;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper table,
.cm-entry__editor table {
    width: 100%;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper table th,
.cm-entry__editor table th {
    font-weight: bold;
    background-color: #F3F3F3;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper table th,
.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper table td,
.cm-entry__editor table th,
.cm-entry__editor table td {
    padding: 0.5em 0.5em;
    border: 1px solid #d7d7d7;
}

@media screen and (min-width: 1024px) {

    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper table th,
    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper table td,
    .cm-entry__editor table th,
    .cm-entry__editor table td {
        padding: 0.95em 0.95em;
    }
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper blockquote,
.cm-entry__editor blockquote {
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    background: #D7D7D7;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper blockquote:before,
.cm-entry__editor blockquote:before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url(../images/ico-quote.png) center center/contain no-repeat;
    position: absolute;
    left: 1rem;
    top: 0.625rem;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper a:not([class*=c-]),
.cm-entry__editor a:not([class*=c-]) {
    color: rgba(29, 172, 128, 0.8235294118) F1F2;
    text-decoration: underline;
}

.editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper a:not([class*=c-]):hover,
.cm-entry__editor a:not([class*=c-]):hover {
    text-decoration: none;
}

@media screen and (min-width: 1024px) {

    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper,
    .cm-entry__editor {
        font-size: 0.9375rem;
        line-height: 1.9;
    }

    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper>*+*,
    .cm-entry__editor>*+* {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper blockquote,
    .cm-entry__editor blockquote {
        padding: 2.1875rem 2.1875rem 2.1875rem 3.75rem;
    }

    .editor-styles-wrapper.editor-styles-wrapper.editor-styles-wrapper blockquote:before,
    .cm-entry__editor blockquote:before {
        width: 1.5rem;
        height: 1.5rem;
        left: 1rem;
        top: 0.625rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	p-contact
----------------------------------------------------*/

.cm-form__privacy {
    margin-top: 1.875rem;
    font-size: 0.75rem;
    line-height: 150%;
}

.cm-form__privacy label {
    margin-top: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .cm-form__privacy {
        margin-top: 2rem;
        font-size: 0.9375rem;
        line-height: 180%;
    }
}

.cm-form__action {
    margin-top: 3.125rem;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .cm-form__action {
        text-align: left;
        margin-top: 6.25rem;
    }
}

.cm-form__message .c-heading-serif {
    margin-bottom: 1.5625rem;
}

@media screen and (min-width: 1024px) {
    .cm-form__message .c-heading-serif {
        margin-bottom: 2.5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-form-input+.cm-form-input {
    margin-top: 1.25rem;
}

.cm-form-input select {
    width: 100%;
    height: 3.9375rem;
    background: #FFFFFF;
    border: 1px solid #C1BFC0;
    border-radius: 0.1875rem;
    padding: 1rem 1.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #191919;
    font-size: 1rem;
}

.cm-form-input select:focus {
    border-color: #333;
}

.cm-form-input input[type=text],
.cm-form-input input[type=email],
.cm-form-input textarea {
    width: 100%;
    height: 3.9375rem;
    background: #FFFFFF;
    border: 1px solid #C1BFC0;
    border-radius: 0.1875rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.cm-form-input input[type=text]:focus,
.cm-form-input input[type=email]:focus,
.cm-form-input textarea:focus {
    border-color: #333;
}

.cm-form-input input[type=text]::-webkit-input-placeholder,
.cm-form-input input[type=email]::-webkit-input-placeholder,
.cm-form-input textarea::-webkit-input-placeholder {
    font-size: 0.9375rem;
    color: #C1BFC0;
}

.cm-form-input input[type=text]::-moz-placeholder,
.cm-form-input input[type=email]::-moz-placeholder,
.cm-form-input textarea::-moz-placeholder {
    font-size: 0.9375rem;
    color: #C1BFC0;
}

.cm-form-input input[type=text]:-ms-input-placeholder,
.cm-form-input input[type=email]:-ms-input-placeholder,
.cm-form-input textarea:-ms-input-placeholder {
    font-size: 0.9375rem;
    color: #C1BFC0;
}

.cm-form-input input[type=text]::-ms-input-placeholder,
.cm-form-input input[type=email]::-ms-input-placeholder,
.cm-form-input textarea::-ms-input-placeholder {
    font-size: 0.9375rem;
    color: #C1BFC0;
}

.cm-form-input input[type=text]::placeholder,
.cm-form-input input[type=email]::placeholder,
.cm-form-input textarea::placeholder {
    font-size: 0.9375rem;
    color: #C1BFC0;
}

.cm-form-input textarea {
    height: 18.75rem;
}

.cm-form-input dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: -0.01em;
}

.cm-form-input dt ._required {
    margin-left: 1.125rem;
    font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    font-size: 0.75rem;
    line-height: 1.8;
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .cm-form-input+.cm-form-input {
        margin-top: 2.5rem;
    }

    .cm-form-input dt {
        font-size: 1.5rem;
    }

    .cm-form-input dt ._required {
        margin-left: 0.625rem;
        font-size: 0.9375rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-form-checkbox {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cm-form-checkbox input[type=checkbox] {
    position: absolute;
    width: 1px;
    height: 1px;
    outline: none;
    clip: rect(0.0625rem, 1px, 1px, 1px);
}

.cm-form-checkbox input[type=checkbox]+span,
.cm-form-checkbox input[type=checkbox]+label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 2.125rem;
    height: 1.5rem;
    vertical-align: middle;
}

.cm-form-checkbox input[type=checkbox]+span::before,
.cm-form-checkbox input[type=checkbox]+label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #C80D2F;
    background-color: #C80D2F;
}

.cm-form-checkbox input[type=checkbox]:focus+span::before,
.cm-form-checkbox input[type=checkbox]:focus+label::before {
    border: 1px solid #fff;
}

.cm-form-checkbox input[type=checkbox]:checked+span::after,
.cm-form-checkbox input[type=checkbox]:checked+label::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.125rem;
    left: 0.4375rem;
    width: 0.625rem;
    height: 0.875rem;
    border-right: 0.125rem solid #fff;
    border-bottom: 0.125rem solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cm-form-checkbox input[type=checkbox]:checked+span::before,
.cm-form-checkbox input[type=checkbox]:checked+label::before {
    background-color: #C80D2F;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	cm-loading
----------------------------------------------------*/

.cm-loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: #fff;
    z-index: 1500;
}

.cm-loading__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

@media screen and (min-width: 1024px) {
    .cm-loading__wrapper {
        padding-bottom: 1.5625rem;
    }
}

.cm-loading__logo {
    opacity: 0;
}

.cm-loading__logo img {
    width: 18.875rem;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	cm-page
----------------------------------------------------*/

.cm-page-header {
    position: relative;
    padding: var(--header-height) 0 0;
    background-color: #fff;
}

.cm-page-header__line {
    width: 0;
    height: 1px;
    background-color: #D9D9D9;
    position: absolute;
    left: 0;
    bottom: 0;
}

.cm-page-header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 1.875rem;
    height: 16.375rem;
}

@media screen and (max-width: 640px) {
    .cm-page-header__wrap {
        margin-right: -1.25rem;
    }
}

@media screen and (min-width: 1024px) {
    .cm-page-header__wrap {
        padding-top: 1.375rem;
        height: 23.125rem;
    }

    .cm-page-header--hasPic .cm-page-header__wrap {
        padding-top: 4rem;
        height: 20rem;
    }
}


/*------ブログのスマホだけ調整-----------------------------------------------*/

.blog .cm-page-header__wrap,
.archive .cm-page-header__wrap {
    margin-right: 0;
}

@media screen and (max-width: 640px) {

    .blog .cm-page-header__wrap,
    .archive .cm-page-header__wrap {
        margin-right: 0;
    }

    .blog .cm-page-header__wrap .cm-page-header__desc,
    .archive .cm-page-header__wrap .cm-page-header__desc {
        font-size: 0.75rem;
    }
}

.cm-page-header__en {
    font-family: minion-pro, serif;
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 1.25;
}

.is-loader-end .cm-page-header__en {
    color: #191919;
    -webkit-transition: color 0s 0.5s;
    transition: color 0s 0.5s;
}

.is-loader-end .cm-page-header__en:before {
    -webkit-animation: textOverlay 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: textOverlay 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@media screen and (min-width: 1024px) {
    .cm-page-header__en {
        font-size: 5.5rem;
    }
}

.cm-page-header__ja {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(200, 13, 47, 0);
}

.is-loader-end .cm-page-header__ja {
    color: #c80d2f;
    -webkit-transition: color 0s 0.7s;
    transition: color 0s 0.7s;
}

.is-loader-end .cm-page-header__ja:before {
    -webkit-animation: textOverlay 1s 0.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: textOverlay 1s 0.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@media screen and (min-width: 1024px) {
    .cm-page-header__ja {
        margin-top: -0.3125rem;
        font-size: 1.125rem;
    }
}

.cm-page-header__desc {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 180%;
}

.is-loader-end .cm-page-header__desc {
    color: #191919;
    -webkit-transition: color 0s 0.9s;
    transition: color 0s 0.9s;
}

.is-loader-end .cm-page-header__desc:before {
    -webkit-animation: textOverlay 1s 0.4s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: textOverlay 1s 0.4s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@media screen and (min-width: 1024px) {
    .cm-page-header__desc {
        margin-top: 2.5rem;
        font-size: 1.125rem;
    }
}

.cm-page-header__category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.625rem 0.9375rem;
    margin-top: -1.25rem;
    padding-bottom: 1.875rem;
}

.cm-page-header__category li {
    padding: 0.1875rem 0.3125rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 1.5rem;
    border: 1px solid #D9D9D9;
    font-size: 0.8125rem;
}

@media screen and (min-width: 1024px) {
    .cm-page-header__category {
        max-width: 40rem;
        margin-top: -2.5rem;
        padding-bottom: 4.625rem;
    }

    .cm-page-header__category li {
        height: 1.9375rem;
        font-size: 0.9375rem;
    }
}

.cm-page-header--business .cm-page-header__en {
    font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 1.25;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.is-loader-end .cm-page-header--business .cm-page-header__en {
    -webkit-transition: color 0s 0.5s;
    transition: color 0s 0.5s;
}

.is-loader-end .cm-page-header--business .cm-page-header__en:before {
    -webkit-animation: textOverlay 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: textOverlay 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.cm-page-header--business .cm-page-header__en dt {
    font-size: 1rem;
    font-family: minion-pro, serif;
    color: rgba(200, 13, 47, 0);
}

.is-loader-end .cm-page-header--business .cm-page-header__en dt {
    -webkit-transition: color 0s 0.5s;
    transition: color 0s 0.5s;
    color: #c80d2f;
}

.cm-page-header--business .cm-page-header__en dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(84, 87, 89, 0);
}

.cm-page-header--business .cm-page-header__en dd:before {
    content: "";
    display: block;
    width: 1.375rem;
    height: 1px;
    margin-inline: 0.625rem;
    background: rgba(166, 166, 168, 0);
}

.is-loader-end .cm-page-header--business .cm-page-header__en dd:before {
    -webkit-transition: background 0s 0.5s;
    transition: background 0s 0.5s;
    background: #a6a6a8;
}

.is-loader-end .cm-page-header--business .cm-page-header__en dd {
    -webkit-transition: color 0s 0.5s;
    transition: color 0s 0.5s;
    color: #545759;
}

@media screen and (min-width: 1024px) {
    .cm-page-header--business .cm-page-header__en {
        font-size: 5.5rem;
    }

    .cm-page-header--business .cm-page-header__en dt {
        font-size: 2rem;
    }

    .cm-page-header--business .cm-page-header__en dd {
        font-size: 1rem;
    }

    .cm-page-header--business .cm-page-header__en dd:before {
        margin-inline: 0.75rem;
    }
}

.cm-page-header--business .cm-page-header__ja {
    margin-top: 0.625rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 2rem;
    line-height: 1.65;
    color: rgba(25, 25, 25, 0);
}

.is-loader-end .cm-page-header--business .cm-page-header__ja {
    color: #191919;
}

@media screen and (min-width: 1024px) {
    .cm-page-header--business .cm-page-header__ja {
        margin-top: 0.3125rem;
        font-size: 3.25rem;
    }
}

.cm-page-header--blogEntry {
    padding-top: 11rem;
    padding-bottom: 2.5rem;
    background-color: transparent;
}

@media screen and (min-width: 1024px) {
    .cm-page-header--blogEntry {
        padding-top: 15.625rem;
        padding-bottom: 0;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-page-nav {
    display: none;
}

.cm-page-nav a:hover {
    color: #C80D2F;
}

.cm-page-nav .is-current {
    font-weight: bold;
}

@media screen and (min-width: 1024px) {
    .cm-page-nav {
        display: block;
    }

    .cm-page-nav dt {
        display: none;
    }
}

.cm-page-nav.is-category {
    display: block;
    padding: 0 1.25rem 0;
}

.cm-page-nav.is-category dt {
    text-align: right;
    padding-bottom: 1.25rem;
}

@media screen and (max-width: 1023px) {
    .cm-page-nav.is-category {
        margin: -1.25rem 0 0;
    }
}

@media screen and (min-width: 1024px) {
    .cm-page-nav.is-category {
        padding: 0;
    }
}

.cm-page-nav__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1;
}

.cm-page-nav__button i {
    font-size: 0;
    margin-left: 0.75rem;
    -webkit-transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.cm-page-nav__button i svg {
    width: 0.625rem;
    height: auto;
    stroke: #191919;
}

.cm-page-nav__button.is-open i {
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}

@media screen and (max-width: 1023px) {
    .cm-page-nav__list {
        display: none;
        padding-bottom: 1.25rem;
    }

    .cm-page-nav__list ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 0.75rem 0.9375rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-page-footer-nav {
    position: relative;
    padding: 3.75rem 0;
    background: #F0F4F8;
    z-index: 2;
}

@media screen and (min-width: 1024px) {
    .cm-page-footer-nav {
        padding: 6.25rem 0;
        border-top: 1px solid #D9D9D9;
        background-color: #fff;
    }
}

.cm-page-footer-nav__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.625rem;
}

@media screen and (min-width: 1024px) {
    .cm-page-footer-nav__wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 1.375rem;
    }
}

.cm-page-footer-nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cm-page-footer-nav-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 7.5625rem;
    position: relative;
    padding: 1.875rem 1.25rem;
    background: #FFFFFF;
}

@media screen and (min-width: 1024px) {
    .cm-page-footer-nav-item__link {
        height: 11.875rem;
        padding: 3.125rem 2.5rem;
        background: #F0F4F8;
    }

    .cm-page-footer-nav-item__link:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        width: 0;
        height: 100%;
        background-color: #C80D2F;
        -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .cm-page-footer-nav-item__link:hover:before {
        width: 100%;
        left: 0;
        -webkit-transition-duration: 0.6s;
        transition-duration: 0.6s;
    }
}

.cm-page-footer-nav-item__en {
    position: relative;
    font-family: minion-pro, serif;
    font-weight: 500;
    font-size: 2.375rem;
    line-height: 1;
}

.cm-page-footer-nav--business .cm-page-footer-nav-item__en {
    font-size: 1rem;
    color: #A6A6A8;
}

@media screen and (min-width: 1024px) {
    .cm-page-footer-nav-item__en {
        margin-top: -0.375rem;
        font-size: 3.25rem;
        -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    a:hover .cm-page-footer-nav-item__en {
        -webkit-transition-duration: 0.6s;
        transition-duration: 0.6s;
        color: #fff;
    }

    .cm-page-footer-nav--business .cm-page-footer-nav-item__en {
        margin-top: 1rem;
        font-size: 1.25rem;
    }
}

.cm-page-footer-nav-item__ja {
    position: relative;
    margin-top: 0.125rem;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #C80D2F;
}

.cm-page-footer-nav--business .cm-page-footer-nav-item__ja {
    margin-top: 0.625rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.25rem;
    color: #191919;
}

@media screen and (min-width: 1024px) {
    .cm-page-footer-nav-item__ja {
        margin-top: 1.125rem;
        font-size: 0.9375rem;
        color: #545759;
        -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    a:hover .cm-page-footer-nav-item__ja {
        -webkit-transition-duration: 0.6s;
        transition-duration: 0.6s;
        color: #fff;
    }

    .cm-page-footer-nav--business .cm-page-footer-nav-item__ja {
        font-size: 2.25rem;
    }
}

.cm-page-footer-nav-item__ico {
    position: absolute;
    right: 1.25rem;
}

@media screen and (min-width: 1024px) {
    .cm-page-footer-nav-item__ico {
        bottom: 3.125rem;
        right: 2.5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-page-location {
    padding: 0.375rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    font-weight: 500;
    font-size: 0.6875rem;
    line-height: 2.2;
    color: #3D3D3D;
}

@media screen and (min-width: 1024px) {
    .cm-page-location {
        padding: 0.8125rem 0 0;
        font-size: 0.75rem;
    }
}

.cm-page-location__bc,
.cm-page-location__head {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (min-width: 1024px) {

    .cm-page-location__bc,
    .cm-page-location__head {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        width: 26rem;
        margin-right: 6rem;
    }
}

.cm-page-location__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .cm-page-location__content {
        text-align: left;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	cm-pagination
----------------------------------------------------*/

.cm-pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 0.125rem;
    font-size: 0.9375rem;
    line-height: 1.2;
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
}

.cm-pagination__ctrl:first-child {
    margin-right: 0.25rem;
}

.cm-pagination__ctrl:last-child {
    margin-left: 0.25rem;
}

@media screen and (min-width: 1024px) {
    .cm-pagination__ctrl:first-child {
        margin-right: 1.25rem;
    }

    .cm-pagination__ctrl:last-child {
        margin-left: 1.25rem;
    }
}

.cm-pagination__page span,
.cm-pagination__page a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.1875rem;
    height: 2.1875rem;
    border-radius: 100%;
}

.cm-pagination__page.is-current a,
.cm-pagination__page.is-current span,
.cm-pagination__page a:hover {
    color: #fff;
    background-color: #C80D2F;
}


/*::.::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	cm-top
----------------------------------------------------*/

.cm-top-mv {
    position: relative;
    height: 31.25rem;
}

.cm-top-mv:before {
    content: "";
    display: block;
    width: 100%;
    height: 26.5625rem;
    position: absolute;
    left: 0;
    top: 4.6875rem;
    /* background: #F0F4F8; */
    z-index: -1;
    -webkit-transition: width cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
    transition: width cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
}

@media screen and (min-width: 1024px) {
    .cm-top-mv {
        margin-top: var(--header-height);
        height: 67.0138888889vw;
    }

    .cm-top-mv:before {
        top: auto;
        width: 0;
        left: 4rem;
        height: 31.9444444444vw;
        bottom: 9.5833333333vw;
    }

    .is-loader-end .cm-top-mv:before {
        width: calc(100% - 4rem);
    }
}

.cm-top-mv__wrap {
    position: absolute;
    left: 1.25rem;
    top: 15.625rem;
    z-index: 2;
}

@media screen and (min-width: 1024px) {
    .cm-top-mv__wrap {
        left: 8.8888888889vw;
        top: 17.2vw;
    }
}

.cm-top-mv__type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-size: 2.875rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.cm-top-mv__type span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0.04em 0;
}

@media screen and (min-width: 1024px) {
    .cm-top-mv__type {
        font-size: 4vw;
        font-weight: 500;
        line-height: 0.9;
        letter-spacing: -0.02em;
    }
}

.cm-top-mv__text,
.cm-top-mv__type span {
    position: relative;
    color: rgba(25, 25, 25, 0);
    text-shadow: 0 3px 7px rgb(0, 0, 0, 50%);
}

.cm-top-mv__text:before,
.cm-top-mv__type span:before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #C80D2F;
}

.is-loader-end .cm-top-mv__text,
.is-loader-end .cm-top-mv__type span {
    color: #fff;
    -webkit-transition: color 0s 0.5s;
    transition: color 0s 0.5s;
}

.is-loader-end .cm-top-mv__text:before,
.is-loader-end .cm-top-mv__type span:before {
    -webkit-animation: textOverlay 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: textOverlay 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.cm-top-mv__type.cm-top-mv__type span:nth-child(1) {
    -webkit-transition-delay: 0.65s;
    transition-delay: 0.65s;
}

.cm-top-mv__type.cm-top-mv__type span:nth-child(1):before {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.cm-top-mv__type.cm-top-mv__type span:nth-child(2) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
    padding-left: 5vw;
    padding-top: 1rem;
    vertical-align: bottom;
    display: block;
}

.cm-top-mv__type.cm-top-mv__type span:nth-child(2):before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.cm-top-mv__type.cm-top-mv__type span:nth-child(2) strong {
    font-size: 4.5vw;
    transition-delay: 1.4s;
    color: #C80D2F;
    text-shadow: 0 3px 7px rgb(0, 0, 0, 50%);
}

.cm-top-mv__type.cm-top-mv__type span:nth-child(3) {
    -webkit-transition-delay: 0.95s;
    transition-delay: 0.95s;
}

.cm-top-mv__type.cm-top-mv__type span:nth-child(3):before {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}

.cm-top-mv__type.cm-top-mv__type span:nth-child(4) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.cm-top-mv__type.cm-top-mv__type span:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.cm-top-mv__text.cm-top-mv__text {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

.cm-top-mv__text.cm-top-mv__text:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.cm-top-mv__text {
    margin-top: 1.25rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.125rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
    display: none;
}

@media screen and (min-width: 1024px) {
    .cm-top-mv__text {
        margin-top: 1.75rem;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

.cm-top-mv__pic {
    position: absolute;
    right: 1.25rem;
    right: 0;
    top: 9.375rem;
    width: 16.8125rem;
    overflow: hidden;
}

.cm-top-mv__pic img {
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.6s 0.5s cubic-bezier(0.61, 1, 0.88, 1);
    transition: opacity 0.6s 0.5s cubic-bezier(0.61, 1, 0.88, 1);
    will-change: transform, opacity;
}

.is-loader-end .cm-top-mv__pic img {
    opacity: 1;
}

.cm-top-mv__pic .swiper-slide-next img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.cm-top-mv__pic .swiper-slide-prev img,
.cm-top-mv__pic .swiper-slide-duplicate-active img,
.cm-top-mv__pic .swiper-slide-active img {
    -webkit-animation: zoomUp 6s linear;
    animation: zoomUp 6s linear;
}

@media screen and (min-width: 1024px) {
    .cm-top-mv__pic {
        right: 0vw;
        top: 0rem;
        width: 51.1111111111vw;
    }
}

@-webkit-keyframes zoomUp {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoomUp {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

@media screen and (min-width: 1024px) {
    .cm-top-lead {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.cm-top-lead__head {
    font-family: minion-pro, serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

@media screen and (min-width: 1024px) {
    .cm-top-lead__head {
        width: 14.625rem;
        padding-left: 5.9375rem;
    }
}

.cm-top-lead__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.0625rem;
    line-height: 1;
}

.cm-top-lead__body:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -2;
    left: -1.25rem;
    right: -1.25rem;
    top: -1.25rem;
    width: calc(100% + 2.5rem);
    height: 6.25rem;
    background: #F8F9FB;
}

.cm-top-lead__body p {
    position: relative;
    margin-right: -2em;
    padding-top: 0.375rem;
    color: #fff;
}

.cm-top-lead__body p:before {
    content: "";
    display: block;
    width: 100%;
    height: 1.5rem;
    background: #C80D2F;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.cm-top-lead__body ._row2 {
    margin-left: 2.5em;
}

@media screen and (max-width: 1023px) {
    .cm-top-lead__body {
        margin-top: 2.5rem;
    }

    .cm-top-lead__body p {
        margin-left: -0.5em;
    }
}

@media screen and (min-width: 1024px) {
    .cm-top-lead__body {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        gap: 0;
        font-size: 3.125rem;
    }

    .cm-top-lead__body:before {
        top: 0rem;
        left: 3.8125rem;
        width: 35rem;
        height: 16.4375rem;
    }

    .cm-top-lead__body p {
        padding: 0.875rem 0.625rem 0.5rem;
        letter-spacing: 0.01em;
    }

    .cm-top-lead__body p._row1 {
        padding: 1.5rem 2rem;
    }

    .cm-top-lead__body p._row2 {
        padding: 1.5rem 2rem;
    }

    .cm-top-lead__body p:before {
        height: 6.5rem;
    }

    .cm-top-lead__body ._row2 {
        margin: 0 0 0 3.6em;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-top-solution {
    position: relative;
}

.cm-top-solution:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F0F4F8;
    z-index: -1;
}

.cm-top-solution__wrap {
    position: relative;
    padding: 6.375rem 0 26.5625rem;
}

@media screen and (min-width: 1024px) {
    .cm-top-solution__wrap {
        padding: 16.25rem 0 15.625rem;
    }
}

.cm-top-solution__en {
    position: absolute;
    left: -1.25rem;
    top: 0.625rem;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-size: 7.5rem;
    line-height: 1;
    color: #FFFFFF;
    opacity: 0.6;
}

@media screen and (min-width: 1024px) {
    .cm-top-solution__en {
        top: 16.25rem;
        left: 0;
        font-size: 12.5rem;
    }
}

.cm-top-solution__head {
    position: absolute;
    right: 0.625rem;
    top: -3.4375rem;
}

.cm-top-solution__head svg {
    width: 1.625rem;
    height: auto;
}

@media screen and (min-width: 1024px) {
    .cm-top-solution__head {
        /* top: 11.875rem;
        right: calc(50% + 5.25rem);
        line-height: 1.5;
        font-size: 2.625rem; */
        top: 11.875rem;
        right: calc(50% + 6.25rem);
        line-height: 1.2;
        font-weight: bold;
        width: 20px;
        font-size: 2.25rem;
    }

    .cm-top-solution__head svg {
        width: 3.375rem;
    }
}

.cm-top-solution__desc {
    position: relative;
    z-index: 2;
}

.cm-top-solution__desc picture {
    width: 17.5rem;
    margin: 0 0 1.25rem -1.25rem;
}

.cm-top-solution__desc .c-paragraph {
    line-height: 2.4;
}

@media screen and (min-width: 1024px) {
    .cm-top-solution__desc {
        width: 40rem;
        margin-left: auto;
    }

    .cm-top-solution__desc .c-paragraph {
        line-height: 2.4;
    }

    .cm-top-solution__desc picture {
        margin: 0 0 3.75rem 0;
        width: 100%;
    }

    .cm-top-solution__desc p {
        padding-right: 4rem;
    }
}

.cm-top-solution__pic figure {
    position: absolute;
}

.cm-top-solution__pic figure:nth-child(1) {
    width: 11.3125rem;
    right: 0;
    bottom: 5rem;
}

.cm-top-solution__pic figure:nth-child(2) {
    width: 7.125rem;
    left: -1.875rem;
    bottom: 12.5rem;
}

@media screen and (min-width: 1024px) {
    .cm-top-solution__pic figure:nth-child(1) {
        width: 16.0625rem;
        right: calc(50% + 14.875rem);
        bottom: 18.4375rem;
    }

    .cm-top-solution__pic figure:nth-child(2) {
        width: 10.0625rem;
        left: -4.375rem;
        bottom: 10.625rem;
    }
}

.cm-top-solution__more {
    position: relative;
    margin-top: 0.625rem;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .cm-top-solution__more {
        position: absolute;
        right: calc(50% + 14.875rem);
        bottom: 10rem;
    }

    .cm-top-solution__more .c-btn-angle {
        width: 16.0625rem;
        min-width: 0;
    }

    .cm-top-solution__more .c-btn-angle__ico {
        margin-right: 1rem;
    }

    .cm-top-solution__more .c-btn-angle__txt {
        font-size: 0.9375rem;
    }
}

.cm-top-solution__en2 {
    position: absolute;
    bottom: 2.5rem;
    left: -1.25rem;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-size: 7.5rem;
    line-height: 1;
    color: #FFFFFF;
    opacity: 0.6;
}

@media screen and (min-width: 1024px) {
    .cm-top-solution__en2 {
        bottom: -2rem;
        left: calc(50% + 3.75rem);
        font-size: 12.5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-top-business-area__body {
    margin-top: 1.875rem;
    display: -ms-grid;
    display: grid;
    gap: 2rem;
}

@media screen and (min-width: 1024px) {
    .cm-top-business-area__body {
        margin-top: 2.3125rem;
        -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.cm-top-business-area-item__link:hover {
    color: #C80D2F;
}

.cm-top-business-area-item__pic {
    position: relative;
    overflow: hidden;
}

.cm-top-business-area-item__pic img {
    -webkit-transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
}

a:hover .cm-top-business-area-item__pic img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.cm-top-business-area-item__wrap {
    margin-top: 0.5rem;
    position: relative;
}

@media screen and (min-width: 1024px) {
    .cm-top-business-area-item__wrap {
        margin-top: 1rem;
    }
}

.cm-top-business-area-item__title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .cm-top-business-area-item__title {
        font-size: 1.5rem;
    }
}

.cm-top-business-area-item__ico {
    position: absolute;
    right: 0;
    top: 0;
}

@media screen and (min-width: 1024px) {
    .cm-top-business-area-item__ico {
        top: 0.375rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-top-news-item__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1.25rem 0;
    border-bottom: 1px solid #D9D9D9;
}

.cm-top-news-item__link:after {
    content: "";
    display: block;
    height: 1px;
    background-color: #C80D2F;
    position: absolute;
    right: 0;
    left: auto;
    width: 0;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    bottom: -1px;
}

.cm-top-news-item__link:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.cm-top-news-item__cate {
    margin-right: 0.625rem;
}

.cm-top-news-item__cate span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 1.5rem;
    padding: 0 0.3125rem;
    background: #E0E7EE;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #292727;
}

@media screen and (min-width: 1024px) {
    .cm-top-news-item__cate {
        width: 9.625rem;
        margin-right: 0;
    }

    .cm-top-news-item__cate span {
        height: 2.125rem;
        padding: 0 0.5rem;
    }
}

.cm-top-news-item__date {
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
}

@media screen and (min-width: 1024px) {
    .cm-top-news-item__date {
        width: 8.9375rem;
    }
}

.cm-top-news-item__title {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.375rem;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

a:hover .cm-top-news-item__title {
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .cm-top-news-item__title {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-top: 0;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.cm-top-action {
    position: relative;
    border-top: 1px solid #D9D9D9;
    overflow: hidden;
    z-index: 2;
}

.cm-top-action__link {
    display: block;
    background-color: #fff;
}

.cm-top-action__link .l-container {
    position: relative;
    height: 100%;
}

@media screen and (min-width: 1024px) {
    .cm-top-action__link {
        height: 26.0625rem;
    }

    .cm-top-action__link:hover {
        color: #fff;
    }
}

.cm-top-action__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (min-width: 1024px) {
    a:hover .cm-top-action__bg {
        opacity: 1;
        -webkit-transition-duration: 1.8s;
        transition-duration: 1.8s;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.cm-top-action__wrap {
    padding: 3.125rem 0 3.125rem;
}

@media screen and (min-width: 1024px) {
    .cm-top-action__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 9.3125rem 0 0;
    }
}

.cm-top-action__head {
    font-family: minion-pro, serif;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1;
}

.i_parents li {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .cm-top-action__head {
        width: 24rem;
        font-weight: bold;
        font-size: 4rem;
    }
}

.cm-top-action__body {
    padding-right: 4.375rem;
}

.cm-top-action__body ._title {
    margin-top: 1.25rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.0625rem;
    line-height: 1.5294117647;
    letter-spacing: -0.01em;
}

.cm-top-action__body p {
    display: none;
    font-size: 0.9375rem;
    line-height: 1.8;
}

@media screen and (min-width: 1024px) {
    .cm-top-action__body ._title {
        margin-top: 0;
        font-size: 2rem;
        line-height: 1.5;
    }

    .cm-top-action__body p {
        margin-top: 1.25rem;
        display: block;
    }
}

.cm-top-action__ico {
    position: absolute;
    right: 1.25rem;
    bottom: 3.125rem;
}

@media screen and (min-width: 1024px) {
    .cm-top-action__ico {
        bottom: calc(50% - 3rem);
        right: 4rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	...
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	c-btn
----------------------------------------------------*/

.c-btn-circle {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border: 1px solid #C80D2F;
    border-radius: 100%;
}

.c-btn-circle:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #C80D2F;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

a:hover .c-btn-circle:before,
.c-btn-circle:hover:before {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.c-btn-circle.swiper-button-disabled,
.c-btn-circle.is-disabled {
    pointer-events: none;
    border: 1px solid #D9D9D9;
}

.c-btn-circle.swiper-button-disabled .c-btn-circle__ico,
.c-btn-circle.is-disabled .c-btn-circle__ico {
    fill: #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .c-btn-circle {
        width: 6rem;
        height: 6rem;
    }
}

.c-btn-circle__ico {
    position: relative;
    font-size: 0;
    width: 0.5rem;
    height: auto;
    fill: #C80D2F;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

button:hover .c-btn-circle__ico,
a:hover .c-btn-circle__ico {
    fill: #fff;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.is-disabled .c-btn-circle__ico {
    fill: #D9D9D9;
}

@media screen and (min-width: 1024px) {
    .c-btn-circle__ico {
        width: 0.875rem;
    }
}

.c-btn-circle--interview {
    width: 1.875rem;
    height: 1.875rem;
}

@media screen and (min-width: 1024px) {
    .c-btn-circle--interview {
        width: 6rem;
        height: 6rem;
    }
}

.c-btn-circle--pagination,
.c-btn-circle--s {
    width: 2.1875rem;
    height: 2.1875rem;
}

@media screen and (min-width: 1024px) {

    .c-btn-circle--pagination .c-btn-circle__ico,
    .c-btn-circle--s .c-btn-circle__ico {
        width: 0.5rem;
    }
}

.c-btn-circle--interview:before,
.c-btn-circle--nav:before {
    background-color: #fff;
}

a:hover .c-btn-circle--interview .c-btn-circle__ico,
a:hover .c-btn-circle--nav .c-btn-circle__ico {
    fill: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .c-btn-circle--nav {
        width: 2.1875rem;
        height: 2.1875rem;
    }

    .c-btn-circle--nav .c-btn-circle__ico {
        width: 0.5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-btn-angle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.1875rem 1.25rem 0.1875rem;
    border-bottom: 1px solid #C80D2F;
    position: relative;
}

.c-btn-angle:hover,
a:hover .c-btn-angle {
    background-color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .c-btn-angle {
        padding: 1.25rem 1.875rem;
        min-width: 17.875rem;
    }
}

.c-btn-angle__ico {
    margin-right: 0.625rem;
    font-size: 0;
}

.c-btn-angle__ico svg {
    width: 0.875rem;
    height: auto;
    fill: #C80D2F;
}

button:hover .c-btn-angle__ico svg,
a:hover .c-btn-angle__ico svg {
    fill: #fff;
    -webkit-transform: translateX(0.625rem);
    transform: translateX(0.625rem);
}

@media screen and (min-width: 1024px) {
    .c-btn-angle__ico {
        margin-right: 1.75rem;
    }

    .c-btn-angle__ico svg {
        width: 1.25rem;
    }
}

.c-btn-angle__txt {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #C80D2F;
}

button:hover .c-btn-angle__txt,
a:hover .c-btn-angle__txt {
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .c-btn-angle__txt {
        font-size: 1.125rem;
        line-height: 1.5;
        letter-spacing: 0.06em;
    }
}

@media screen and (min-width: 1024px) {
    .c-btn-angle--s {
        min-width: 0;
        padding: 0.375rem 0.625rem;
    }
}

@media screen and (min-width: 1024px) {
    .c-btn-angle--s .c-btn-angle__ico {
        margin-right: 1rem;
    }

    .c-btn-angle--s .c-btn-angle__ico svg {
        width: 0.75rem;
    }
}

@media screen and (min-width: 1024px) {
    .c-btn-angle--s .c-btn-angle__txt {
        font-size: 0.9375rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-btn-plus {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 100%;
    background-color: #C80D2F;
}

.c-btn-plus:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #C80D2F;
}

button:hover .c-btn-plus:before,
.c-btn-plus:hover:before {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

@media screen and (min-width: 1024px) {
    .c-btn-plus {
        width: 2.3125rem;
        height: 2.3125rem;
    }
}

.c-btn-plus__ico {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 0.5rem;
    height: 0.5rem;
}

.c-btn-plus__ico:before,
.c-btn-plus__ico:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
}

button:hover .c-btn-plus__ico:before,
button:hover .c-btn-plus__ico:after {
    background-color: #C80D2F;
}

.c-btn-plus__ico:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.is-open .c-btn-plus__ico:after {
    width: 0;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-btn-square {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 16.25rem;
    height: 3.75rem;
    background-color: #C80D2F;
    border: 1px solid #C80D2F;
    color: #fff;
}

.c-btn-square:hover {
    background-color: #fff;
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .c-btn-square {
        height: 4.6875rem;
    }
}

.c-btn-square__ico {
    margin-right: 0.625rem;
    font-size: 0;
}

.c-btn-square__ico svg {
    width: 0.875rem;
    height: auto;
    fill: #fff;
}

a:hover .c-btn-square__ico svg {
    fill: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .c-btn-square__ico {
        margin-right: 1.25rem;
    }

    .c-btn-square__ico svg {
        width: 1.25rem;
    }
}

.c-btn-square__txt {
    font-size: 0.9375rem;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	.c-card
----------------------------------------------------*/

.c-card-blog__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid #D9D9D9;
    height: 100%;
}

.c-card-blog__link:after {
    content: "";
    display: block;
    height: 1px;
    background-color: #C80D2F;
    position: absolute;
    right: 0;
    left: auto;
    width: 0;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    bottom: -1px;
}

.c-card-blog__link:hover {
    color: #C80D2F;
}

.c-card-blog__link:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

@media screen and (min-width: 1024px) {
    .c-card-blog__link {
        padding-bottom: 1rem;
    }
}

.c-card-blog__meta {
    margin-top: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (min-width: 1024px) {
    .c-card-blog__meta {
        margin-top: 0.75rem;
    }
}

.c-card-blog__cate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-card-blog__cate span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.125rem 0.625rem;
    height: 1.375rem;
    border: 1px solid #C80D2F;
    border-radius: 2.5rem;
    font-size: 0.6875rem;
    color: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .c-card-blog__cate span {
        padding: 0.125rem 0.8125rem;
        height: 1.4375rem;
        border-radius: 3.125rem;
        font-size: 0.75rem;
    }
}

.c-card-blog__date {
    font-size: 0.6875rem;
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    line-height: 1.1818181818;
    letter-spacing: -0.01em;
    color: #A6A6A8;
}

@media screen and (min-width: 1024px) {
    .c-card-blog__date {
        font-size: 0.9375rem;
        line-height: 1.2;
    }
}

.c-card-blog__title {
    margin-top: 0.625rem;
    font-weight: 700;
    font-size: 0.875rem;
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    line-height: 140%;
}

@media screen and (min-width: 1024px) {
    .c-card-blog__title {
        margin-top: 0.75rem;
        font-size: 0.9375rem;
        line-height: 140%;
    }
}

.c-card-blog__tag {
    margin-top: 0.3125rem;
    font-size: 0.75rem;
    line-height: 1.125rem;
    color: #C1BFC0;
}

.c-card-blog__tag1 {
    margin-top: 0.5rem;
    font-size: 16px;
    line-height: 1.125rem;
    color: #585858;
}

@media screen and (min-width: 1024px) {
    .c-card-blog__tag {
        margin-top: 0.5rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-card-feature-case__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.875rem 1.25rem 0.625rem;
}

@media screen and (min-width: 1024px) {
    .c-card-feature-case__link {
        padding: 5.375rem 3.875rem 2rem;
    }
}

.c-card-feature-case__pic {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    max-width: 12.125rem;
    position: relative;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

a:hover .c-card-feature-case__pic {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}

.c-card-feature-case__pic img:nth-child(1) {
    position: relative;
    z-index: 2;
}

.c-card-feature-case__pic img:nth-child(2) {
    position: absolute;
    top: 0.625rem;
    left: 0;
    -webkit-filter: blur(1.25rem);
    filter: blur(1.25rem);
    opacity: 0.5;
}

@media screen and (min-width: 1024px) {
    .c-card-feature-case__pic {
        max-width: 34rem;
    }

    .c-card-feature-case__pic img:nth-child(2) {
        top: 1.5rem;
        left: 0;
        -webkit-filter: blur(3.75rem);
        filter: blur(3.75rem);
    }
}

.c-card-feature-case__meta {
    position: relative;
    margin-top: 0.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    font-size: 0.5rem;
    line-height: 1.5;
}

.c-card-feature-case__meta dt {
    font-family: "Inter", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
}

@media screen and (min-width: 1024px) {
    .c-card-feature-case__meta {
        margin-top: 3rem;
        gap: 5.5rem;
        font-size: 24px;
        line-height: 1.4666666667;
    }

    .c-card-feature-case__meta dt {
        font-size: 0.75rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-card-sustainability {
    padding: 0.625rem;
    border: 1px solid #C1BFC0;
}

@media screen and (min-width: 1024px) {
    .c-card-sustainability {
        padding: 1rem;
    }
}

.c-card-sustainability__logo {
    background-color: #fff;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .c-card-sustainability__logo img {
        height: 7.5rem;
    }
}

.c-card-sustainability__body {
    padding: 0.625rem 0;
}

@media screen and (min-width: 1024px) {
    .c-card-sustainability__body {
        padding: 1.4375rem 1.25rem 1.25rem;
    }
}

.c-card-sustainability__name {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 130%;
    min-height: 2.6em;
}

@media screen and (min-width: 1024px) {
    .c-card-sustainability__name {
        font-size: 0.9375rem;
        line-height: 165%;
    }
}

.c-card-sustainability__desc {
    margin-top: 0.3125rem;
    font-size: 0.6875rem;
    line-height: 1rem;
}

@media screen and (min-width: 1024px) {
    .c-card-sustainability__desc {
        margin-top: 0.625rem;
        font-size: 0.75rem;
        line-height: 1.125rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-card-history {
    width: 18.125rem;
    padding-right: 2.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.c-card-history__year {
    font-family: minion-pro, serif;
    font-size: 2rem;
    line-height: 200%;
    letter-spacing: -0.01em;
}

.c-card-history__line {
    position: relative;
    height: 1px;
    background: #D9D9D9;
    margin-right: -2.5rem;
}

.c-card-history__line:before {
    content: "";
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 100%;
    background: #191919;
    position: absolute;
    left: 0;
    top: -0.3125rem;
}

.is-current .c-card-history__line:before {
    background: #C80D2F;
}

.c-card-history__desc {
    margin-top: 2.1875rem;
    font-size: 0.9375rem;
    line-height: 1.375rem;
    white-space: initial;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	c-heading
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-heading-en {
    font-family: minion-pro, serif;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

@media screen and (min-width: 1024px) {
    .c-heading-en {
        font-size: 4rem;
    }
}

.c-heading-en--s {
    font-size: 4rem;
    font-weight: bold;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-heading-serif {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1.5rem;
    line-height: 200%;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 1024px) {
    .c-heading-serif {
        font-size: 2rem;
        line-height: 1.5;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-heading-line__line {
    position: relative;
    width: 3.125rem;
    height: 1px;
    background-color: #D7D7D7;
}

.c-heading-line__line:before {
    content: "";
    display: block;
    width: 1.25rem;
    height: 1px;
    background-color: #C80D2F;
    position: absolute;
    left: 0;
    top: 0;
}

.c-heading-line__en {
    margin-top: 1.25rem;
    font-family: minion-pro, serif;
    font-size: 2.125rem;
    line-height: 1.2058823529;
}

@media screen and (min-width: 1024px) {
    .c-heading-line__en {
        margin-top: 1.875rem;
        font-family: minion-pro, serif;
        font-size: 2.625rem;
        line-height: 1.1904761905;
    }
}

.c-heading-line__ja {
    margin-top: 1.25rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    font-size: 1rem;
    line-height: 1.65;
}

@media screen and (min-width: 1024px) {
    .c-heading-line__ja {
        margin-top: 1.25rem;
        font-size: 1.5rem;
    }
}

.c-heading-line--hol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-heading-line__holTitle {
    margin-left: 0.625rem;
    font-family: minion-pro, serif;
    font-size: 1rem;
    line-height: 1.1875;
}

@media screen and (min-width: 1024px) {
    .c-heading-line__holTitle {
        font-size: 1.3125rem;
        line-height: 1.1904761905;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	.c-list
----------------------------------------------------*/


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-list-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.625rem 1.25rem;
    font-size: 0.9375rem;
}

.c-list-nav .is-current button,
.c-list-nav .is-current a {
    color: #C80D2F;
}

.c-list-nav button,
.c-list-nav a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
    font-size: 100%;
}

.c-list-nav button:hover,
.c-list-nav a:hover {
    color: #C80D2F;
}

.c-list-nav button,
.c-list-nav a {
    position: relative;
    padding-left: 1.625rem;
}

.c-list-nav button:before,
.c-list-nav button:after,
.c-list-nav a:before,
.c-list-nav a:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100%;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.c-list-nav button:before,
.c-list-nav a:before {
    width: 0.5rem;
    height: 0.5rem;
    background: #E0E7EE;
    left: 0.3125rem;
}

.c-list-nav button:after,
.c-list-nav a:after {
    width: 1.125rem;
    height: 1.125rem;
    border: 1px solid transparent;
    left: 0;
}

.c-list-nav button:hover:before,
.c-list-nav button:hover:after,
.c-list-nav a:hover:before,
.c-list-nav a:hover:after,
.c-list-nav .is-current button:before,
.c-list-nav .is-current button:after,
.c-list-nav .is-current a:before,
.c-list-nav .is-current a:after {
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.c-list-nav button:hover:before,
.c-list-nav a:hover:before,
.c-list-nav .is-current button:before,
.c-list-nav .is-current a:before {
    background: #CA133F;
}

.c-list-nav button:hover:after,
.c-list-nav a:hover:after,
.c-list-nav .is-current button:after,
.c-list-nav .is-current a:after {
    border-color: #CA133F;
}

@media screen and (min-width: 1024px) {
    .c-list-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        gap: 0.5rem 1.25rem;
    }
}

@media screen and (max-width: 1023px) {
    .c-list-nav--top a {
        padding-left: 0;
    }

    .c-list-nav--top a:before,
    .c-list-nav--top a:after {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .c-list-nav--profile {
        gap: 1.5rem 1.25rem;
    }
}

.c-list-nav--awards,
.c-list-nav--joblist {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-weight: bold;
    font-size: 0.9375rem;
}

.c-list-nav--awards button,
.c-list-nav--joblist button {
    position: relative;
    padding-top: 0.625rem;
    padding-bottom: 1rem;
    padding-right: 1.25rem;
    text-align: left;
    height: 100%;
}

.c-list-nav--awards span,
.c-list-nav--joblist span {
    font-weight: 700;
}

.c-list-nav--awards span:before,
.c-list-nav--joblist span:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #C80D2F;
    -webkit-transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.c-list-nav--awards .is-current span:before,
.c-list-nav--joblist .is-current span:before {
    width: 100%;
}

.c-list-nav--awards button:hover span:before,
.c-list-nav--joblist button:hover span:before {
    width: 100%;
    left: 0;
}

@media screen and (max-width: 1023px) {

    .c-list-nav--awards li,
    .c-list-nav--joblist li {
        width: 100%;
    }

    .c-list-nav--awards button,
    .c-list-nav--joblist button {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {

    .c-list-nav--awards,
    .c-list-nav--joblist {
        font-size: 1.125rem;
        gap: 3.25rem;
    }

    .c-list-nav--awards button,
    .c-list-nav--joblist button {
        position: relative;
        padding-top: 0.625rem;
        padding-right: 3.125rem;
        padding-bottom: 1.625rem;
    }
}

@media screen and (min-width: 1024px) {
    .c-list-nav--awards button {
        padding-right: 0.625rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

.c-list-border li {
    position: relative;
    padding-left: 1.875rem;
    font-size: 1.125rem;
    line-height: 150%;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
    letter-spacing: -0.01em;
}

.c-list-border li:before {
    content: "";
    display: block;
    width: 1.25rem;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0.75rem;
    background-color: #C80D2F;
}

.c-list-border li+li {
    margin-top: 0.625rem;
}

.c-list-border svg {
    stroke: #000;
}

.c-list-border a:hover {
    color: #C80D2F;
}

.c-list-border a:hover svg {
    stroke: #C80D2F;
}

@media screen and (min-width: 1024px) {
    .c-list-border li {
        padding-left: 2.1875rem;
        font-size: 1.5rem;
    }

    .c-list-border li:before {
        top: 0.875rem;
    }

    .c-list-border li+li {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 1023px) {
    .c-list-border--philosopy {
        margin-top: 1rem;
        padding-left: 5.625rem;
    }
}

@media screen and (min-width: 1024px) {
    .c-list-border--philosopy {
        margin-top: -0.3125rem;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*----------------------------------------------------
	c-paragraph
----------------------------------------------------*/

.c-paragraph {
    font-size: 0.875rem;
    line-height: 1.65;
}

@media screen and (min-width: 1024px) {
    .c-paragraph {
        font-size: 1.125rem;
        line-height: 2.2;
    }
}

.c-paragraph--s {
    font-size: 0.8125rem;
    line-height: 1.5;
}

@media screen and (min-width: 1024px) {
    .c-paragraph--s {
        font-size: 1.0625rem;
        line-height: 1.5;
    }
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::*/

:root {
    /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}


/* Common Styles */


/* Bullets */


/* Progress */


/*----------------------------------------------------
	汎用クラス
----------------------------------------------------*/

.bold,
.strong {
    font-weight: bold;
}

.u-hide {
    display: none;
}

.u-breakLine {
    display: inline-block;
}

.u-only-sp {
    display: block !important;
}

@media screen and (min-width: 641px) {
    .u-only-sp {
        display: none !important;
    }
}

.u-only-pc {
    display: none !important;
}

@media screen and (min-width: 641px) {
    .u-only-pc {
        display: block !important;
    }
}

.u-center {
    text-align: center;
}

.u-right {
    text-align: right;
}

.u-overlay {
    position: relative;
    color: rgba(25, 25, 25, 0);
}

.u-overlay:before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #C80D2F;
}

.u-overlay.is-anime {
    color: #191919;
    -webkit-transition: color 0s 0.5s;
    transition: color 0s 0.5s;
}

.u-overlay.is-anime:before {
    -webkit-animation: textOverlay 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: textOverlay 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@-webkit-keyframes textOverlay {
    0% {
        left: 0;
        width: 0;
    }

    50% {
        left: 0;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 0;
    }
}

@keyframes textOverlay {
    0% {
        left: 0;
        width: 0;
    }

    50% {
        left: 0;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 0;
    }
}

.u-link-underline {
    text-decoration: underline;
}

.u-link-underline:hover {
    text-decoration: none;
}

.u-telop span {
    display: inline-block;
    -webkit-animation: telopLeftToRight 24s linear infinite;
    animation: telopLeftToRight 24s linear infinite;
}

.u-telop.u-telop--rl span {
    -webkit-animation: telopRightToLeft 24s linear infinite;
    animation: telopRightToLeft 24s linear infinite;
}

@media screen and (min-width: 1024px) {
    .u-telop span {
        -webkit-animation-duration: 32s;
        animation-duration: 32s;
    }
}

@-webkit-keyframes telopLeftToRight {
    from {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes telopLeftToRight {
    from {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes telopRightToLeft {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes telopRightToLeft {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.u-fadeUp {
    opacity: 0;
    -webkit-transform: translate3d(0, 6.25rem, 0);
    transform: translate3d(0, 6.25rem, 0);
    -webkit-transition: 1.3s ease;
    transition: 1.3s ease;
}

.u-fadeUp.is-visible {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media(max-width: 768px) {
    .l-header-logo img {
        width: 11.375rem;
        padding-top: 10px;
    }

    .l-footer-bottom__wrap {
        flex-direction: column;
    }
}