@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/*----------------------------------------------
    top page のスタイル
----------------------------------------------*/
/* 定数 */
:root {
    /*----------------------------------------------
    ボックスの各幅設定
    ----------------------------------------------*/
    --col-count: 3;
    --tb-col-count: 2;
    --sp-col-count: 1;
    --col-gap: .3rem;
    --row-gap: 3rem;
    --padding: 1rem;
    --col-padding: .1rem;
    --row-padding: .1rem;
    --border-size: .1rem;
    --col-border-size: .1rem;
    --row-border-size: .1rem;
    --border-color: var(--main-border-color);
    --item-background-color: white;

}

h3 {
    background-color:  var(--accent-color);
}

main{
    width:100%;
    background-color:  var(--base-color);
    font-size: var(--font-size-m);
}

section{
    margin-top: 0;
    margin-bottom: 0;
}

.sub_cover .sub_cover_text2 img{
    width: 20%;
}
/*-------------------------------------------------
    経営方針(policy)
-------------------------------------------------*/
.policy_title_wrap{
    display: flex;
    flex-direction: row;
}

.policy_contents_wrap{
    display: flex;
    flex-direction: column;
    width: 100%; 
    font-size: var(--font-size-l);
    font-weight: 700;
}

.policy_contents1{
    font-size: var(--font-size-l);
    font-weight: 700;
    color: var(--main-text-color);
}

.policy_contents2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--main-color1);
    font-size: var(--font-size-l);
    font-weight: 700;
    color: var(--main-color1);
    text-shadow: .1rem .1rem .1rem var(--gray1);
    text-decoration-color: var(--main-color2);
}

.story_contents{
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateY(150px);
}

.is_active {
    /*要素を表示させる*/
    opacity: 1;
    visibility: visible;
    /*元の位置に戻す*/
    transform: translateY(0);
}

/*-------------------------------------------------
    くるまやさん(kurumayasan)
-------------------------------------------------*/
.kurumayasan_wrap{
    display: flex;
    flex-direction: column;
}

.kurumayasan_title_wrap{
    display: flex;
    flex-direction: row;
    padding-bottom: 2rem;
}

.kurumayasan_title_wrap .h2_title_wrap{
    margin-top: 0;
    margin-bottom: 0;
    width: 20%;
}

.kurumayasan_title_wrap .h2_title{
    width: 100%;
}

.kurumayasan_logo{
    display: flex;
    justify-content: flex-start;
    justify-content: center;
}

.kurumayasan_logo img{
    height: 8rem;
    width: auto;
}

.kurumayasan_title{
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "News Cycle", sans-serif;
    font-style: normal;
    font-size: 12.8rem;
    font-weight: 700;
    color: var(--main-color1);
    transform: skewX(-15deg); /*ここでは何故か効かない */
    -webkit-text-stroke: 0.3rem rgba(255, 255, 255, 1);
    text-shadow:
            0.6rem 0.6rem 0 #000,
            -0.3rem -0.3rem 0 #000,  
            0.3rem -0.3rem 0 #000,
            -0.3rem 0.3rem 0 #000,
            0.3rem 0.3rem 0 #000;

        margin: 0;
}

.kurumayasan_img_wrap{
    position: relative;
    width: 100%;
    padding: 0;
}

.kurumayasan_img_wrap .kurumaya_back img{
    height: 100%;
    width: 100%;
}

.kurumayasan_img_wrap .kurumaya_pc{
    position: absolute;
    top: 0%;
    left: 50%; 
    transform: translate(-50%,-0%);
}

.kurumayasan_img_wrap .kurumaya_pc img{
    width: auto;
    height: 40rem;
    aspect-ratio: 8 / 3;
}

.kurumayasan_overview{
    position: absolute;
    top: 50%;
    left: 50%; 
    width: 98%;
    transform: translate(-50%,-0%);
    font-size: var(--font-size-l);
    color: white;
    height: 48%;
    max-height: 48%;
    overflow: hidden;
    line-height: 1.2;
    background-color: rgba(0, 0, 0, .6);
    display:flex;
    justify-content: center;
    align-items: center;
}

.kurumayasan_logo:hover{
    filter: brightness(1.2); 
}
.kurumayasan_word{
    display: inline-block;
	font-size: var(--font-size-2l);
    font-weight: 800;
	color: var(--main-color1);
    transform: skewX(-15deg);
}

/*-------------------------------------------------
    新着情報(news)
-------------------------------------------------*/
.news_title_wrap{
    display: flex;
    flex-direction: row;
}

/* 新着情報一覧 */
.news_list_wrap{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2rem 0;
}

.news_list_row_wrap{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background-color: white;
    border-top:solid .1rem  var(--main-border-color);
}

.news_list_row_wrap:last-child{
    border-bottom:solid .1rem  var(--main-border-color);
}

.news_list_row{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background-color: white;
    border-top:solid .1rem  var(--main-border-color);
    border-left:solid .1rem  var(--main-border-color);
    border-right:solid .1rem  var(--main-border-color);
}

.news_list_date{
    width: 14%;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: calc(var(--font-size-m) * 11);
    font-weight: bold;
}

.news_list_detail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 75%;
    padding-left: 1rem;
}

.item_post_title{
    font-weight: 600;
}

.news_link_wrap{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.news_link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 12rem;
    border: solid 0.1rem  var(--main-color2);
    background-color: var(--main-color1);
    background: linear-gradient(90deg, var(--main-color1) 0%, var(--main-color1) 62%, rgba(0,219,255,1) 100%);
    background: linear-gradient(90deg, var(--main-color1) 0%, var(--main-color1) 33%, rgba(37,151,85,0.7903536414565826) 87%);
    background: linear-gradient(90deg, var(--main-color1) 0%, var(--main-color1) 33%, rgba(37,151,85,0.4009978991596639) 91%);
    background: radial-gradient(circle, var(--main-color1) 0%, var(--main-color1) 33%, rgba(37,151,85,0.7819502801120448) 91%);
    margin: .5rem;
    padding: .5rem;
    color: var(--invert-main-text-color);
    font-weight: bold;
    filter: drop-shadow(.5rem .5rem .5rem rgba(0, 0, 0, .5));
}

.news_link a{
    color: var(--invert-main-text-color);
}

/*-------------------------------------------------
    よくあるお問合せ(FAQ)
-------------------------------------------------*/
.faq_title_wrap{
    display: flex;
    flex-direction: row;
}

/* よくあるお問合せ一覧 */
.faq_list_wrap{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2rem 0;
}

.faq_list_wrap details{
    margin-bottom: 1rem;
}

.faq_list_row_wrap:last-child{
    border-bottom:solid .1rem  var(--main-border-color);
}

.faq_list_row_quetion{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    border-top:solid .1rem  var(--main-border-color);
    border-left:solid .1rem  var(--main-border-color);
    border-right:solid .1rem  var(--main-border-color);
}

.faq_list_row_quetion:last-child{
    border-bottom:solid .1rem  var(--main-border-color);
}

.faq_list_date{
    width: 5%;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 1rem;
}

.faq_list_detail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 95%;
    padding-left: 1rem;
}

.faq_list_row_answer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    border-left:solid .1rem  var(--main-border-color);
    border-right:solid .1rem  var(--main-border-color);
    border-bottom:solid .1rem  var(--main-border-color);
    background:#E8ECF7;
}

.faq_list_wrap summary{
	position: relative;
	list-style: none; /* デフォルトの三角形アイコンを消します */
	cursor: pointer; /* ポインターを指さしマークに変更 */
}

.faq_list_wrap summary::-webkit-details-marker {
    /* Safariで表示されるデフォルトの三角形アイコンを消します */
    display: none; 
}

.faq_list_wrap summary::after{
    position: absolute;
	right: 2rem;
    top: calc(50% - var(--font-size-l));
    font-size: var(--font-size-l);
    /* 下矢印 */
	content: "▼";
}

.faq_list_wrap details[open] summary::after{
    top: calc(50% - (2rem));
    /* 上矢印へ */
	transform: rotate(-180deg);
}

/*-------------------------------------------------
    お問合せ(contact)
-------------------------------------------------*/
.contact_title_wrap{
    display: flex;
    flex-direction: row;
}

/*-------------------------------------------------
    contact
-------------------------------------------------*/
.contact_item_wrap {
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
	background: var(--base-color);
    padding-left: 0;
    padding-right: 0;
    column-gap: 1rem;
    padding-top: 2rem;
}

.contact_item {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
	background: var(--base-color);
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.contact_item .contact_item_img{
    width:100%;
}

.contact_item .contact_item_img img{
    width:100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    box-shadow: 0px 1rem 1rem -.5rem rgba(0,0,0,0.6);
    filter: brightness(90%);
}

.contact_item_contents{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact_item_title{
    width: 100%;
    font-size: var(--font-size-l);
    color: var(--accent-color2);
    color: var(--white);
    line-height: 1;
    font-weight: 800;
    text-align: center;
    padding: .5rem;
    text-shadow: .4rem .4rem .2rem rgba(0, 0, 0, 1);
}

.contact_item .contact_item_link{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: .8rem;
    height: 7rem;
    line-height: 7rem;
    width: 26rem;
    font-weight: 400;
    background-color: var(--accent-color2);
    box-shadow: 4px 12px 9px 0 #000000;
    text-shadow: .4rem .4rem .2rem rgba(0, 0, 0, 1);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}

.contact_item .contact_item_link:hover {
    background-color: var(--accent-color2);
    background-color: var(--main-color);
    text-decoration: none;
}

.contact_item .contact_item_link img{
    height: var(--font-size-3l);
    width: auto;
    margin: 1rem;
}

.contact_item .contact_item_link a{
    display: inline-block;
    font-size: var(--font-size-l);
    font-weight: 800;
    color:var(--base-color);
}

.contact_item .contact_item_comment{
    font-weight: normal;
    color:var(--base-color);
    text-align: center;
    text-shadow: .5rem .5rem .5rem black;
}

/*-------------------------------------------------
    メーカー外部リンク
-------------------------------------------------*/
.maker_link_title_wrap .test_title_wrap{
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    height: 8rem;
    background-image: linear-gradient(268deg, rgba(37, 151, 85, 0.5) 5%, rgba(37, 151, 85, 0.6) 10%, rgba(37, 151, 85, 0.8) 20%, rgba(37, 151, 85, 1) 50%, rgba(37, 151, 85, 0.8) 80%, rgba(37, 151, 85, 0.6) 90%, rgba(37, 151, 85, 0.5) 95%);
    clip-path: polygon(97% 0%, 95% 50%, 97% 100%, 0% 95%, 3% 50%, 0% 0%);
}

.maker_link_title_wrap .h2_title{
    width: 100%;
    background-image: linear-gradient(268deg, rgba(37, 151, 85, 0.5) 5%, rgba(37, 151, 85, 0.6) 10%, rgba(37, 151, 85, 0.8) 20%, rgba(37, 151, 85, 1) 50%, rgba(37, 151, 85, 0.8) 80%, rgba(37, 151, 85, 0.6) 90%, rgba(37, 151, 85, 0.5) 95%);
    color: white;
}

.h2_title_comment{
    display:flex;
    justify-content: center;
    align-items: center;
}
.maker_link ul{
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
}
.maker_link ul li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: .5rem;
}
.maker_link ul li img{
    height: 10rem;
    width: auto;
    text-align: center;
}
.maker_link ul li div{
    width: 100%;
    text-align: center;
}

.maker_link_item_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    /* boxの行間隔を設定 */
    row-gap:  var(--row-gap);
    column-gap:  var(--col-gap);
}

.maker_link_wrap .maker_link_item {
    margin:0;
    padding: var(--row-padding) var(--col-padding) var(--row-padding) var(--col-padding);
    /* 横並びカラム数で1カラム幅を計算して設定(border-boxなのでborderとpaddingも含めた幅として計算 */
    /* (全体幅 - (BOXのカラムギャップ X (カラム数 - 1)) / カラム数 */
    width: calc(((100% - (var(--col-gap) * (var(--col-count) - 1))))  / var(--col-count));
    background-color: var(--white);
    box-sizing: border-box;
    border: 2px solid gray;
}

.maker_link_wrap .maker_link_item .item_img{
    overflow: hidden;
    padding: 1rem;
}

.maker_link_wrap .maker_link_item .item_img img{
    width: 100%;
    height: 10rem;
    box-sizing: border-box;
    object-fit:contain;
}
    
.maker_link_wrap .item_text {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.maker_link_wrap .item_maker {
    text-align: center;
    font-size: var(--font-size-l);
    font-weight: 500;
    color: #00a3e0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-top: 2px solid gray;
    background-color: var(--white);
    font-family: 'M PLUS 1p', 'Noto Sans JP', meiryo, 'メイリオ', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', sans-serif;
}

.maker_link_wrap .item_maker .external_link{
    margin-left: 1rem;
	height: var(--font-size-l);
    width: auto;
    filter: drop-shadow(.1rem .1rem .1rem var(--black));
    overflow: hidden;
}

/*-------------------------------------------------
    特別役員(special officer)
-------------------------------------------------*/
.special_officer_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.special_officer_title_wrap{
    display: flex;
    flex-direction: row;
}

.h2_title_comment{
    display: flex;
    justify-content: flex-start;
    align-content: center;
    padding:1rem;
    font-size: var(--font-size-l);
    font-weight: 700;

}

.special_officer_item_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    /* boxの行間隔を設定 */
    row-gap:  var(--row-gap);
    column-gap:  var(--col-gap);
}

.special_officer_wrap .special_officer_item {
    margin:0;
    padding: var(--row-padding) var(--col-padding) var(--row-padding) var(--col-padding);
    /* 横並びカラム数で1カラム幅を計算して設定(border-boxなのでborderとpaddingも含めた幅として計算 */
    /* (全体幅 - (BOXのカラムギャップ X (カラム数 - 1)) / カラム数 */
    width: calc(((100% - (var(--col-gap) * (var(--col-count) - 1))))  / var(--col-count));
    background-color: #fff;
    box-sizing: border-box;
}
.special_officer_wrap .special_officer_item.sex_male{
    background-color: var(--accent-color4);
}

.special_officer_wrap .special_officer_item.sex_female{
    background-color: var(--accent-color6);
}

.special_officer_wrap .special_officer_item .item_img{
    overflow: hidden;
}

.special_officer_wrap .special_officer_item img{
    width: 100%;
    box-sizing: border-box;
    object-fit: cover;
}

.special_officer_wrap .special_officer_item img:hover{
    animation: Zoom1 1s ease-in-out forwards;
}

@keyframes Zoom1 {
    100% { transform: scale(2)}
}
    
.special_officer_wrap .item_text {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.special_officer_wrap .item_maker {
    text-align: center;
    font-size: var(--font-size-2l);
    font-weight: 700;
    color: var(--base-color);
    text-shadow: .5rem .5rem 1rem rgba(0, 0, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.special_officer_wrap .item_maker img{
    margin-left: 1rem;
    width: var(--font-size-2l);
    filter: drop-shadow(.3rem .3rem .3rem var(--white)); 
    filter: drop-shadow(.3rem .3rem .1rem var(--black)); 
    overflow: hidden;
}

.special_officer_wrap .item_maker_comment {
    padding: 0.5rem;
    margin: 0;
    text-align: left;
    font-size: var(--font-size-m);
    font-weight: 700;
    box-sizing: border-box;
    background-color: var(--main-color1);
    background-color: var(--main-color2);
    background-color: var(--white);
    color: var(--main-text-color);
    text-overflow: ellipsis;
    white-space: normal;
    height:12rem;
    overflow: hidden;
    overflow-wrap:break-word;
    line-height: 2rem;
}

/* --------------------------------------------------
	以上が 1300pxを超えるＰＣ端末環境設定
----------------------------------------------------- */
/* --------------------------------------------------
	ここから 1300px以下のPC端末環境設定
----------------------------------------------------- */
@media screen and (max-width: 1300px) {
    /*----------------------------------------------
        top page のスタイル
    ----------------------------------------------*/
    /* 定数 */
    :root {
        /*----------------------------------------------
        ボックスの各幅設定
        ----------------------------------------------*/
        --col-count: 3;
    }

    .kurumayasan_title_wrap .h2_title_wrap{
        width: 30%;
    }
    .kurumayasan_img_wrap .kurumaya_pc img{
        height: auto;
        width: 80vw;
    }

    .kurumayasan_overview{
        width: 96%;
        width: 98%;
        max-width: 99%;
        line-height: 1.1;
    }
    
    .kurumayasan_word{
        font-size: var(--font-size-l);
    }
    /*-------------------------------------------------
        新着情報(news)
    -------------------------------------------------*/
    /*-------------------------------------------------
        よくあるお問合せ(FAQ)
    -------------------------------------------------*/
    /*-------------------------------------------------
        お問合せ(contact)
    -------------------------------------------------*/
    /*-------------------------------------------------
        contact
    -------------------------------------------------*/
    /*-------------------------------------------------
        特別役員(special officer)
    -------------------------------------------------*/
    /*-------------------------------------------------
        メーカー外部リンク
    -------------------------------------------------*/
}

/* --------------------------------------------------
	ここから 768px以下のタブレッド端末環境設定
----------------------------------------------------- */
@media screen and (max-width: 768px) {
    /*----------------------------------------------
        top page のスタイル
    ----------------------------------------------*/
    /* 定数 */
    :root {
        /*----------------------------------------------
        ボックスの各幅設定
        ----------------------------------------------*/
        --col-count: 2;
        --row-gap: 1rem;
    }
    /*-------------------------------------------------
        経営方針(policy)
    -------------------------------------------------*/
    .policy_title_wrap .h2_title{
        width: 100%;
    }
    /*-------------------------------------------------
        くるまやさん(kurumayasan)
    -------------------------------------------------*/
    .kurumayasan_title_wrap{
        flex-direction: column;
        width: 100%;
    }

    .kurumayasan_title_wrap .h2_title_wrap{
        width: 100%;
    }

    .kurumayasan_logo img{
        width: 100%;
    }

    .kurumayasan_img_wrap{
        height: 35rem;
    }
    .kurumayasan_img_wrap .kurumaya_back img{
        height: 35rem;
    }
    .kurumayasan_img_wrap .kurumaya_pc{
        display: none;
    }

    .kurumayasan_img_wrap .kurumaya_pc img{
        height: auto;
        width: 80vw; 
    }

    .kurumayasan_overview{
        top: 0;
        width: 100%;
        max-width: 100%;
        line-height: 1.5;
        height: 95%;
        max-height: 100%;
        font-size: var(--font-size-m);
        padding: 0 1rem;
    }
    
    .kurumayasan_word{
        font-size: var(--font-size-m);
    }

    /*-------------------------------------------------
        新着情報(news)
    -------------------------------------------------*/
    .news_title_wrap .h2_title{
        width: 100%;
    }

    .news_list_row{
        flex-direction: column;
    }

    .news_list_date{
        width: 100%;
        justify-content: flex-start;
        font-weight: 700;
    }

    .news_list_detail{
        width: 100%;
    }

    .item_post_contents{
        width: 100%
    }

    /*-------------------------------------------------
        よくあるお問合せ(FAQ)
    -------------------------------------------------*/
    .faq_title_wrap .h2_title{
        width: 100%;
    }
    .faq_list_row_quetion{
        flex-direction: column;
    }
    .faq_list_date{
        width: 100%;
        justify-content: flex-start;
        font-weight: 700;
    }

    .faq_list_detail{
        width: 100%;
    }

    .faq_list_row_answer{
        flex-direction: column;
    }
    /*-------------------------------------------------
        お問合せ(contact)
    -------------------------------------------------*/
    .contact_title_wrap .h2_title{
        width: 100%;
    }
    /*-------------------------------------------------
        contact
    -------------------------------------------------*/
    .contact_item_wrap {
        flex-direction:column;
    }

    .contact_item {
        width: 100%;
    }

    .contact_item .contact_item_link{
        height: 3rem;
    }
    /*-------------------------------------------------
        特別役員(special officer)
    -------------------------------------------------*/
    .special_officer_title_wrap .h2_title{
        width: 100%;
    }
    /*-------------------------------------------------
        メーカー外部リンク
    -------------------------------------------------*/
    .maker_link_wrap .h2_title{
        width: 100%;
    }
}
/* --------------------------------------------------
	ここから 480px以下のタブレッド端末環境設定
----------------------------------------------------- */
@media screen and (max-width: 480px) {
    /*----------------------------------------------
        top page のスタイル
    ----------------------------------------------*/
    /* 定数 */
    :root {
        /*----------------------------------------------
        ボックスの各幅設定
        ----------------------------------------------*/
        --col-count: 2;
        --row-gap: 1rem;
    }
    /*-------------------------------------------------
        経営方針(policy)
    -------------------------------------------------*/
    /*-------------------------------------------------
        くるまやさん(kurumayasan)
    -------------------------------------------------*/
    .kurumayasan_overview{
        height: 100%;
        max-height: 100%;
        font-size: var(--font-size-s);
    }
    
    .kurumayasan_word{
        font-size: var(--font-size-s);
    }

    /*-------------------------------------------------
        新着情報(news)
    -------------------------------------------------*/
    /*-------------------------------------------------
        よくあるお問合せ(FAQ)
    -------------------------------------------------*/
    /*-------------------------------------------------
        お問合せ(contact)
    -------------------------------------------------*/
    /*-------------------------------------------------
        contact
    -------------------------------------------------*/
    /*-------------------------------------------------
        特別役員(special officer)
    -------------------------------------------------*/
    .special_officer_wrap .item_maker {
        font-size: var(--font-size-m);
    }
    /*-------------------------------------------------
        メーカー外部リンク
    -------------------------------------------------*/
    .maker_link_wrap .item_maker {
        font-size: var(--font-size-m);
    }
}
