@charset "UTF-8";
/* CSS Document */

html {
    font-size: 62.5%;
    font-size: 10px;
    scroll-behavior: smooth;
}

html.is-fixed {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: 0;
    color: var(--text-color);
    font-size: 0;
    background-color: #FFF;
}

/* align */
.flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

/**************************************************
 common
**************************************************/

ul li {
    /*margin: 0 0 0 20px;*/
    /*list-style: disc;*/
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
    outline: none;
    font-weight: 400;
}

a:hover {
    color: #000;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --main-color: #2e926e;
    --sub-color: #a7c964;
    --text-color: #222222;
    --base-color: #e9f2ef;
    --btn-color: #e37c21;
    --max: 120rem;
    --font-bold: 700;
}

h1 {
    width: 45rem;
    font-size: 2.6rem;
    align-items: end;
    font-weight: bold;
    color: var(--main-color);
}

h1 a,
h1 a:hover {
    color: var(--main-color);
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    h1 {
        width: 16rem;
        font-size: 1.8rem;
        align-items: end;
        font-weight: bold;
        line-height: 1.2;
        margin-inline-start: 1rem;
    }
}


h2 {
    position: relative;
    font-size: 3.2rem;
    letter-spacing: 0.1rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 2.4rem;
        letter-spacing: 0.1rem;
    }
}

p {
    font-size: 1.6rem;
    text-align: justify;
    padding-block-start: 0;
    line-height: 1.7;
    font-weight: normal;
}

@media screen and (max-width: 767px) {
    p {
        width: 90%;
        font-size: 1.5rem;
        padding-block-start: 0;
        margin-inline: auto;
    }
}


.br-sp {
    display: none;
}

@media screen and (max-width: 1080px) {
    .br-pc {
        display: none;
    }

    .br-sp {
        display: inline-block;
    }
}

.form-btn {
    display: flex;
    align-items: center;
    border-radius: 28px;
    background-color: #e37c21;
    var(--text-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.8rem;
    height: 56px;
    margin-inline: 0rem;
    justify-content: center;
    position: absolute;
    width: 400px;
    bottom: 15px;
    left: 15px;
    box-shadow: 0 4px #c26218;
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
}

.form-btn:hover {
    transform: translateY(2px);
    /* ボタンが少し沈む */
    box-shadow: 0 2px #c26218;
    /* 影も小さく */
    opacity: 0.9;
    /* 元のホバー効果も残す */
    color: #ffffff;
}


.form-btn span {
    display: block;
    text-align: center;
    line-height: 56px;
}


.form-btn::before {
    content: '';
    width: 18px;
    height: 14px;
    background: url(../images/icon-mail.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    left: 24%;
    transform: translateY(-50%);
}


.form-btn::after {
    content: '';
    width: 8px;
    height: 14px;
    background: url(../images/icon-arrow.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .form-btn {
        display: flex;
        align-items: center;
        border-radius: 24px;
        background-color: #e37c21;
        color: #ffffff;
        font-weight: 600;
        font-size: 1.6rem;
        height: 48px;
        margin-inline: 0rem;
        justify-content: center;
        position: absolute;
        width: 90%;
        bottom: 0;
        margin-block-end: -6rem;
    }

    .form-btn::before {
        content: '';
        width: 18px;
        height: 14px;
        background: url(../images/icon-mail.svg) no-repeat center center;
        position: absolute;
        top: 50%;
        left: 20%;
        transform: translateY(-50%);
    }


    .form-btn::after {
        content: '';
        width: 8px;
        height: 14px;
        background: url(../images/icon-arrow.svg) no-repeat center center;
        position: absolute;
        top: 50%;
        right: 6%;
        transform: translateY(-50%);
    }
}



/**************************************************
 header
**************************************************/

header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    align-items: center;
    padding-inline: 3rem;
    z-index: 1000;
    background-color: #fff;
    box-sizing: border-box;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

#subNavi {
    width: calc(100% - 5rem);
}

#subNavi ul {
    display: flex;
    justify-content: flex-end;
}

#subNavi ul li {
    margin-inline-end: 2.4rem;
}

#subNavi ul li:last-of-type {
    margin-inline-end: 0;
}

#subNavi ul li a {
    font-size: 1.6rem;
    padding-block: 2.2rem;
    display: block;
    color: var(--nav-color);
    font-weight: 700;
}

#subNavi ul li.cur a {
    position: relative;
    pointer-events: none;
    color: var(--main-color);
}

#subNavi ul li.cur a::before {
    content: '';
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -1.1rem;

}

#subNavi ul li a:first-of-type svg {
    margin-inline-start: 0.8rem;
}

#subNavi ul li a:hover {
    color: var(--main-color);
}

#subNavi ul li a:hover svg path {
    fill: #2e926e;
}

#globalNavi {
    display: block;
    position: fixed;
    top: 0;
    height: 100%;
    width: 80%;
    max-width: 400px;
    right: 0;
    background-color: #FFF;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: .4s ease-in-out;
    overflow-y: auto;
}

#globalNavi.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


.g_naviInner {
    width: 100%;
    height: 100%;
}


/******header************/
@media screen and (max-width: 1080px) {
    header {
        height: 6rem;
        padding-inline: 1rem;
        padding-block-start: 0rem;
        box-sizing: border-box;
    }

    .g_naviInner {
        height: auto;
    }

    #subNavi,
    .h_left {
        display: none;
    }


    #globalNavi.active {
        opacity: 1;
        visibility: visible;
    }

    .g_navi {
        width: 100%;
        padding-inline: 1.6rem;
        margin-block-start: 10rem;
    }

    .g_navi ul {
        width: 100%;
        padding: 0;
    }

    .g_navi ul li {
        margin-block-start: 2.4rem;
        width: 100%
    }

    .g_navi ul li a {
        font-size: 1.8rem;
        font-weight: var(--font-bold);
        display: block;
        text-align: center;
        line-height: 3;
    }

    .g_navi ul li a:hover {
        color: var(--text-color);
    }
}

/**************************************************
 menu
**************************************************/
#menu {
    display: none;
}

@media screen and (max-width: 1080px) {
    #menu {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        width: 6rem;
        height: 6rem;
        text-align: center;
        z-index: 9998;
        background-color: var(--main-color);
        transition: .3s;
        opacity: 1;
        visibility: visible;
        cursor: pointer;
        pointer-events: auto;
        flex-direction: column;
        align-items: center;
    }

    .menu-label {
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        margin-top: 3rem;
    }

    #menu:hover,
    #menu.active {
        background-color: var(--main-color);
    }

    #menu.close {
        opacity: 0;
        visibility: hidden;
        transition: .4s ease-in-out;
        pointer-events: none;
    }

    .menu-btn,
    .menu-btn span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    /* ハンバーガーボタン変形 */
    .menu-btn {
        position: relative;
        width: 3rem;
        height: 0.9rem;
        cursor: pointer;
        margin-inline: auto;
    }

    .menu-btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        transition: all .4s;
    }

    .menu-btn span:nth-of-type(1) {
        top: 1.6rem;
    }

    .menu-btn span:nth-of-type(2) {
        top: 2.4rem;
    }

    .menu-btn span:nth-of-type(3) {
        top: 3.2rem;
    }

    #menu.active .menu-btn span:nth-of-type(1) {
        transform: translateY(0.4rem) rotate(-45deg);
    }

    #menu.active .menu-btn span:nth-of-type(2) {
        transform: translateY(-0.4rem) rotate(45deg);
    }

    #menu.active .menu-btn span:nth-of-type(3) {
        display: none;
    }
}


/**************************************************
 mainVisual
**************************************************/
.mainVisual {
    position: relative;
    width: 100%;
    height: 60rem;
    background: url(../images/manvisual.jpg) no-repeat center center / cover;
    object-fit: cover;
    margin: 0 auto;
}

.mainVisual .main_inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .mainVisual .main_inner {
        width: 84%;
        height: auto;
        overflow: initial;
    }
}

/**************************************************
 intro_inner
**************************************************/
.intro {
    margin-block: 8rem;
}

.intro__title {
    margin-block-end: 2rem;
    color: var(--main-color);
}

.intro__inner {
    max-width: 80rem;
    margin-inline: auto;
}

.intro__wrap {
    display: flex;
    align-items: center;
}

.intro__text {
    width: 60%;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 2;
    padding-inline-end: 4rem;
    box-sizing: border-box;
}

.intro__img {
    width: 40%;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
.intro {
    margin-block: 6rem;
}
    .intro__wrap {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .intro__text {
        width: 90%;
        font-size: 1.6rem;
        font-weight: normal;
        line-height: 2;
        padding-inline-end: 0;
    }

    .intro__img {
        width: 86%;
        box-sizing: border-box;
        margin-block-start: 3rem;
    }
}

/**************************************************
 .features
**************************************************/

.features {
    background: var(--main-color);
    padding-block: 6rem;
}

.features__title {
    text-align: center;
    margin-bottom: 3.5rem;
    color: #ffffff;
}

.features__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 0 auto;
    max-width: 960px;
}

.features__item {
    background: #fff;
    border-radius: 8px;
    padding: 0 4rem 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.features__badge {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 60px;
    text-align: center;
    font-size: 2.8rem;
    color: white;
    background: var(--sub-color);
    padding-block-start: 3rem;
    padding-block-end: 2rem;
    margin-block-start: -2rem;
}

.features__badge:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 30px solid var(--sub-color);
    border-right: 30px solid var(--sub-color);
    border-bottom: 10px solid transparent;
}

.features__badge span {
    font-weight: 3.2rem;
    font-weight: bold;
}

.features__head {
    padding-bottom: 12px;
    border-bottom: 2px dotted #c5d9d2;
    position: relative;
}

.features__ttl {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-inline-start: 8rem;
    margin-block-start: 2rem;
    color: var(--main-color);
}

.c-color-orange {
    color: #e37c21;
}

.features__txt {
    width: 90%;
    margin-inline: auto;
    font-size: 1.6rem;
    line-height: 2;
    font-weight: normal;
    color: var(--text-color);
    margin-block-start: 1.6rem;
}

@media screen and (max-width: 768px) {

    .features__list {
        grid-template-columns: 1fr;
        margin: 0 auto;
        width: 90%;
    }

    .features__item {
background: #fff;
        border-radius: 8px;
        padding: 0 2rem 3rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        position: relative;
    }

    .features__ttl {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.3;
        margin-inline-start: 7rem;
        margin-block-start: 2rem;
        color: var(--main-color);
    }

    .features__txt {
        width: 100%;
        margin-inline: auto;
        font-size: 1.5rem;
        line-height: 1.7;
        font-weight: normal;
        color: var(--text-color);
        margin-block-start: 1rem;
    }


    .features__badge {
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 50px;
        text-align: center;
        font-size: 2.4rem;
        color: white;
        background: var(--sub-color);
        padding-block-start: 2.4rem;
        padding-block-end: 2rem;
        margin-block-start: -2rem;
    }

    .features__badge:after {
        content: '';
        position: absolute;
        left: 0;
        top: 100%;
        height: 0;
        width: 0;
        border-left: 25px solid var(--sub-color);
        border-right: 25px solid var(--sub-color);
        border-bottom: 10px solid transparent;
    }
}

/**************************************************
 .case-study
**************************************************/
.case-study {
    padding-block: 6rem;
    background-color: #e9f2ef;
}

.case-study__list {
    display: flex;
    justify-content: space-around;
    max-width: 1020px;
    margin-inline: auto;
    margin-block-start: 3rem;
    flex-wrap: wrap;
}

.case-study__item {
    width: calc((100% / 3) - 25px);
    position: relative;
    margin-block-end: 2.5rem;
    background-color: #fff;
    padding: 1rem;
    box-sizing: border-box;
    box-shadow: 3px 3px 3px -1px rgba(19, 71, 52, 0.1);
}

.case-study__thumb {
    overflow: hidden;
    font-size: 0;
}

.case-study__thumb:hover {
    opacity: 0.8;
}

.case-study__thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    box-sizing: border-box;
    font-size: 0;
}

.case-study__content {
    padding: 1.5rem 1.5rem 1.5rem;
}

.case-study__meta {
    display: block;
    margin-block-end: .7rem;
}

.case-study__category {
    color: #fff;
    font-size: 1.2rem;
    border-radius: 2px;
    padding: .4rem 1rem;
    margin-inline-end: .8rem;
    background: var(--sub-color);
    display: inline-block;
}

.case-study__title {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: justify;
}

@media (max-width: 768px) {
    .case-study__list {
        display: flex;
        justify-content: space-around;
        margin-inline: auto;
        margin-block-start: 3rem;
        flex-wrap: wrap;
        width: 90%;
    }

    .case-study__item {
        width: 100%;
        position: relative;
        margin-block-end: 3rem;
    }
}

/**************************************************
 .otameshi
**************************************************/

.otameshi {
    width: 100%;
    padding-block: 8rem;
    margin-inline: auto;
}

.otameshi__title {
    text-align: center;
    color: var(--main-color);
}

.otameshi__txt {
    font-size: 1.6rem;
    font-weight: normal;
    text-align: center;
    margin-block-start: 2rem;
}

.otameshi__table {
    width: 640px;
    border-collapse: collapse;
    margin-inline: auto;
    font-size: 1.6rem;
    font-weight: normal;
    margin-block-start: 3rem;
    margin-block-end: 3rem;
}


.otameshi__table th,
.otameshi__table td {
    border: 1px solid #ddd;
    background-color: #ffffff;
    padding: 1.5rem 3rem;
    line-height: 2;
}

.note-text {
    font-size: 1.4rem;
}

.otameshi__table th {
    width: 23%;
    background-color: #d9d9d9;
    color: #565656;
    text-align: center;
    font-weight: normal;
    border-bottom: 1px solid #fff;
}

@media (max-width: 768px) {

    .otameshi__txt {
        font-size: 1.5rem;
        font-weight: normal;
        text-align: center;
        margin-block-start: 2rem;
    }

    .otameshi__table {
        width: 90%;
        margin-inline: auto;
        font-size: 1.6rem;
        margin-block-start: 3rem;
        margin-block-end: 3rem;
    }

    .otameshi__table th,
    .otameshi__table td {
        display: block;
        width: 100%;
        padding: .5rem 3rem;
        box-sizing: border-box;
    }

    .otameshi__table td {
        border-top: 0;
        padding: .5rem 2rem;
    }
}

/**************************************************
.flow
**************************************************/
.flow {
    padding-block: 6rem;
    background-color: #e9f2ef;
}

.flow__title {
    text-align: center;
    color: var(--main-color);
    margin-block-end: 3rem;
}

/**************************************************
.contact
**************************************************/
.contact {
    background-color: var(--main-color);
    padding-block-start: 6rem;
    padding-block-end: 8rem;
}

.contact__inner {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
}

.contact__title {
    color: #fff;
    margin-block-end: 2rem;
}

.contact__txt {
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.7;
    text-align: center;
    color: #ffffff;
}

.contact__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /* カラム間の余白 */
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 4rem 6rem;
    box-shadow: 7px 7px 6px -1px rgba(19, 71, 52, 0.1);
    margin-block-start: 3rem;
    justify-content: space-between;
    /* space-around → space-between に変更 */
}

.contact__tel,
.contact__mail {
    flex: 1 1 calc(50% - 1rem);
    /* gap分を引いて調整 */
    box-sizing: border-box;
    padding: 0 2rem;
    /* 内側の余白を分ける */
    min-width: 280px;
    /* スマホで折り返し制御 */
    text-align: center;
    border-right: none;
    /* PCで分けたい場合は media query で追加 */
}

.contact__tel {
    border-right: 2px dotted var(--main-color);
    padding-inline-end: 2rem;
}

.contact__head {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-block-end: 2rem;
}


.contact__tel-num {
    position: relative;
    font-size: 4.6rem;
    font-weight: 700;
    color: var(--main-color);
}

.contact__tel-num::before {
    content: '';
    width: 35px;
    height: 35px;
    background: url(../images/icon-tel.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-40px, -40%);
}

.contact__tel-txt {
    font-size: 1.2rem;
    font-weight: normal;
    display: block;
    margin-block-start: 1rem;
    text-align: center;
}

.contact-btn__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    height: 56px;
    margin-block-start: 1.6rem;
    margin-inline: auto;
    border-radius: 28px;
    background-color: #e37c21;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.8rem;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 4px #c26218;
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
}

.contact-btn__link:hover {
    transform: translateY(2px);
    /* ボタンが少し沈む */
    box-shadow: 0 2px #c26218;
    /* 影も小さく */
    opacity: 0.9;
    /* 元のホバー効果も残す */
    color: #ffffff;
}

.contact-btn__link span {
    display: block;
    text-align: center;
    line-height: 56px;
}

/* 左アイコン（メール） */
.contact-btn__link::before {
    content: '';
    width: 18px;
    height: 14px;
    background: url(../images/icon-mail.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

/* 右アイコン（矢印） */
.contact-btn__link::after {
    content: '';
    width: 8px;
    height: 14px;
    background: url(../images/icon-arrow.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
}

.contact__note {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    margin-block-start: 1.5rem;
}

@media screen and (max-width: 768px) {
    .contact__txt {
        font-size: 1.5rem;
        font-weight: normal;
        text-align: center;
        color: #ffffff;
        width: 90%;
        margin-inline: auto;
    }

    .contact__wrap {
        width: 90%;
        margin-inline: auto;
        padding: 3rem 3rem 4rem;
    }

    .contact__head {
        text-align: center;
        font-size: 1.6rem;
        font-weight: bold;
        margin-block-end: 1rem;
    }

    .contact__tel,
    .contact__mail {
        flex: 1 1 100%;
        padding: 0;
        border-right: none;
    }

    .contact__tel {
        border-bottom: 2px dotted #2e926e;
        padding-inline-end: 0;
        padding-block-end: 3rem;
    }

    .contact__tel-num {
        position: relative;
        font-size: 2.8rem;
        font-weight: 800;
        color: #2e926e;
        margin-inline-end: -3rem;
    }

    .contact-btn__link {
        width: 100%;
        height: 48px;
        margin-inline: auto;
        border-radius: 24px;
        font-size: 1.6rem;
}

    .contact-btn__link::before {
        content: '';
        width: 18px;
        height: 14px;
        background: url(../images/icon-mail.svg) no-repeat center center;
        position: absolute;
        top: 50%;
        left: 15%;
        transform: translateY(-50%);
    }

    .contact__tel-num::before {
        content: '';
        width: 25px;
        height: 25px;
        background: url(../images/icon-tel.svg) no-repeat center center;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(-31px, -40%);
    }

    .contact__note {
        color: #fff;
        font-size: 1.4rem;
        text-align: center;
        margin-block-start: 1.5rem;
    }
}

/**************************************************
.footer
**************************************************/
.footer {
    background-color: #f5f5f5;
    padding: 5rem 1rem;
    color: var(--text-color);
    text-align: center;
}

.footer__inner {
    max-width: 1080px;
    margin: 0 auto;
    line-height: 1.7;
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    align-items: center;

}

.footer__logo {
    display: block;
    color: var(--main-color);
    font-weight: bold;
    text-decoration: none;
    font-size: 2.6rem;
}

.footer__office {
    width: 100%;
    font-size: 1.5rem;
    font-weight: normal;
}

.footer__address {
    width: 100%;
    font-size: 1.5rem;
    font-weight: normal;
}

.footer__tel,
.footer__mail {
    width: 100%;
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: normal;
    text-decoration: none;
}

.footer__tel a:hover,
.footer__mail a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer {}

    .footer__inner {
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.7;
        display: flex;
        gap: 2rem;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
    }

    .footer__logo {
        display: block;
        color: var(--main-color);
        font-weight: bold;
        text-decoration: none;
        font-size: 2.1rem;
        letter-spacing: .1rem;
    }

    .footer__office,
    .footer__address,
    .footer__tel,
    .footer__mail {
        width: 100%;
        font-size: 1.4rem;
        color: var(--text-color);
        font-weight: normal;
        text-decoration: none;
        text-align: center;
    }

    .footer__time {
        font-size: 1.2rem;
    }
}