@charset "utf-8";

:root {
    /* ---------- カスタムカラープロパティ ---------- */
    --white-color: rgb(255 255 255 / 1.0);
    --white-transparency-color: rgb(255 255 255 / 80%);
    --text-color: rgb(92 78 65 / 1.0);
    --very-light-blue-color: rgb(240 250 250 / 1.0);
    --light-blue-color: rgb(182 208 233 / 1.0);
    --little-blue-color: rgb(0 113 188 / 1.0);
    --blue-color: rgb(0 60 136 / 1.0);

    /* スペースプロパティ */
    --space-xs: 0.8rem;
    --space-sm: 1.6rem;
    --space-md: 2.4rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
}

/* ======================
   共通
   ====================== */

html {
    /* --- テキスト --- */
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;

    --regular: 400;
    --semibold: 600;
    --bold: 700;
    --exbold: 900;

/*    font-size: 16px;*/
    font-size: 20px;
    scroll-behavior: smooth;
    background-color: var(--very-light-blue-color);
    color: var(--text-color);
}

a,
.button {
    transition: opacity 0.25s;
    text-decoration: none;
}

a:hover,
.button:hover {
    opacity: 0.4;
}

ul {
    margin:0;
    padding: 0;
}

ul li {
    list-style: none;
}

h2,
h3,
h4 {
    font-weight: normal;
}

p {
    margin-bottom: 1rem;
    font-weight: normal;
}

address {
    font-style: normal;
}
table {
    width: 100%;
}
th {
    background-color: var(--little-blue-color);
    color:var(--white-color);
    font-weight: normal;
}
td {
    background-color: var(--white-color);
}
th,
td {
    padding: var(--space-xs);
}

/* ======================
   スマホ（〜767px）
   ====================== */

/* 共通 */
.l-container {
    width: 80%;
    margin: 0 auto;
}
.button {
    display: flex;
    background-color: var(--blue-color);
    color: var(--white-color);
    font-weight: normal;
    justify-content: center;
    align-items: center;
    border-radius: 100rem;
    line-height: 0.1;
    margin: 0 auto;
    cursor: pointer;
    border: none;
    padding: 1.6rem 0.4rem;
}
.pager{
    display: flex;
    gap: var(--space-lg);
}
.pager a{
    width: stretch;
    width: -webkit-fill-availbale;
    width: -moz-available;
}
.pager__prev,
.pager__next{
    display: flex;
    background-color: var(--blue-color);
    color: var(--white-color);
    font-weight: normal;
    justify-content: center;
    align-items: center;
    border-radius: 100rem;
    border: 1px solid var(--blue-color);
    line-height: 0.1;
    margin: 0 auto;
    padding: 1.6rem 0.4rem;
}
.pager__prev{
    background-image: url('../img/prev.svg');
    background-repeat: no-repeat;
    background-position: left 0.6rem center;
    background-size: 1rem;
}
.pager__next{
    background-image: url('../img/next.svg');
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    background-size: 1rem;
}
.pager__prev.disable,
.pager__next.disable
{
    width: stretch;
    width: -webkit-fill-availbale;
    width: -moz-available;
    background-color: var(--white-color);
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.hero,
.news,
.news-archive,
.news-single,
.about,
.service,
.service-page,
.process,
.consultation,
.other, 
.inquiry,
.access-page,
table {
    margin:0 auto var(--space-md);
}
.news-card__date,
.news-card__title,
.about__text,
.service__text,
.service-page__text,
.process__heading,
.process__text,
.service__heading,
.service-page__heading,
.service-page__keywords,
.consultation__text,
.site-footer__address,
.site-footer__copyright {
    /* font-size: 0.75rem; */
    font-size: 1rem;
}
.news__title,
.news-archive__title,
.news-article__title,
.about__title,
.service__title,
.service-page__title,
.process__title,
.access-page__title,
.consultation__title,
.profile-page__title,
.inquiry__title {
    /* font-size: 0.75rem; */
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: var(--space-xs);
}
/* ---------- ヘッダー ---------- */
.site-header {
    background-color: var(--white-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: saturate(180%) blur(20px);
}

.site-header__inner {
    padding: 1rem 0;
}

.site-header__logo {
    display: block;
    background: url("../img/atom_logo.svg") no-repeat center / contain;
    height: 2rem;
    font-size: 0;
    margin: 0 auto 1rem;
}
/* ハンバーガーメニュー */
#hamburger {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    z-index: 1100;
}

#hamburger.active {
    display: flex;
}

#hamburger span {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--text-color);
    margin: 0.25rem;
    transition: 0.3s;
}

.global-nav__title {
    display: none;
}

/* 開いたとき */
#hamburger.is-active span:nth-child(1) {
    transform: translateY(12.5px) rotate(45deg);
}

#hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

#hamburger.is-active span:nth-child(3) {
    transform: translateY(-12.5px) rotate(-45deg);
}
.global-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 150dvh;
    background-color: var(--white-transparency-color);
    transform: translateY(100%);
    margin:0 auto;
}

.global-nav.is-open {
    transform: translateY(0);
}
.global-nav__list{
    width: 80%;
    margin: 0 auto;
    padding-top: var(--space-xl);
    font-size: 1.5rem;
}
.global-nav__item{
    margin-bottom: var(--space-sm);
    border-bottom:1px solid var(--text-color);
}
.global-nav__link{
    display: block;
}
.site-footer__nav-list {
    display: flex;
    justify-content: center;
    margin: 0;
}

.site-footer__nav-item {
    margin-right: 0.5rem;
}

.site-footer__nav-item:last-child {
    margin-right: 0;
}

.site-footer__nav-link {
    width: 4rem;
    font-size: 0.625rem;
    display: block;
    color: var(--white-color);
    background-color: var(--blue-color);
    border-radius: 1.25rem;
    padding: 0.5rem;
    text-align: center;
}


/* ---------- メインビジュアル ---------- */


.hero__inner {
    display: block;
    background: url("../img/hero_image_sp.png") no-repeat center / cover;
    height: 12.5rem;
}

.hero__title {
    position: absolute;
    width: fit-content;
    background-color: var(--white-transparency-color);
    left: 0;
    font-weight: bold;
    padding: 0.25rem 2rem;
    top: 11rem;
    font-size: 0.75rem;
}

.hero__subtitle {
    position: absolute;
    width: fit-content;
    background-color: var(--white-transparency-color);
    left: 0;
    font-weight: bold;
    padding: 0.25rem 1.5rem;
    font-size: 0.5rem;
    top: 13.5rem;
}

/* ---------- 新着情報 ---------- */
.news {
    position: relative;
}

.news__inner::before {
    content: "";
    display: block;
    position: absolute;
    top: -5.5rem;
    right: 0;
    width: 9rem;
    height: 11.5rem;
    transform: scaleX(-1);
    background-image: url("../img/news_image.svg");
    background-size: 3.75rem;
    background-repeat: no-repeat;
    background-position: 1rem;
}
.news__inner {
    padding: 1rem;
    border: 1px solid var(--text-color);
    border-radius: 2.5rem;
    background-color: #fff;
}
.news-archive__list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}
.news-archive__eye-catch{
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}
.news-archive__item{
    word-break: break-all;
    background-color: var(--white-color);
    border: 1px solid var(--text-color);
    border-radius: 1.5rem;
    overflow: hidden;
}
.news-archive-card__meta{
    margin:var(--space-xs);
}
/* ---------- AToMについて ---------- */
.about {
    background: url("../img/about_image_sp.png");
    background-position: right 0 top 1rem;
    background-repeat: no-repeat;
    background-color: var(--white-color);
    padding: 2rem 0;
}

.about__body {
    width: 100%;
    margin: 0 auto;
}

.about__title,
.service__title,
.service-page__title
 {
    display: flex;
    align-items: end;
    justify-content: center;
    line-height: 1;
}
.service-page__title{
    justify-content: left;
}
.about__title-image,
.service__title-image,
.service-page__title-image
 {
    display: inline-block;
    background: url("../img/atom_logo.svg") no-repeat right / contain;
    width: 6rem;
    height: 1.5rem;
    font-size: 0;
}

/* ---------- サービス ---------- */
.service {
    position: relative;
    overflow: visible;
    background-color: var(--white-color);
    padding: 2rem 0;
}

.service::before {
    content: "";
    position: absolute;
    top: -5rem;
    left: 1rem;
    width: 4rem;
    height: 6rem;
    background-image: url("../img/service_image.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}

.service__item {
    text-align: center;
    padding-left: 4rem;
    background-position: left;
    background-size: 4rem;
    background-repeat: no-repeat;
}

.service__item.service-design {
    background-image: url("../img/service-design-circle.png");
}

.service__item.service-marketing {
    background-image: url("../img/service-marketing-circle.png");
}

.service__item.service-backoffice {
    background-image: url("../img/service-backoffice-circle.png");
}

.service__item.service-foods {
    background-image: url("../img/service-foods-circle.png");
}

.service__heading {
    font-weight: bold;
    margin-bottom: 1rem;
}

.service__text {
    margin: 0 0 1.8rem 1rem;
}

/* ---------- ご利用の流れ ---------- */
.process__title {
    width: 100%;
    background-color: var(--blue-color);
    color: var(--white-color);
    text-align: center;
    padding: 1rem;
    font-size: 0.75rem;
    /* 下方向のMargin上書き */
    margin: 0 !important;
}

.process__list {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-inline-start: 0;
    list-style: none;
}

.process__item {
    background-repeat: no-repeat;
    background-position-x: 1.5rem;
    background-position-y: center;
    background-size: 3rem;
    padding-bottom: 1rem;
}

.process__item:nth-child(odd) {
    background-color: var(--white-color);
}

.process__item:nth-child(even) {
    background-color: var(--light-blue-color);
}

.process__item.process__item--step1 {
    background-image: url("../img/process01.svg");
}

.process__item.process__item--step2 {
    background-image: url("../img/process02.svg");
}

.process__item.process__item--step3 {
    background-image: url("../img/process03.svg");
}

.process__item.process__item--step4 {
    background-image: url("../img/process04.svg");
}

.process__item.process__item--step5 {
    background-image: url("../img/process05.svg");
}

.process__number {
    display: inline-block;
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 999px;
    padding: 0.125rem 1rem;
    font-size: 0.625rem;
    margin-right: 0.5rem;
}

.process__heading {
    font-weight: bold;
    padding: 1rem 1rem 0;
    margin-bottom: 0.25rem;
}

.process__text {
    margin: 0 0 0 5.5rem;
}

/* ---------- ご相談 ---------- */
.consultation {
    width: 100%;
    background-color: var(--white-color);
    text-align: center;
    padding: 2.5rem 0;
}
.consultation:after {
    content: "";
    background-image: url(../img/consultation.svg);
    background-repeat: no-repeat;
    background-position: left 1rem bottom 1rem;
    background-size: 4rem;
    width: 25%;
    display: block;
    height: 6rem;
    position: absolute;
}
.consultation__title {
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.consultation__actions{
    display: flex;
    margin: 0 auto;
    width: fit-content;
}

.consultation__tel{
    margin-right: 1rem;
}

/* ---------- other ---------- */
.other__item a{
    margin: 0 auto var(--space-md);
}
.other__item:last-child a{
    margin: 0 auto;
}

.other__item .other__link {
    display: block;
    background-image: url("../img/other01.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20rem;
    height: 6.25rem;
    font-size: 0;
}

.other__item:nth-child(2) .other__link {
    background-image: url("../img/other02.png");
}

.other__item:nth-child(3) .other__link {
    background-image: url("../img/other03.png");
}

/* ---------- inquiry ---------- */

.inquiry-form {
    width: 100%;
}

.inquiry-form__list {
    display: grid;
    grid-template-columns: 7rem 1fr;
    column-gap: 2rem;
    row-gap: 1.5rem;
    margin-bottom: var(--space-sm);
}

.inquiry-form__label {
    display: flex;
    align-items: center;
}
.inquiry-form__label,
.inquiry-form__field{
    margin-bottom: var(--space-md);
}

.inquiry-form__label--textarea {
    align-items: flex-start;
/*    padding-top: 0.6rem;*/
}
.inquiry-form__field input,
.inquiry-form__field textarea {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem 0.6rem;
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    box-sizing: border-box;
}

.inquiry-form__field input:focus,
.inquiry-form__field textarea:focus {
    outline: none;
    border-bottom: 2px solid #666;
}

.inquiry-form__field textarea {
    min-height: 10rem;
    resize: vertical;
}
.inquiry-form__field {
    position: relative;
}

.inquiry-form__error {
    display: none;
    margin-top: 0.4rem;
    color: var(--dark-blue-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.inquiry-form__error.is-visible {
    display: block;
}

.inquiry-form__field input.is-error,
.inquiry-form__field textarea.is-error {
    border-color: var(--dark-blue-color);
}
.inquiry-form__field {
    position: relative;
}

.inquiry-form__error {
    display: none;
    margin-top: 0.4rem;
    color: #d33;
    font-size: 0.95rem;
    line-height: 1.4;
}

.inquiry-form__error.is-visible {
    display: block;
}

.inquiry-form__error--common {
    margin-bottom: 1.5rem;
}

.inquiry-form__field input.is-error,
.inquiry-form__field textarea.is-error {
    border-bottom: 1px solid #d33;
}

.inquiry-confirm {
    max-width: 800px;
    margin: 0 auto;
}

.inquiry-confirm__title {
    margin-bottom: 2rem;
    text-align: center;
}

.inquiry-confirm__list {
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 2rem;
    row-gap: 1.5rem;
}

.inquiry-confirm__label {
    font-weight: 500;
}

.inquiry-confirm__value {
    white-space: pre-wrap;
    word-break: break-word;
}

.inquiry-confirm__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.inquiry-thanks {
    text-align: center;
    padding: 3rem 0;
}
input::placeholder {
  color: #bbb;
}
textarea::placeholder {
  color: #bbb;
}
/* ---------- 事業内容 ---------- */
.service-page__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-page__item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
    background-color: var(--little-blue-color);
    border: 1px solid var(--text-color);
    border-radius: 2rem;
    color: var(--white-color);
    overflow: hidden;
}

.service-page__image {
    flex-shrink: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 6.25rem;
    min-height: 6.25rem;
}

.service-page__info {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-page__item.service-page-design .service-page__image {
    background-image: url("../img/service-design.png");
}

.service-page__item.service-page-marketing .service-page__image {
    background-image: url("../img/service-marketing.png");
}

.service-page__item.service-page-backoffice .service-page__image {
    background-image: url("../img/service-backoffice.png");
}

.service-page__item.service-page-foods .service-page__image {
    background-image: url("../img/service-foods.png");
}

.service-page__heading {
    margin: 0;
}

.service-page__keywords {
    display: block;
    margin: var(--space-xs) 0;
    border-top: 1px solid var(--white-color);
    border-bottom: 1px solid var(--white-color);
}

.service-page__text {
    margin: 0;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ---------- フッター ---------- */
.site-footer {
    width: 100%;
    background-color: var(--white-color);
    padding: 3rem 0 1rem;
    text-align: center;
}

.site-footer__title {
    display: block;
    background: url("../img/atom_logo.svg") no-repeat center / contain;
    height: 2rem;
    font-size: 0;
    margin:0 auto 1rem;
}

.site-footer__address {
    margin-bottom: 1rem;
}

.site-footer__copyright {
    margin-top: 1rem;
}
/* アクセス */
.access__map{
    width: 100%;
    height: 100%;
    margin-bottom: var(--space-md);
}
.access__map--wrap{
    width: 100%;
    aspect-ratio: 1 / 1;
}
.access-page__info dt{
    font-size: 1.5rem;
    border-bottom:1px solid var(--text-color);
    margin-bottom: var(--space-xs);
}
.access-page__info dd{
    margin-bottom: var(--space-sm);
}

/* 会社概要 */
.profile-page__info {
    border-top: 1px solid var(--text-color);
    border-collapse: collapse;
}
.profile-page__info th,
.profile-page__info td {
    font-size:0.875rem;
    border-bottom: 1px solid var(--text-color);
}

/* ======================
   タブレット（768〜1279px）
   ====================== */

@media (min-width: 768px) {
    .button {
        padding: 1.6rem;
    }
    .hero,
    .news,
    .news-archive,
    .news-single,
    .about,
    .service,
    .service-page,
    .process,
    .consultation,
    .other, 
    .inquiry,
    .access-page,
    table {
        margin-bottom: var(--space-lg);
    }

    .news-card__date,
    .news-card__title,
    .about__text,
    .service__text,
    .service-page__text,
    .process__heading,
    .process__text,
    .service__heading,
    .service-page__heading,
    .service-page__keywords,
    .consultation__text,
    .site-footer__address,
    .site-footer__copyright {
        font-size: 1.0rem;    
    }
    .news__title,
    .news-archive__title,
    .news-article__title,
    .about__title,
    .service__title,
    .service-page__title,
    .process__title,
    .access-page__title,
    .consultation__title,
    .profile-page__title,
    .inquiry__title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: var(--space-xs);
    }
    #hamburger {
        display: none;
    }
    .global-nav {
        position: static;
        transform: none;
        height: auto;
        width: auto;
        background: transparent;
        margin: 0;
        padding: 0;
        border: none;
    }
    .site-footer__nav-list {
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .global-nav__item{
        margin-right: 0.5rem;
    }

    .global-nav__item:last-child{
        margin-right: 0;
    }
    .global-nav__list{
        padding: 0;
        width: auto;
    }
    .global-nav__link{
        width: 4rem;
        font-size: 0.625rem;
        display: block;
        color: var(--white-color);
        background-color: var(--blue-color);
        border-radius: 1.25rem;
        padding: 0.5rem;
        text-align: center;
    }
    .global-nav__item{
        margin-bottom: 0;
        border-bottom: none;
    }
    .site-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .global-nav__list,
    .site-footer__nav-list {
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .global-nav__item,
    .site-footer__nav-item {
        margin-right: 0.5rem;
    }

    .global-nav__item:last-child,
    .site-footer__nav-item:last-child {
        margin-right: 0;
    }

    .global-nav__link,
    .site-footer__nav-link {
        width: 5rem;
        font-size: 0.875rem;
        display: block;
        color: var(--white-color);
        background-color: var(--blue-color);
        border-radius: 1.25rem;
        padding: 0.5rem;
        text-align: center;
    }

    .news__inner::before {
        top: -5rem;
        right: 4rem;
        background-size: 5.75rem;
    }
    .site-header__logo {
        width: 7rem;
        height: 2.25rem;
        margin: 0;
    }

    .hero__inner {
        background-image: url("../img/hero_image_pc.png");
        height: 25rem;
    }

    .hero__title {
        top: 18.25rem;
        font-size:1.75rem;
    }

    .hero__subtitle {
        top: 22rem;
        font-size:1rem;
    }
    .news-archive__list{
        grid-template-columns: repeat(2, 1fr);
    }
    .about {
        background-position: right 1.5rem top 1.5rem;
    }
    .about__text {
        font-size: 1rem;
    }
    .about__title-image,
    .service__title-image,
    .service-page__title-image
    {
        width: 8rem;
        height: 2.5rem;
    }

    .service::before {
        top: -5rem;
        left: 1rem;
        width: 4rem;
        height: 6rem;
    }


    .service__list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-xs);
    }

    .service__item {
        background-position: center top;
        background-size: 5rem;
        padding: 6rem 0 0;
    }

    .service__text {
        margin-bottom: 0;
    }

    .process__heading {
        padding: 1rem 0 0 6rem;
    }
    .process__text{
        margin-right:2rem;
    }
    .consultation:after {
        background-position: left 1rem bottom 0rem;
        background-size: 5rem;
        height: 6rem;
    }
    .profile-page__info th,
    .profile-page__info td{
        font-size: 1.5rem;
    }
    .inquiry-confirm__list {
        grid-template-columns: 1fr;
    }

    .inquiry-confirm__actions {
        flex-direction: column;
    }
    .access-page__small-inner{
        display: flex;
        gap: var(--space-sm);
    }

        /* ---------- 事業内容 ---------- */
    .service-page__item {
        border-radius: 10rem;
    }

}

/* ======================
   PC（1280px以上）
   ====================== */

@media (min-width: 1280px) {
    th,
    td {
        padding: var(--space-sm);
    }
    .hero,
    .news,
    .news-archive,
    .news-single,
    .about,
    .service,
    .process,
    .consultation,
    .other, 
    .inquiry,
    .access-page,
    table {
        margin-bottom: var(--space-xl);
    }
    .news-archive__title,
    .news-article__title,
    .service-page__title,
    .access-page__title,
    .profile-page__title {
        font-size: 3rem;
        margin-bottom: var(--space-md);
    }
    .news-card__date,
    .news-card__title,
    .about__text,
    .service__text,
    .service-page__text,
    .process__heading,
    .process__text,
    .service__heading,
    .service-page__heading,
    .service-page__keywords,
    .consultation__text,
    .site-footer__address,
    .site-footer__copyright {
        font-size: 1.5rem;    
    }
    .news__title,
    .news-archive__title,
    .news-article__title,
    .about__title,
    .service__title,
    .service-page__title,
    .process__title,
    .access-page__title,
    .consultation__title,
    .profile-page__title,
    .inquiry__title {
        font-size: 2.0rem;
        font-weight: bold;
        margin-bottom: var(--space-sm);
    }


    .site-header__logo {
        width: 12.75rem;
        height: 4rem;
        margin: 0;
    }

    .global-nav__link,
    .site-footer__nav-link {
        font-size: 1rem;
        width: 6rem;
    }

    .hero__inner {
        background-image: url("../img/hero_image_pc.png");
        height: 37.5rem;
    }

    .hero__title {
        font-size: 3rem;
        top: 24rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
        top: 32rem;
    }
    .about,
    .service,
    .consultation {
        padding: 4rem 0;
    }

    .about,
    .process {
        margin-bottom: 8rem;
    }

    .about__title-image,
    .service__title-image,
    .service-page__title-image
    {
        width: 12.75rem;
        height: 4rem;
    }


    .about__title,
    .service__title{
        margin-bottom:var(--space-lg);
    }
    .about{
        background-size: 12rem;
        background-position: right 2.5rem top 2.5rem;
    }
    .news__inner::before {
        top: -5rem;
        right: 7rem;
        background-size: 7.75rem;
    }
    .service__item {
        background-position: center top;
        background-size: 12.625rem;
        padding: 16rem 0 0;
    }
    .news-archive__list{
        grid-template-columns: repeat(3, 1fr);
    }
    .process__heading {
        padding: 1rem 0 0 8.5rem;
    }

    .process__number {
        font-size: 1rem;
    }

    .process__text {
        margin-left: 9rem;
        font-size: 1.5rem;
        width: 85%;
    }

    .process__item {
        background-position-x: 1.75rem;
        background-position-y: center;
        background-size: 4rem;
    }
    .consultation:after {
        background-position: left 3rem bottom 6rem;
        background-size: 7rem;
        height: 15rem;
    }

    .consultation__title {
        margin-bottom: 2rem;
    }

    .consultation__text {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .consultation__tel {
        margin-right: 2rem;
    }
    .other__item a {
        margin: 0 auto var(--space-lg);
    }
    .other__item .other__link {
        width: 40rem;
        height: 12.5rem;
    }
    .site-footer__address,
    .site-footer__copyright {
        font-size: 1rem;
    }
    th,
    td{
        font-size:1.25rem;
    }
}