@media screen and (max-width: 767px) {

    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html,
    body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
        font-family: 'Noto Sans JP', sans-serif;
    }

    .header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        padding: 0 4px 0 0;
        width: 100%;
        height: auto;
        background-color: #fff;
        box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    }

    .header__inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        padding: 24px 0 24px 24px;
        width: calc(100% - 64px);
        height: auto;
    }

    .header__logo {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 8px;
        text-decoration: none;
    }

    .header__logo img {
        height: 36px;
    }

    .header__logo-txt {
        display: grid;
        gap: 8px;
    }

    .header__logo-txt h1 {
        letter-spacing: .8px;
        line-height: 16px;
        font-size: 16px;
        font-weight: 700;
        color: #333;
    }

    .header__logo-txt span {
        letter-spacing: .6px;
        line-height: 12px;
        font-size: 12px;
        font-weight: 500;
        color: #333;
    }

    .header__cta {
        display: none;
    }

    .header__nav {
        display: none;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        position: absolute;
        z-index: 1;
        top: 84px;
        left: 0;
        width: 100%;
        height: auto;
        box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    }

    .header__nav a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 16px;
        width: 100%;
        height: auto;
        text-decoration: none;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        background-color: #fff;
        border-top: 1px solid lightgray;
    }

    .header__menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 70px;
        height: 70px;
    }

    .header__menuInner {
        position: relative;
        width: 40px;
        height: 40px;
        background: url('../img/menu.svg') no-repeat 0 0;
        background-size: 80px 40px;
    }

    .header__menuInner.open {
        background-position: -40px 0;
    }

    .main {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        margin: 84px 0 0;
        width: 100%;
        height: auto;
    }

    .hero {
        margin: 0 0 48px;
        width: 100%;
        height: auto;
    }

    .hero img {
        display: block;
        width: 100%;
        height: auto;
    }

    .feature {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 48px;
        margin: 0 0 96px;
        width: 100%;
        height: auto;
    }

    .featureItem {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 24px;
        width: calc(100% - 48px);
        height: auto;
    }

    .featureItem__desc {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 24px;
        width: 100%;
        height: auto;
    }

    .featureItem__desc-ttl {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .featureItem__desc-txt {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .featureItem__img {
        display: block;
        aspect-ratio: 16/9;
        width: 100%;
        height: auto;
        background-color: rgba(128,128,128,0.5);
    }
    
    .featureItem:last-child {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .serviceSec {
        margin: 0 0 96px;
        width: calc(100% - 48px);
        height: auto;
    }

    .serviceSec__ttl {
        width: fit-content;
        height: auto;
    }

    .serviceSec__ttl h2 {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .serviceSec__ttl span {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #00aceb;
    }

    .serviceSec__items {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        gap: 48px;
        margin: 48px 0 0;
        width: 100%;
        height: auto;
    }

    .serviceSec__item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        gap: 24px;
        width: 100%;
        height: auto;
    }

    .serviceSec__item-img {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        aspect-ratio: 16/9;
        width: 100%;
        height: auto;
    }

    .serviceSec__item-img img {
        position: relative;
        width: 100%;
        height: auto;
    }


    .serviceSec__item-ttl {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .serviceSec__item-txt {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .area {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 48px;
        margin: 0 0 96px;
        width: calc(100% - 48px);
        height: auto;
    }

    .area__ttl {
        width: fit-content;
        height: auto;
    }

    .area__ttl h2 {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .area__ttl span {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #00aceb;
    }

    .area__items {
        list-style: none;
    }

    /* 6.29 */

    .fullWrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        margin: 0 0 96px;
        width: 100%;
        height: auto;
    }

    .fullWrap__item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        aspect-ratio: 2/1;
        width: 100%;
        height: auto;
        text-decoration: none;
    }

    .fullWrap__item-img {
        position: absolute;
        top: 0;
        left: 0;
        aspect-ratio: 2/1;
        width: 100%;
        height: auto;
    }

    .fullWrap__item-ttl {
        display: grid;
        position: relative;
        gap: 8px;
        text-align: center;
    }

    .fullWrap__item-ttl h2 {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #fff;
    }

    .fullWrap__item-ttl span {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
    }

    .halfWrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        width: calc(100% - 48px);
        height: auto;
    }

    .newsSec {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 48px;
        margin: 0 0 96px;
        width: 100%;
        height: auto;
    }

    .newsSec__ttl {
        display: grid;
        gap: 8px;
    }

    .newsSec__ttl h2 {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .newsSec__ttl span {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #00aceb;
    }

    .newsSec__items {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        width: 100%;
        height: auto;
    }

    .newsSec__item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 16px;
        padding: 32px 0;
        width: 100%;
        height: auto;
        border-bottom: 1px solid #333;
    }

    .newsSec__item:first-child {
        padding: 0 0 32px;
    }

    .newsSec__item:nth-child(5) {
        padding: 32px 0 0;
        border: none;
    }

    .newsSec__item-date {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .newsSec__item-ttl {
        text-decoration: none;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .newsSec__link {
        width: 100%;
        height: auto;
        text-align: end;
    }

    .newsSec__link a {
        text-decoration: none;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .worksSec {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 48px;
        margin: 0 0 96px;
        width: 100%;
        height: auto;
    }

    .worksSec__ttl {
        display: grid;
        gap: 8px;
    }

    .worksSec__ttl h2 {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .worksSec__ttl span {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #00aceb;
    }

    .worksSec__items {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 16px;
        width: 100%;
        height: auto;
    }

    .worksSec__item {
        aspect-ratio: 1/1;
        width: calc(50% - 8px);
        height: auto;
    }

    .worksSec__item-img {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        aspect-ratio: 1/1;
        width: 100%;
        height: auto;
    }

    .worksSec__item-img img {
        width: auto;
        height: 100%;
    }

    .worksSec__link {
        width: 100%;
        height: auto;
        text-align: end;
    }

    .worksSec__link a {
        text-decoration: none;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    /* breadcrumbs */

    .breadcrumbs__wrap {
        padding: 24px;
        width: 100%;
        height: auto;
    }

    #breadcrumbs,
    #breadcrumbs a {
        text-decoration: none;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    /* news page */

    .news {
        position: relative;
        max-width: 100%;
        width: calc(100% - 48px);
        height: auto;
    }

    .news__items {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        margin: 0 0 48px;
        width: 100%;
        height: auto;
    }

    .news__item {
        display: flex;
        gap: 16px;
        padding: 0 0 32px;
        width: 100%;
        height: auto;
        border-bottom: 1px solid #333;
        list-style: none;
    }

    .news__item-date {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .news__item-ttl {
        text-decoration: none;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    /* news page (single) */

    .article {
        margin: 0 0 48px;
        max-width: 100%;
        width: calc(100% - 48px);
        height: auto;
    }

    .article-title {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .article-tags {
        display: flex;
        gap: 16px;
    }

    .article-category {
        display: flex;
    }

    .post-categories > li {
        list-style: none;
    }

    .article-content {
        margin: 32px 0 0;
        width: 100%;
        height: auto;
    }

    /* company page */

    .company__items {
        position: relative;
        margin: 0 0 48px;
        padding: 24px 24px;
        width: calc(100% - 48px);
        height: auto;
        border: 1px solid #333;
    }

    .company__item {
        list-style: none;
        margin: 0 0 24px;
        padding: 0 0 24px;
        border-bottom: 1px solid #333;
    }

    .company__item:last-child {
        margin: 0;
        padding: 0;
        border: none;
    }

    .company__item-ttl {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 700;
        color: #333;
    }

    .company__item-txt {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    /* service page */

        .service {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        margin: 48px 0 128px;
        max-width: 767px;
        width: calc(100% - 48px);
        height: auto;
    }

    .serviceItems {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 96px;
        width: 100%;
        height: auto;
    }

    .serviceItem {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        list-style: none;
        gap: 24px;
        width: 100%;
        height: auto;
    }

    .serviceItem-02,
    .serviceItem-04 {
        flex-direction: column-reverse;
    }

    .serviceItem__desc {
        display: grid;
        gap: 32px;
        width: 100%;
        height: auto;
    }

    .serviceItem__desc-ttl {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .serviceItem__desc-txt {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .serviceItem__img {
        width: 100%;
        height: auto;
    }

    /* works page */
    .works {
        position: relative;
        margin: 0 0 48px;
        max-width: 100%;
        width: calc(100% - 48px);
        height: auto;
    }

    .works__items {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 32px;
        width: 100%;
        height: auto;
    }

    .works__item {
        width: 100%;
        height: auto;
        list-style: none;
    }

    .works__item-link {
        width: 100%;
        height: auto;
        text-decoration: none;
    }

    .works__item-img {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        aspect-ratio: 16/9;
        width: 100%;
        height: auto;
    }

    .works__item-img img {
        width: 100%;
        height: auto;
    }

    .works__item-ttl {
        margin: 16px 0 0;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    /* works page (single) */
    .worksPost {
        position: relative;
        margin: 0 0 48px;
        max-width: 100%;
        width: calc(100% - 48px);
        height: auto;
    }

    .worksPost__title {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .worksPost__content {
        margin: 24px 0 0;
    }

    /* contact page */

    .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 32px;
        margin: 24px 0 48px;
        max-width: 100%;
        width: calc(100% - 64px);
        height: auto;
    }

    .contact__head {
        display: grid;
        gap: 24px;
        width: 100%;
        height: auto;
    }

    .contact__ttl {
        text-align: center;
    }

    .contact__ttl h2 {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .contact__ttl span {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #00aceb;
    }

    .contact__desc {
        text-align: center;
    }

    .contact__desc p {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    /* contact form */

    .mw_wp_form {
        position: relative;
        width: 100%;
        height: auto;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 32px;
        width: 100%;
        height: auto;
    }

    .c-form {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
    }

    .c-form tbody {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 32px;
        width: 100%;
        height: auto;
    }

    .c-form tr {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 32px;
        padding: 32px;
        width: 100%;
        height: auto;
        border: 1px solid #333;
    }

    .c-form td {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 32px;
    }

    .c-form td input {
        -webkit-appearance: none;
        width: 100%;
        height: auto;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        border: none;
        border-bottom: 1px solid #333;
        outline: none;
    }

    .c-form td input:focus {
        outline: none;
    }

    .c-notice p {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .error,
    .required {
        letter-spacing: .8px;
        line-height: 1.7px;
        font-size: 16px;
        font-weight: 500;
        color: #ff0000;
    }

    .submit-btn input {
        -webkit-appearance: none;
        position: relative;
        padding: 16px 32px;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        background-color: #00aceb;
        border: none;
        cursor: pointer;
        transition: all .5s ease;
    }

    .submit-btn input:hover {
        opacity: .5;
    }

    /* campaign */
    .cp {
        margin: 0 0 48px;
        max-width: 100%;
        width: calc(100% - 48px);
        height: auto;
    }

    .cp-img {
        width: 100%;
        height: auto;
    }

    .cp__block {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 32px;
        margin: 64px 0 0;
        width: 100%;
        height: auto;
    }

    .cp-heading {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .cp__block-txt p {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .cp__items {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
        gap: 32px;
    }

    .cp__item-ttl p {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .cp__item-price {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

    .cp__item-price p {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 700;
        color: #00aceb;
    }

    .cp__cta {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        gap: 32px;
        width: 100%;
        height: auto;
    }

    .cp__tel,
    .cp__mail {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        padding: 32px 32px;
        width: 100%;
        height: auto;
        background-color: #f7f7f7;
        border-radius: 16px;
    }

    .cp__tel-ttl,
    .cp__mail-ttl {
        letter-spacing: 1.2px;
        line-height: 1.7;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .cp__tel-txt,
    .cp__mail-txt {
        text-align: center;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }
    
    .cp__tel-btn,
    .cp__mail-btn {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 8px;
        padding: 12px 36px;
        text-decoration: none;
        letter-spacing: 1px;
        line-height: 1.7;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        background-color: #00aceb;
        border-radius: 48px;
    }

    /* privacy policy */
    /* specified commercial transactions */

    .rule__items {
        position: relative;
        margin: 0 0 48px;
        padding: 24px 24px;
        width: calc(100% - 48px);
        height: auto;
        border: 1px solid #333;
    }

    .rule__item {
        list-style: none;
        margin: 0 0 24px;
        padding: 0 0 24px;
        border-bottom: 1px solid #333;
    }

    .rule__item:last-child {
        margin: 0;
        padding: 0;
        border: none;
    }

    .rule__item-ttl {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 700;
        color: #333;
    }

    .rule__item-txt p {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    /* footer */

    .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 48px;
        padding: 48px;
        width: 100%;
        height: auto;
        background-color: #00aceb;
    }

    .footer__inner {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        gap: 48px;
        width: 100%;
        height: auto;
    }

    .footerLogo__wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 16px;
        width: fit-content;
        height: auto;
    }

    .footerLogo {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        gap: 16px;
        width: fit-content;
        height: auto;
    }

    .footerLogo-img {
        height: 36px;
    }

    .footerLogo-ttl {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
    }

    .footerLogo__txt {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 16px;
        width: fit-content;
        height: auto;
    }

    .footerLogo__txt p {
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
    }

    .footer__nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        gap: 16px;
        width: fit-content;
        height: auto;
    }

    .footer__nav a {
        text-decoration: none;
        letter-spacing: .8px;
        line-height: 1.7;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
    }

    small {
        letter-spacing: .6px;
        line-height: 1.7;
        font-size: 12px;
        font-weight: 500;
        color: #fff;
    }
}