@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700");
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300&family=Sawarabi+Gothic&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

*::selection {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
}

body {
    width: 100%;
    height: 100%;
    transition: padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* background: #f0f0f0; */
}

html {
    scroll-behavior: smooth;
}

.bg_pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #9e9e9e;
    opacity: 0.4;
    z-index: -1;
}

.Wavy {
    background-image: repeating-radial-gradient( circle at 0 0, transparent 0, #b8b8b8 20px), repeating-linear-gradient( #d4d4d4, #dbdbdb);
}


/* ハンバーガーメニュー */

.header {
    width: 100%;
    background: white;
    padding: 15px 0;
    position: fixed;
    z-index: 100000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.header-contents {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image-box {
    width: 20%;
    height: 100%;
}

.header-logo {
    width: 20%;
}

.nav-contents {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
    gap: 6px 30px;
}

.header-nav-contents {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}

.header-nav-contents a {
    text-decoration: none;
    color: black;
    font-size: 0.8rem;
}

.header-nav-contents li {
    margin-right: 10px;
}


/* ハンバーガーメニュー */

.navbar.active {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
    color: #555;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: #555;
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}


/* Change navbar styling on small viewports */

@media (max-width: 991.98px) {
    .navbar {
        background: #fff;
    }
    .navbar .navbar-brand,
    .navbar .nav-link {
        color: #555;
    }
}

.toggle {
    margin: auto;
    width: 46px;
    height: 46px;
    right: 120px;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
}

.toggle .bar {
    position: relative;
    width: 40px;
    height: 2px;
    background: black;
}

.navbar.active .toggle .bar {
    position: relative;
    width: 40px;
    height: 2px;
    background: #555;
}

.toggle .bar:before,
.toggle .bar:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    left: 0;
    transform-origin: center center;
    transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.toggle .bar:before {
    top: -10px;
}

.toggle .bar:after {
    bottom: -10px;
}

.toggle.clicked .bar {
    background: transparent;
}

.toggle.clicked .bar:before,
.toggle.clicked .bar:after {
    background: #000;
}

.toggle.clicked .bar:before {
    transform: rotate(45deg);
    top: 0;
}

.toggle.clicked .bar:after {
    transform: rotate(-45deg);
    bottom: 0;
}

.humberger {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.5s ease;
}

.humberger .showcase {
    background: #b4c1ab;
    flex: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.humberger .showcase .showcase-container {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.humberger .showcase .showcase-container:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.humberger .showcase .showcase-menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: visible;
    list-style-type: none;
    transition: top 0.25s ease;
}

.humberger .showcase .showcase-menu li {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.humberger-logo {
    height: 100%;
}

.humberger .showcase .showcase-menu li.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.humberger .menu {
    background: #fff;
    flex: 1;
}

.humberger .menu ul {
    width: 100%;
    padding: 80px 48px 24px 48px;
    list-style-type: none;
    max-height: 100%;
    overflow-y: auto;
}

.humberger .menu ul::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

.humberger .menu ul::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

.humberger .menu ul::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
    border: 0px none #ffffff;
    border-radius: 3px;
}

.humberger .menu ul::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.humberger .menu ul::-webkit-scrollbar-thumb:active {
    background: #000;
}

.humberger .menu ul::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border: 0px none #ffffff;
    border-radius: 0;
}

.humberger .menu ul::-webkit-scrollbar-track:hover {
    background: rgba(0, 0, 0, 0.1);
}

.humberger .menu ul::-webkit-scrollbar-track:active {
    background: rgba(0, 0, 0, 0.1);
}

.humberger .menu ul::-webkit-scrollbar-corner {
    background: transparent;
}

.humberger .menu ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.humberger .menu ul li .number {
    display: inline-block;
    padding: 0 0 0 80px;
    overflow: hidden;
}

.humberger .menu ul li .number span {
    display: block;
    font-size: 48px;
    font-weight: 400;
    transition: transform 0.25s ease;
    transform: translateY(100%);
}

.humberger .menu ul li a {
    display: inline-block;
    font-size: 48px;
    color: #000;
    line-height: 1;
    padding: 24px 0 24px 80px;
    transition: transform 0.25s ease;
    text-decoration: none;
}

.humberger .menu ul li:hover a {
    transform: translateX(20px);
}

.humberger .menu ul li.hover .number span {
    transform: translateY(0);
}

.humberger.hidden {
    display: none;
}

.humberger.open {
    opacity: 1;
}

.humberger.open .showcase {
    animation: slideInLeft 0.5s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

.humberger.open .menu {
    animation: slideInRight 0.5s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}


/* top-seciotn */

.l-mainImage {
    margin: 0 0 200px;
    padding-top: 80px;
    position: relative;
    width: 100%;
}

.l-mainImage .l-mainImage__body {
    padding: 200px 0;
}

.l-mainImage .l-mainImage__container {
    height: 100%;
    position: relative;
    width: 100%;
}

.l-mainImage .l-mainImage__title {
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    font-size: 2.4rem;
    font-weight: 700;
}

.l-mainImage .l-mainImage__title::after {
    background-color: #111111;
    content: '';
    height: 1px;
    margin-left: 16px;
    width: 120px;
}

.l-mainImage .l-mainImage__bg.-company {
    background-image: url("../../assets/image/about-top-bg.jpg");
}

.l-mainImage .l-mainImage__bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    height: 80%;
    position: absolute;
    right: 0;
    width: 60vw;
    z-index: -1;
}

.l-mainImage .l-mainImage__en {
    bottom: -10%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.js-scroll__right.visible {
    -webkit-transform: translateX(0);
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.l-mainImage .l-mainImage__en--content {
    color: #b4c1ab;
    font-size: 10vw;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}


/* main-seciotn */

.p-company__philosophy {
    position: relative;
}

.p-company__philosophy::before {
    background-color: #b4c1ab;
    bottom: 0;
    content: '';
    height: 160px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.p-company .p-company__philosophy .p-company__philosophy--body {
    background-color: #fff;
    max-width: 90%;
    padding: 0 40px 80px;
    position: relative;
    z-index: 2;
}

.p-company .p-company__philosophy .p-company__philosophy--title .-en {
    font-size: 1.4rem;
}

.c-title__primary .-en {
    -webkit-box-align: center;
    align-items: center;
    color: #b4c1ab;
    display: -webkit-box;
    display: flex;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.c-title__primary .-en::after {
    background-color: #b4c1ab;
    content: '';
    height: 1px;
    margin-left: 12px;
    width: 32px;
}

.c-title__primary .ja {
    -webkit-box-align: center;
    align-items: center;
    color: black;
    display: -webkit-box;
    display: flex;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    line-height: 1.5;
}

.p-company__philosophy--lead {
    font-weight: 700;
    font-size: 0.9rem;
}

.p-company__philosophy--bg {
    background-image: url("../../assets/image/FIqTaF7K.jpeg");
    margin-left: auto;
    padding-top: 37.5%;
    position: relative;
    width: 56%;
}

.bg-image {
    width: 100%;
    z-index: 10;
}

.p-company__philosophy--bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}


/* plifile-section */

.p-company__profile {
    position: relative;
    background-color: #b4c1ab;
}

.p-company__philosophy::before {
    background-color: #b4c1ab;
    bottom: 0;
    content: '';
    height: 160px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.inner {
    padding: 100px 0 0;
}

.p-company__profile--wrapper {
    background-image: repeating-radial-gradient( circle at 0 0, transparent 0, #ffffff 20px), repeating-linear-gradient( #d4d4d4, #dbdbdb);
    padding: 100px 0 0;
    position: relative;
}

.c-title__primary .ja-2 {
    color: #111111;
    font-size: 2.4rem;
    margin-top: 4px;
    font-weight: 700;
}

.p-company__profile--list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.3rem;
}

.p-company__profile--list dt {
    -webkit-box-flex: 0;
    flex: 0 0 160px;
    font-weight: 700;
    max-width: 160px;
}

.p-company__profile--list dd {
    -webkit-box-flex: 1;
    flex-basis: calc(100% - 160px);
    flex-grow: 1;
    flex-shrink: 0;
    max-width: calc(100% - 160px);
    padding: 0 20px;
}

.p-company__profile--wrapper::after {
    background-color: #b4c1ab;
    content: '';
    height: 320px;
    position: absolute;
    right: 0;
    top: 0;
    width: 10%;
}

.p-company__profile--wrapper::after {
    background-color: #b4c1ab;
    content: '';
    height: 320px;
    position: absolute;
    right: 0;
    top: 0;
    width: 10%;
}

.map-contents {
    margin-bottom: 150px;
}

.map-contents iframe {
    width: 100%;
}

.p-company__address--item-header span {
    font-weight: 700;
}

.p-company__profile::before {
    background-color: #b4c1ab;
    bottom: 0;
    content: '';
    height: 160px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
}


/* p-company__reclutment */

.p-company__reclutment {
    position: relative;
    background-color: #b4c1ab;
}

.p-company__reclutment::before {
    background-color: #b4c1ab;
    top: 0;
    content: '';
    height: 160px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.p-company__reclutment--wrapper {
    background-image: repeating-radial-gradient( circle at 0 0, transparent 0, #ffffff 20px), repeating-linear-gradient( #d4d4d4, #dbdbdb);
    padding: 100px 0 100px 0;
    position: relative;
}


/* footer */

ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    background: #151414;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #b4c1ab;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #CF2E92;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #b4c1ab;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #ff5e14;
}

.footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #ff5e14;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #ff5e14;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

@media screen and (max-width: 768px) {
    .header-logo {
        width: 60%;
    }
    .humberger .menu ul li .number {
        display: inline-block;
        padding: 0 0 0 80px;
        overflow: hidden;
        display: none;
    }
    .humberger .showcase {
        background: #b4c1ab;
        flex: 1;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        display: none;
    }
    .header-nav-contents {
        display: flex;
        list-style: none;
        justify-content: flex-end;
        height: 100%;
        align-items: center;
        display: none;
    }
    .humberger .menu ul {
        width: 100%;
        padding: 80px 48px 24px 48px;
        list-style-type: none;
        max-height: 100%;
        overflow-y: auto;
        height: 100%;
        border-bottom: 3px solid black;
    }
    .humberger .menu ul li {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 20%;
        border-bottom: 3px solid black;
        font-weight: 800;
    }
    .humberger .menu ul li a {
        display: inline-block;
        font-size: 48px;
        color: #000;
        line-height: 1;
        padding: 24px 0 24px 80px;
        transition: transform 0.25s ease;
        text-decoration: none;
        font-family: 'Noto Serif JP', serif;
        font-weight: 700;
    }
    .toggle {
        position: absolute;
        margin: auto;
        width: 46px;
        height: 46px;
        right: 0%;
        top: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        cursor: pointer;
        left: 85%;
    }
    .l-mainImage .l-mainImage__body {
        padding: 140px 0;
    }
    .c-title__primary .ja {
        -webkit-box-align: center;
        align-items: center;
        color: black;
        display: -webkit-box;
        display: flex;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
        line-height: 1.5;
    }
    .p-company__philosophy--lead {
        font-weight: 700;
        font-size: 0.7rem;
    }
    .p-company__profile--list {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        font-size: 1.0rem;
    }
    dd {
        margin-bottom: 0.1rem;
        margin-left: 0;
    }
    .cta-text {
        padding-left: 35px;
    }
    .cta-text {
        padding-left: 30px;
    }
    .single-cta i {
        color: #b4c1ab;
        font-size: 25px;
        float: left;
    }
    .cta-text span {
        color: #757575;
        font-size: 15px;
    }
    .cta-text {
        padding-left: 15px;
        /* display: inline-block; */
    }
}

@media screen and (max-width: 430px) {
    .humberger .menu ul li a {
        display: inline-block;
        font-size: 28px;
        color: #000;
        line-height: 1;
        padding: 24px 0 24px 27px;
        transition: transform 0.25s ease;
        text-decoration: none;
        font-family: 'Noto Serif JP', serif;
        font-weight: 700;
    }
    .header-logo {
        width: 60%;
    }
    .l-mainImage .l-mainImage__body {
        padding: 150px 0;
    }
    .c-title__primary .ja {
        -webkit-box-align: center;
        align-items: center;
        color: black;
        display: -webkit-box;
        display: flex;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
        line-height: 1.5;
    }
    .p-company__philosophy::before {
        background-color: #b4c1ab;
        bottom: 0;
        content: '';
        height: 90px;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: 0;
    }
    .inner {
        padding: 35px 0 0;
    }
    .p-company__profile--wrapper::after {
        background-color: #b4c1ab;
        content: '';
        height: 120px;
        position: absolute;
        right: 0;
        top: 0;
        width: 10%;
    }
    .p-company__profile--body {
        margin-top: 75px;
    }
    .p-company__profile--list {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }
    .single-cta {
        margin-top: 50px;
    }
    .footer-widget-heading {
        margin-top: 50px;
    }
    .p-company__profile--list dd {
        -webkit-box-flex: 1;
        flex-basis: calc(100% - 160px);
        flex-grow: 1;
        flex-shrink: 0;
        max-width: calc(100% - 160px);
        padding: 0x;
        font-weight: 900;
    }
}

@media screen and (max-width: 390px) {
    .l-mainImage .l-mainImage__body {
        padding: 150px 0;
    }
    .c-title__primary .ja {
        -webkit-box-align: center;
        align-items: center;
        color: black;
        display: -webkit-box;
        display: flex;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
        line-height: 1.5;
    }
    .p-company__philosophy::before {
        background-color: #b4c1ab;
        bottom: 0;
        content: '';
        height: 90px;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: 0;
    }
    .inner {
        padding: 35px 0 0;
    }
    .p-company__profile--wrapper::after {
        background-color: #b4c1ab;
        content: '';
        height: 120px;
        position: absolute;
        right: 0;
        top: 0;
        width: 10%;
    }
    .p-company__profile--body {
        margin-top: 75px;
    }
    .p-company__profile--list {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }
    .single-cta {
        margin-top: 50px;
    }
    .footer-widget-heading {
        margin-top: 50px;
    }
}

@media screen and (max-width: 375px) {
    .l-mainImage .l-mainImage__body {
        padding: 150px 0;
    }
    .c-title__primary .ja {
        -webkit-box-align: center;
        align-items: center;
        color: black;
        display: -webkit-box;
        display: flex;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
        line-height: 1.5;
    }
    .p-company__philosophy::before {
        background-color: #b4c1ab;
        bottom: 0;
        content: '';
        height: 90px;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: 0;
    }
    .inner {
        padding: 35px 0 0;
    }
    .p-company__profile--wrapper::after {
        background-color: #b4c1ab;
        content: '';
        height: 120px;
        position: absolute;
        right: 0;
        top: 0;
        width: 10%;
    }
    .p-company__profile--body {
        margin-top: 75px;
    }
    .p-company__profile--list {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }
    .single-cta {
        margin-top: 50px;
    }
    .footer-widget-heading {
        margin-top: 50px;
    }
}

@media screen and (max-width: 320px) {
    .l-mainImage .l-mainImage__body {
        padding: 125px 0;
    }
    .c-title__primary .ja {
        -webkit-box-align: center;
        align-items: center;
        color: black;
        display: -webkit-box;
        display: flex;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
        line-height: 1.5;
    }
    .p-company__philosophy::before {
        background-color: #b4c1ab;
        bottom: 0;
        content: '';
        height: 90px;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: 0;
    }
    .inner {
        padding: 35px 0 0;
    }
    .p-company__profile--wrapper::after {
        background-color: #b4c1ab;
        content: '';
        height: 120px;
        position: absolute;
        right: 0;
        top: 0;
        width: 10%;
    }
    .p-company__profile--body {
        margin-top: 75px;
    }
    .p-company__profile--list {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }
    .single-cta {
        margin-top: 50px;
    }
    .footer-widget-heading {
        margin-top: 50px;
    }
    .p-company__profile--list dt {
        -webkit-box-flex: 0;
        flex: 0 0 160px;
        font-weight: 700;
        max-width: 60px;
    }
    .p-company__profile--list dd {
        -webkit-box-flex: 1;
        flex-basis: calc(100% - 160px);
        flex-grow: 1;
        flex-shrink: 0;
        max-width: calc(100% - 0px);
        padding: 0 20px;
    }
}