@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/



/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider .swiper-slide{
    height: calc(100vh - 80px);
    min-height: 700px;
    background: #fff;
    overflow: hidden;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    content: "";
    z-index: 1;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-hero-slider .swiper-slide{
        min-height: 600px;
    }
}
@media screen and (max-width:991px){
    .home-hero-slider .swiper-slide{
        height: auto;
        min-height: initial;
        aspect-ratio: 6 / 5;
    }
}
@media screen and (max-width:767px){
    .home-hero-slider .swiper-slide{
        aspect-ratio: 1 / 1;
    }
}
@media screen and (max-width:575px){
    .home-hero-slider .swiper-slide{
        aspect-ratio: initial;
        height: calc(100vh - 52px);
        height: calc(100svh - 52px);
        min-height: 500px;
    }
}
/*  home-hero-slider-image
------------------------------------------------------------------*/
.home-hero-slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    animation: homeHeroSlide 1s ease-out forwards;
}
@keyframes homeHeroSlide {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: 3vw;
    bottom: 6vh;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-hero-detail{
        left: 30px;
        bottom: 30px;
    }
}
@media screen and (max-width:767px){
    .home-hero-detail{
        left: 20px;
        bottom: 20px;
    }
}
/*  home-hero-catch
------------------------------------------------------------------*/
.home-hero-catch{
    display: flex;
    flex-wrap: wrap;
    column-gap: .25em;
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: clamp(80px,6.25vw,120px);
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.home-hero-catch .wrap{
    display: block;
    width: fit-content;
    overflow: hidden;
}
.home-hero-catch .inner{
    display: block;
    transform: translateY(100%);
    animation: homeHeroTitleEn .5s forwards .4s ease-out;
}
@keyframes homeHeroTitleEn {
    from{
        transform: translateY(100%);
    }
    to{
        transform: translateY(0);
    }
}
@media screen and (max-width:991px){
    .home-hero-catch{
        font-size: 12vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-catch{
        font-size: 15vw;
    }
}
@media screen and (max-width:575px){
    .home-hero-catch{
        font-size: 17vw;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: 1.5em;
    font-size: clamp(1.5rem,1.875vw,2.25rem);
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width:767px){
    .home-hero-title{
        margin-bottom: 2.5em;
        font-size: clamp(1.125rem,4vw,1.75rem);
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    font-size: clamp(1rem,.9375vw,1.125rem);
    color: #fff;
    line-height: 1.5;
}
.home-hero-text small{
    font-size: .77em;
}
@media screen and (max-width:767px){
    .home-hero-text{
        font-size: .875rem;
    }
}
/*  home-hero-scroll
------------------------------------------------------------------*/
.home-hero-scroll{
    position: absolute;
    bottom: 5vh;
    right: 3vw;
    z-index: 1;
}
.home-hero-scroll .circle{
    display: block;
    animation: homeHeroCircle 40s linear infinite;
}
.home-hero-scroll .arrow{
    position: absolute;
    top: 50%;
    left: calc(50% - 5px);
    transform: translate(-50%,-50%);
    z-index: 1;
}
@keyframes homeHeroCircle {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
@media screen and (max-width:991px){
    .home-hero-scroll{
        width: 160px;
    }
}
@media screen and (max-width:767px){
    .home-hero-scroll{
        display: none;
    }
}

/*------------------------------------------------------------------
  home-about
------------------------------------------------------------------*/

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 110px 0 150px;
    margin-bottom: 140px;
    background: linear-gradient(0deg,#29ab97 0%, #006c66 100%);
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 100px 0 130px;
        margin-bottom: 120px;
    }
}
@media print, screen and (max-width:991px){
    .home-about{
        padding: 80px 0 100px;
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 60px 0 100px;
        margin-bottom: 60px;
    }
}
/*  home-about-wrapper
------------------------------------------------------------------*/
.home-about-wrapper{
    display: flex;
    column-gap: 70px;
}
@media screen and (max-width:1399px){
    .home-about-wrapper{
        column-gap: 50px;
    }
}
@media screen and (max-width:1199px){
    .home-about-wrapper{
        column-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-about-wrapper{
        flex-direction: column;
        justify-content: initial;
        row-gap: 40px;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    padding: 40px 0;
}
@media screen and (max-width:1199px){
    .home-about-detail{
        padding: 20px 0;
    }
}
@media screen and (max-width:767px){
    .home-about-detail{
        width: 100%;
        padding: 0;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    width: 50%;
    overflow: hidden;
}
.home-about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}
@media screen and (max-width:767px){
    .home-about-image{
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}
/*  home-about-treat
------------------------------------------------------------------*/
.home-about-treat{
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    overflow: hidden;
    line-height: 1;
    z-index: -1;
}
.home-about-treat .one,
.home-about-treat .two{
    width: 2275px;
    padding-left: 70px;
}
.home-about-treat .one{
    display: inline-block;
    flex-shrink: 0;
    padding-left: 60px;
    animation: homeFeatureTreatLoop1 90s -45s linear infinite;
}
.home-about-treat .two{
    display: inline-block;
    flex-shrink: 0;
    padding-left: 60px;
    animation: homeFeatureTreatLoop2 90s linear infinite;
}
@keyframes homeFeatureTreatLoop1 {
    from{
        transform: translateX(100%);
    }
    to{
        transform: translateX(-100%);
    }
}
@keyframes homeFeatureTreatLoop2 {
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(-200%);
    }
}
@media screen and (max-width:1399px){
    .home-about-treat .one,
    .home-about-treat .two{
        width: 1800px;
        padding-left: 60px;
    }
}
@media screen and (max-width:991px){
    .home-about-treat .one,
    .home-about-treat .two{
        width: 1400px;
        padding-left: 40px;
    }
    .home-about-treat .one{
        animation: homeFeatureTreatLoop1 60s -30s linear infinite;
    }
    .home-about-treat .two{
        animation: homeFeatureTreatLoop2 60s linear infinite;
    }
}
@media screen and (max-width:767px){
    .home-about-treat .one,
    .home-about-treat .two{
        width: 1200px;
        padding-left: 30px;
    }
}

/*------------------------------------------------------------------
  home-feature
------------------------------------------------------------------*/

/*  home-feature
------------------------------------------------------------------*/
.home-feature{
    position: relative;
    margin-bottom: 100px;
    z-index: 1;
}
@media print, screen and (max-width:991px){
    .home-feature{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-feature{
        margin-bottom: 60px;
    }
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 50px;
}
@media screen and (max-width:1699px){
    .home-feature-list{
        column-gap: 30px;
    }
}
@media screen and (max-width:1399px){
    .home-feature-list{
        column-gap: 16px;
    }
}
@media screen and (max-width:991px){
    .home-feature-list{
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        row-gap: 20px;
    }
}
/*  home-feature-card
------------------------------------------------------------------*/
.home-feature-card{
    padding: 50px;
    background: linear-gradient(0deg,#006c66 0%, #29ab97 100%);
    border-radius: 20px;
}
.home-feature-card .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 32px;
    background: #fff;
    border-radius: 50%;
}
.home-feature-card .icon figure{
    width: 80px;
    height: 80px;
}
.home-feature-card .icon figure img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-feature-card .title{
    margin-bottom: .25em;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}
.home-feature-card .caption{
    margin-bottom: 1.5em;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-color);
    text-align: center;
    line-height: 1.5;
}
.home-feature-card .text{
    color: #fff;
    line-height: 1.7;
}
@media screen and (max-width:1699px){
    .home-feature-card{
        padding: 50px 40px;
    }
    .home-feature-card .icon{
        width: 180px;
        margin-bottom: 28px;
    }
    .home-feature-card .title{
        font-size: 1.875rem;
    }
    .home-feature-card .caption{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:1399px){
    .home-feature-card{
        padding: 40px 30px;
    }
    .home-feature-card .icon{
        width: 160px;
        margin-bottom: 24px;
    }
    .home-feature-card .title{
        font-size: 1.5rem;
    }
    .home-feature-card .caption{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .home-feature-card{
        padding: 30px 24px;
    }
    .home-feature-card .icon{
        width: 120px;
        margin-bottom: 16px;
    }
    .home-feature-card .icon figure{
        width: 60px;
        height: 60px;
    }
    .home-feature-card .title{
        font-size: 1.5rem;
    }
    .home-feature-card .caption{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  home-links
------------------------------------------------------------------*/

/*  home-links
------------------------------------------------------------------*/
.home-links{
    position: relative;
    margin-bottom: 100px;
    z-index: 1;
}
@media print, screen and (max-width:991px){
    .home-links{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-links{
        margin-bottom: 60px;
    }
}
/*  home-links-wrapper
------------------------------------------------------------------*/
.home-links-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 60px;
}
.home-links-wrapper > section:nth-of-type(even){
    margin-top: 40px;
}
@media screen and (max-width:1399px){
    .home-links-wrapper{
        column-gap: 30px;
    }
    .home-links-wrapper > section:nth-of-type(even){
        margin-top: 30px;
    }
}
@media screen and (max-width:991px){
    .home-links-wrapper{
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
    .home-links-wrapper > section:nth-of-type(even){
        margin-top: initial;
    }
}
/*  home-links-card
------------------------------------------------------------------*/
.home-links-card{
    display: block;
}
.home-links-card .head{
    position: relative;
    margin-bottom: 32px;
    z-index: 1;
}
.home-links-card .head .image{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.home-links-card .head .image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%);
    content: "";
    z-index: 1;
}
.home-links-card .head .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-links-card .head .title{
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}
.home-links-card .head .title .en{
    font-family: var(--en-font);
    font-size: 4.5rem;
    font-weight: bold;
    color: var(--primary-bright-color);
    line-height: 1;
}
.home-links-card .head .title .jp{
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
.home-links-card .body{
    display: flex;
    align-items: center;
    column-gap: 56px;
}
.home-links-card .body .text{
    line-height: 1.8;
    transition: .2s ease-out;
}
.home-links-card .body .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(90deg,#3dbfab 0%, #00a399 100%);
    font-size: 24px;
    color: #fff;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-links-card:hover .head .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-links-card:hover .body .text{
        color: var(--primary-color);
    }
    .home-links-card:hover .body .arrow{
        transform: scale(.8);
        filter: brightness(1.2);
    }
}
@media (hover:none) {
    .home-links-card:active .head .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-links-card:active .body .text{
        color: var(--primary-color);
    }
    .home-links-card:active .body .arrow{
        transform: scale(.8);
        filter: brightness(1.2);
    }
}
@media screen and (max-width:1699px){
    .home-links-card .head{
        margin-bottom: 24px;
    }
    .home-links-card .head .title{
        bottom: 30px;
        left: 30px;
    }
    .home-links-card .head .title .en{
        font-size: 4rem;
    }
    .home-links-card .head .title .jp{
        font-size: 1rem;
    }
    .home-links-card .body{
        column-gap: 30px;
    }
    .home-links-card .body .arrow{
        width: 80px;
        font-size: 20px;
    }
}
@media screen and (max-width:1399px){
    .home-links-card .head{
        margin-bottom: 20px;
    }
    .home-links-card .head .title{
        bottom: 24px;
        left: 24px;
    }
    .home-links-card .head .title .en{
        font-size: 3.5rem;
    }
    .home-links-card .head .title .jp{
        font-size: .9125rem;
    }
    .home-links-card .body{
        column-gap: 20px;
    }
    .home-links-card .body .text{
        font-size: .9125rem;
    }
    .home-links-card .body .arrow{
        width: 70px;
        font-size: 16px;
    }
}
@media screen and (max-width:991px){
    .home-links-card .head .image{
        height: 300px;
    }
    .home-links-card .body .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-links-card .head .image{
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
@media screen and (max-width:575px){
    .home-links-card .head .title{
        bottom: 20px;
        left: 20px;
    }
    .home-links-card .head .title .en{
        font-size: 2.5rem;
    }
    .home-links-card .head .title .jp{
        font-size: .875rem;
    }
    .home-links-card .body{
        flex-direction: column;
        align-items: flex-end;
    }
    .home-links-card .body .arrow{
        width: 40px;
        font-size: 10px;
    }
}

/*------------------------------------------------------------------
  home-company
------------------------------------------------------------------*/

/*  home-company
------------------------------------------------------------------*/
.home-company{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    z-index: 1;
}
.home-company .image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.home-company .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-company .title{
    font-size: 120px;
    text-align: center;
}
.home-company .title .en{
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-bright-color);
    line-height: 1;
}
.home-company .title .jp{
    font-size: max(.26666em,.875rem);
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
.home-company .arrow{
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(90deg,#3dbfab 0%, #00a399 100%);
    font-size: 24px;
    color: #fff;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-company:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-company:hover .arrow{
        transform: translateY(-50%) scale(.8);
        filter: brightness(1.2);
    }
}
@media (hover:none) {
    .home-company:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-company:active .arrow{
        transform: translateY(-50%) scale(.8);
        filter: brightness(1.2);
    }
}
@media screen and (max-width:1399px){
    .home-company{
        height: 400px;
    }
    .home-company .title{
        font-size: 100px;
    }
}
@media screen and (max-width:991px){
    .home-company{
        height: 300px;
    }
    .home-company .title{
        font-size: 72px;
    }
    .home-company .arrow{
        right: 30px;
        width: 80px;
        font-size: 20px;
    }
}
@media screen and (max-width:767px){
    .home-company{
        justify-content: flex-start;
        height: 200px;
        padding-left: 30px;
    }
    .home-company .title{
        font-size: 56px;
        text-align: left;
    }
    .home-company .arrow{
        right: 20px;
        width: 60px;
        font-size: 16px;
    }
}
@media screen and (max-width:575px){
    .home-company{
        height: 150px;
    }
    .home-company .title{
        font-size: 48px;
    }
    .home-company .arrow{
        width: 48px;
        font-size: 12px;
    }
}

/*/////////////////////////////////////////////////////////////////
  company.html
/////////////////////////////////////////////////////////////////*/

/* company-map ----------------------------------------*/
.company-map{
    height: 360px;
    margin-bottom: 30px;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .company-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}


/*/////////////////////////////////////////////////////////////////
  recruit.html
/////////////////////////////////////////////////////////////////*/


/*  recruit-benefits
------------------------------------------------------------------*/
.recruit-benefits{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 20px;
}
@media screen and (max-width:1399px){
    .recruit-benefits{
        column-gap: 10px;
        row-gap: 10px;
    }
}
@media screen and (max-width:1199px){
    .recruit-benefits{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .recruit-benefits{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .recruit-benefits{
        grid-template-columns: 1fr;
    }
}
/*  recruit-benefits-item
------------------------------------------------------------------*/
.recruit-benefits-item{
    padding: 30px 15px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
}
.recruit-benefits-item .image{
    width: 70px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
}
.recruit-benefits-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.recruit-benefits-item .title{
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2;
}
@media screen and (max-width:991px){
    .recruit-benefits-item{
        display: flex;
        align-items: center;
        column-gap: 10px;
        padding: 10px;
    }
    .recruit-benefits-item .image{
        width: 40px;
        margin: initial;
    }
    .recruit-benefits-item .title{
        text-align: left;
    }
}
@media screen and (max-width:767px){
    .recruit-benefits-item .title{
        font-size: 0.875rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  contact.html
/////////////////////////////////////////////////////////////////*/

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 20px;
    background: #efefef;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
}
.contact-tel-box .num span{
    font-size: 2em;
    letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:767px){
    .contact-tel-box{
        padding: 24px 16px;
    }
    .contact-tel-box .title{
        margin-bottom: 8px;
        font-size: 1.25rem;
    }
    .contact-tel-box .num{
        font-size: 1rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num{
        margin-bottom: 12px;
        font-size: .875rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-box .num{
        font-size: .875rem;
    }
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
}

.form-error{
    position: relative;
    padding-left: 1.25em;
    margin-top: 5px;
    color: var(--red-color);
}
.form-error::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}