.name-signage{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 32px;
    margin-bottom: 41px;

}
.taxonomy-list.area{
    margin-left: 10px;
}
@media screen and (max-width: 1150px) {
    
}
@media screen and (max-width: 855px) {
    .name-signage{
        font-size: 26px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 550px) {
    .name-signage{
        font-size: 22px;
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 400px) {
    .name-signage{
        font-size: 20px;
        margin-bottom: 21px;
    }
}


/* 
----------------------------------------
********** 関連タグ ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
.groups-tag{
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #E8F0F6;

    width: calc(100% - 64px);
    padding: 32px;
    border-radius: 6px ;
    margin-bottom: 40px;

}

.content-groups-tag{
    width: 100%;
    display: flex;
    justify-content: left;
}

.content-groups-tag .topic-name{
    display: flex;
    align-items: center;

    gap: 8px;
    margin-right: 14px;
}

.content-groups-tag .topic-name img{
    width: 19px;
    height: 29px;
}
.content-groups-tag .topic-name p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  600;
    text-align: left;
    color: #135477;

    white-space:nowrap;
    width: fit-content;
    font-size: 20px;
    height: 27px;
}

.content-groups-tag .varLine{
    background:#D1D1D1;/*線の色指定*/
    width:1px;/*線の幅指定*/
    height:auto;/*線の高さ指定*/

    margin: 0 14px;
}

.content-groups-tag .tags{
    display: flex;
    justify-content: left;
    flex-wrap: wrap;            /* 横幅いっぱいになったら次の行に折り返す */

    width: 100%;
    gap: 12px;
}

.content-groups-tag .tags .circle-tag{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;

    border: solid 1px #135477;
    border-radius: 15px ;
    margin: auto 6px;
    padding : 6px 10px 5px 10px;

}
.content-groups-tag .tags .circle-tag p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: center;
    color: #434343;

    width: auto; 
    height: auto; 
    font-size: 14px;
}


@media screen and (max-width: 1150px) {
    
}
@media screen and (max-width: 855px) {
    .groups-tag{
        width: calc(100% - 32px);
        padding: 16px;
        border-radius: 6px ;
        margin-bottom: 30px;
    
    }

    .content-groups-tag {
        width: 100%;
        display: flex;
        flex-flow: column;
        justify-content: left;
        gap: 16px;
    }

    .content-groups-tag .tags .circle-tag {
        padding: 2px 14px;
    }
    


}
@media screen and (max-width: 550px) {
    .groups-tag{
        margin-bottom: 24px;
    }

    .content-groups-tag .topic-name img {
        width: 15px;
        height: 26px;
    }
    .content-groups-tag .topic-name p {
        font-size: 18px;
    }
    
    .content-groups-tag .tags .circle-tag {
        padding: 2px 8px;
    }

    .content-groups-tag .tags .circle-tag p {
        font-size: 12px;
    }
    
}
@media screen and (max-width: 400px) {
    
    
}

/* 
----------------------------------------
********** 関連タグ ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */


/* 
----------------------------------------
********** ギャラリー画像 ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
/* ギャラリー全体 */
.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

/* コンテンツのレイアウト */
.gallery .content-gallery {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; /* 拡大画像とサムネイル群の間隔を統一 */
}

/* 画像の表示枠 */
.content-gallery .box-viewing {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 670px; /* 画像の最大サイズ */
    height: 460px;
    background-color: #f4f4f4; /* 背景をつけてわかりやすく */
    padding: 10px;
    box-sizing: border-box; /* 内側の余白を含めてサイズ計算 */
}

/* 左右のボタン */
.content-gallery .box-viewing .button-left,
.content-gallery .box-viewing .button-right {
    position: absolute; /* 固定配置で消えないようにする */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #135477;
    border-radius: 6px;
    padding: 25px 10px;
    cursor: pointer;
    z-index: 10; /* ボタンが最前面にくるように */
}

/* ボタンの矢印画像 */
.content-gallery .box-viewing .button-left img,
.content-gallery .box-viewing .button-right img {
    width: 6px;
    height: 10px;
}

.content-gallery .box-viewing .button-left {
    left: -20px; /* 位置を適切に調整 */
}
.content-gallery .box-viewing .button-right {
    right: -20px;
}

/* メイン画像（キッチリ枠に収める） */
.content-gallery .box-viewing .box-viewing_Image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden; /* 画像がはみ出ないように */
}

.content-gallery .box-viewing .box-viewing_Image .viewing-Image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 画像全体を枠内に収める */
    display: block;
}

/* サムネイル画像のコンテナ */
.content-gallery .Images {
    display: grid; /* グリッドレイアウトを使用 */
    grid-template-columns: repeat(2, 1fr); /* 2列に設定 */
    gap: 20px; /* 画像間の余白を均一化 */
    justify-content: center;
    align-items: center;
    width: fit-content;
}

/* サムネイル画像 */
.content-gallery .Images .gallery-image {
    width: 100%;
    height: 140px;
    max-width: 174px;
    border-radius: 6px;
    object-fit: contain; /* サムネイルも枠内に収める */
    background-color: #eee; /* 画像がないときの枠を維持 */
}

/* --- レスポンシブ調整 --- */
@media screen and (max-width: 1350px) {
    .content-gallery {
        gap: 15px; /* 画像群と拡大画像の間隔を統一 */
    }
    
    .content-gallery .box-viewing {
        width: 600px;
        height: 414px;
    }
    
    .content-gallery .Images .gallery-image {
        height: 133px;
        max-width: 170px;
    }
}

@media screen and (max-width: 1150px) {
    .content-gallery {
        gap: 15px;
    }

    .content-gallery .box-viewing {
        width: 536px;
        height: 368px;
    }

    .content-gallery .Images .gallery-image {
        height: 114px;
        max-width: 145px;
    }
}

@media screen and (max-width: 855px) {
    .gallery .content-gallery {
        gap: 30px;
    }

    .content-gallery {
        flex-direction: column;
        gap: 20px;
    }

    .content-gallery .box-viewing {
        width: 509px;
        height: 350px;
    }


    /* 画像を2行3列で表示 */
    .content-gallery .Images {
        width: 90%;
        grid-template-columns: repeat(3, 1fr); /* 3列に設定 */
        gap: 15px; /* 均等な余白 */
    }

    .content-gallery .Images .gallery-image {
        height: auto;
        max-width: 100%;
        aspect-ratio: 16 / 9; /* 画像のアスペクト比を統一 */
    }
}

@media screen and (max-width: 600px) {
    .content-gallery {
        gap: 15px;
    }

    .content-gallery .box-viewing {
        width: 100%;
        height: 282px;
    }

    .content-gallery .box-viewing .button-left,
    .content-gallery .box-viewing .button-right {
        padding: 20px 7px;
    }

    .content-gallery .box-viewing .button-left {
        left: -10px;
    }
    .content-gallery .box-viewing .button-right {
        right: -10px;
    }
}

@media screen and (max-width: 500px) {
    .content-gallery {
        gap: 12px;
    }

    .content-gallery .box-viewing {
        height: 235px;
    }

    .content-gallery .Images {
        gap: 10px;
    }
}

@media screen and (max-width: 400px) {
    .content-gallery {
        gap: 10px;
    }

    .content-gallery .Images {
        gap: 8px;
    }
}


/* 
----------------------------------------
********** ギャラリー画像 ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */




/* 
----------------------------------------
********** 遷移ボタン ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
.Buttons-transition{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 40px;
}

.Buttons-transition .content-Buttons-transition{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;
}

.content-Buttons-transition  p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: center;
    color: #FFFFFF;

}

.content-Buttons-transition .button-blue
,.content-Buttons-transition .button-green{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 350px;
    padding: 12px 25px;
    border-radius: 34px;
}

.content-Buttons-transition .slash{
    width: 8px;
    height: 13px;
}

.content-Buttons-transition .button-blue{
    /* background-color: #2C7DAA; */
    background-image: linear-gradient(150deg, rgba(44, 125, 170, 1), rgba(20, 84, 119, 1));
}
.content-Buttons-transition .button-blue .icon_text{
    display: flex;
    justify-content: left;
    align-items: center;

    gap: 5px;
}
.content-Buttons-transition .button-blue .icon{
    width: 20px;
    height: 20px;
    position: relative;
    bottom: 2px;
}
.content-Buttons-transition .button-blue .text-l1{
    font-size: 14px;
}
.content-Buttons-transition .button-blue .text-l2{
    font-size: 16px;
}


.content-Buttons-transition .button-green{
    /* background-color: #2CAAA5; */
    background-image: linear-gradient(100deg, rgba(44, 170, 165, 1), rgba(20, 119, 115, 1));
}
.content-Buttons-transition .button-green .icon_text{
    display: flex;
    justify-content: left;
    align-items: center;

    gap: 15px;
}
.content-Buttons-transition .button-green .icon{
    width: 20px;
    height: 20px;
    position: relative;
    bottom: 2px;
}
.content-Buttons-transition .button-green .text-l1{
    font-size: 14px;
}
.content-Buttons-transition .button-green .text-l2{
    font-size: 16px;
}
@media screen and (max-width: 1150px) {
    .content-Buttons-transition .button-blue
    ,.content-Buttons-transition .button-green{
        width: 100%;
        max-width: 350px;
        padding: 12px 15px;
    }

}
@media screen and (max-width: 855px) {
    .Buttons-transition .content-Buttons-transition {
        width: 100%;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }
    .content-Buttons-transition .button-blue, .content-Buttons-transition .button-green {
        width: calc(100% - 20px);
        max-width: 400px;
        padding: 6px 10px;
    }
    .content-Buttons-transition .button-blue .text-l1{
        font-size: 12px;
    }
    .content-Buttons-transition .button-blue .text-l2{
        font-size: 14px;
    }
    .content-Buttons-transition .button-green .text-l1{
        font-size: 12px;
    }
    .content-Buttons-transition .button-green .text-l2{
        font-size: 14px;
    }
}
@media screen and (max-width: 550px) {
    
}
@media screen and (max-width: 400px) {
    
    .content-Buttons-transition .button-blue .text-l2{
        font-size: 13px;
    }
}

/* 
----------------------------------------
********** 遷移ボタン ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */





/* 
----------------------------------------
********** サイネージの料金 ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */

.fee-signage{
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #F5F5F5;

    width: calc(100% - 64px);
    padding: 32px;
    border-radius: 6px ;
    margin-bottom: 40px;

}

.content-fee-signage{
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: left;
}

.content-fee-signage .topic-name{
    display: flex;
    align-items: center;

    gap: 8px;
    margin-right: 14px;
}

.content-fee-signage .topic-name img{
    width: 17px;
    height: 32px;

    position: relative;
    bottom: 1px;
}
.content-fee-signage .topic-name p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 22px;
}


.content-fee-signage .horLine{
    background: #135477;/*線の色指定*/
    width:auto;/*線の幅指定*/
    height:1px;/*線の高さ指定*/

    margin: 20px 0px;
}

.table_fee{
    margin-bottom: 16px;
    width: 100%;
}

.table_fee, .table_fee-th, .table_fee-td {
    border:1px solid #D1D1D1;
}
.table_fee-th{
    background-color: #135477;
    color: white;

    
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: center;

    font-size: 14px;
    padding: 12px;
}
.table_fee-td {
    background-color:white;
    color: #434343;

    
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: left;

    font-size: 14px;
    padding: 12px 16px;
}


.content-fee-signage .text-name{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 18px;
    margin-bottom: 16px;
}


.content-fee-signage .text-content{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: left;
    color: #135477;

    font-size: 14px;
}

@media screen and (max-width: 1150px) {
    .fee-signage {
        overflow-x: auto;
        white-space: nowrap;

    }
    .flame-table {
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
        margin-bottom: 24px;

    }
    /* スクロールバー全体のスタイル */
    .flame-table::-webkit-scrollbar {
        width: 100%; /* スクロールバーの幅 */
        height: 6px; /* 横スクロールバーの高さ */
        border-radius: 3px; /* つまみの角を丸くする */

    }

    /* スクロールバーのトラック（背景）のスタイル */
    .flame-table::-webkit-scrollbar-track {
        background: #D5D5D5; /* 背景色 */
    }

    /* スクロールバーのつまみのスタイル */
    .flame-table::-webkit-scrollbar-thumb {
        background: #135477; /* つまみの色 */
        border-radius: 3px; /* つまみの角を丸くする */
    }

    /* スクロールバーのつまみをホバーしたときのスタイル */
    .flame-table::-webkit-scrollbar-thumb:hover {
        background: #135477;/* ホバー時のつまみの色 */
    }
}
@media screen and (max-width: 855px) {
    .fee-signage {
        width: calc(100% + 30px);
        padding: 16px;
        margin-bottom: 24px;
        position: relative;
        right: 30px;
    }
    /* スクロールバー全体のスタイル */
    .fee-signage::-webkit-scrollbar {
        width: 0%; /* スクロールバーの幅 */
        height: 0px; /* 横スクロールバーの高さ */
    }
}
@media screen and (max-width: 550px) {
    .fee-signage {
        width: 100%;
        position: relative;
        right: 20px;
    }
    .content-fee-signage .topic-name img {
        width: 17px;
        height: 30px;
        position: relative;
        bottom: 3px;
    }
    .content-fee-signage .topic-name p {
        font-size: 18px;
    }
    .content-fee-signage .horLine {
        background: #135477;
        width: auto;
        height: 1px;
        margin: 16px 0px;
    }
    .content-fee-signage .text-name {
        font-size: 16px;
        margin-bottom: 13px;
    }
    .content-fee-signage .text-name {
        font-size: 16px;
        margin-bottom: 14px;
    }
}
@media screen and (max-width: 400px) {
    
}
/* 
----------------------------------------
********** サイネージの料金 ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */





/* 
----------------------------------------
********** サイネージの媒体資料 ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */

.Media-Material-signage{
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #F5F5F5;

    width: calc(100% - 64px);
    padding: 32px;
    border-radius: 6px ;
    margin-bottom: 40px;

}

.content-Media-Material-signage{
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: left;
}

.content-Media-Material-signage .topic-name{
    display: flex;
    align-items: center;

    gap: 8px;
    margin-right: 14px;
}

.content-Media-Material-signage .topic-name img{
    width: 17px;
    height: 32px;

    position: relative;
    bottom: 4px;
}
.content-Media-Material-signage .topic-name p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 22px;
}


.content-Media-Material-signage .horLine{
    background: #135477;/*線の色指定*/
    width:auto;/*線の幅指定*/
    height:1px;/*線の高さ指定*/

    margin: 20px 0px;
}

.content-Media-Material-signage .flame-Media-materials{
    display: flex;
    justify-content: space-between;

    width: 100%;
    gap: 20px;

}

.content-Media-Material-signage .box-Media-material{
    display: flex;
    flex-flow: column;

    width: 100%;
    justify-content: center;
    align-items: center;
}
.content-Media-Material-signage .box-Media-material .image-Media-material{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 213px;
    margin-bottom: 16px;
}
.content-Media-Material-signage .box-Media-material .image-Media-material img{
    width: auto;
    height: 100%;
}
.content-Media-Material-signage .box-Media-material .text-content{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #434343;

    width: 100%;
    font-size: 14px;
}

@media screen and (max-width: 1150px) {
    .content-Media-Material-signage .flame-Media-materials {
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 17px;

    }
    /* スクロールバー全体のスタイル */
    .content-Media-Material-signage .flame-Media-materials::-webkit-scrollbar {
        width: 100%; /* スクロールバーの幅 */
        height: 6px; /* 横スクロールバーの高さ */
        border-radius: 3px; /* つまみの角を丸くする */

    }

    /* スクロールバーのトラック（背景）のスタイル */
    .content-Media-Material-signage .flame-Media-materials::-webkit-scrollbar-track {
        background: #D5D5D5; /* 背景色 */
    }

    /* スクロールバーのつまみのスタイル */
    .content-Media-Material-signage .flame-Media-materials::-webkit-scrollbar-thumb {
        background: #135477; /* つまみの色 */
        border-radius: 3px; /* つまみの角を丸くする */
    }

    /* スクロールバーのつまみをホバーしたときのスタイル */
    .content-Media-Material-signage .flame-Media-materials::-webkit-scrollbar-thumb:hover {
        background: #135477;/* ホバー時のつまみの色 */
    }    
}
@media screen and (max-width: 855px) {
    .Media-Material-signage {
        width: calc(100% + 30px);
        padding: 16px;
        margin-bottom: 24px;
        position: relative;
        right: 30px;
    }
}
@media screen and (max-width: 550px) {
    .Media-Material-signage {
        width: 100% ;
        position: relative;
        right: 20px;
    }
    .content-Media-Material-signage .topic-name p {
        font-size: 18px;
    }
    .content-Media-Material-signage .topic-name img {
        width: 17px;
        height: 28px;
        position: relative;
        bottom: 2px;
    }
}
@media screen and (max-width: 400px) {
    
}

/* 
----------------------------------------
********** サイネージの媒体資料 ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */

/* 
----------------------------------------
********** サイネージのクリエイティブ事例 ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */

.Creative-Case-signage{
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #F5F5F5;

    width: calc(100% - 64px);
    padding: 32px;
    border-radius: 6px ;
    margin-bottom: 40px;

}

.content-Creative-Case-signage{
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: left;
}

.content-Creative-Case-signage .topic-name{
    display: flex;
    align-items: center;

    gap: 8px;
    margin-right: 14px;
}

.content-Creative-Case-signage .topic-name img{
    width: 17px;
    height: 32px;

    position: relative;
    bottom: 1px;
}
.content-Creative-Case-signage .topic-name p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 22px;
}


.content-Creative-Case-signage .horLine{
    background: #135477;/*線の色指定*/
    width:auto;/*線の幅指定*/
    height:1px;/*線の高さ指定*/

    margin: 20px 0px;
}

.content-Creative-Case-signage .flame-Image-Name{
    display: flex;
    justify-content: space-between;

    width: 100%;
    gap: 20px;

}

.content-Creative-Case-signage .box-Case-Facility{
    display: flex;
    flex-flow: column;

    width: 100%;
    justify-content: center;
    align-items: center;
}
.content-Creative-Case-signage .box-Case-Facility .image-Case-Facility{
    width: auto;
    height: 213px;
    margin-bottom: 16px;
}
.content-Creative-Case-signage .box-Case-Facility .text-content{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #434343;

    width: 100%;
    font-size: 14px;
}
@media screen and (max-width: 1150px) {
    .content-Creative-Case-signage .flame-Image-Name {
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 17px;

    }
    /* スクロールバー全体のスタイル */
    .content-Creative-Case-signage .flame-Image-Name::-webkit-scrollbar {
        width: 100%; /* スクロールバーの幅 */
        height: 6px; /* 横スクロールバーの高さ */
        border-radius: 3px; /* つまみの角を丸くする */

    }

    /* スクロールバーのトラック（背景）のスタイル */
    .content-Creative-Case-signage .flame-Image-Name::-webkit-scrollbar-track {
        background: #D5D5D5; /* 背景色 */
    }

    /* スクロールバーのつまみのスタイル */
    .content-Creative-Case-signage .flame-Image-Name::-webkit-scrollbar-thumb {
        background: #135477; /* つまみの色 */
        border-radius: 3px; /* つまみの角を丸くする */
    }

    /* スクロールバーのつまみをホバーしたときのスタイル */
    .content-Creative-Case-signage .flame-Image-Name::-webkit-scrollbar-thumb:hover {
        background: #135477;/* ホバー時のつまみの色 */
    }    
}
@media screen and (max-width: 855px) {
    .Creative-Case-signage {
        width: calc(100% + 30px);
        padding: 16px;
        margin-bottom: 24px;
        position: relative;
        right: 30px;
    }
}
@media screen and (max-width: 550px) {
    .Creative-Case-signage  {
        width: 100%;
        position: relative;
        right: 20px;
    }
    .content-Creative-Case-signage .topic-name p {
        font-size: 18px;
        letter-spacing: -3px ;
    }
    .content-Creative-Case-signage .topic-name img {
        width: 17px;
        height: 28px;
        position: relative;
        bottom: 0px;
    }
}
@media screen and (max-width: 400px) {
    
}
/* 
----------------------------------------
********** サイネージのクリエイティブ事例 ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */



/* 
----------------------------------------
********** サイネージの掲載場所 ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */

.publish-place-signage{
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #F5F5F5;

    width: calc(100% - 64px);
    padding: 32px;
    border-radius: 6px ;
    margin-bottom: 40px;

}

.content-publish-place-signage{
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: left;
}

.content-publish-place-signage .topic-name{
    display: flex;
    align-items: center;

    gap: 8px;
    margin-right: 14px;
}

.content-publish-place-signage .topic-name img{
    width: 17px;
    height: 32px;

    position: relative;
    bottom: 1px;
}
.content-publish-place-signage .topic-name p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 22px;
}


.content-publish-place-signage .horLine{
    background: #135477;/*線の色指定*/
    width:auto;/*線の幅指定*/
    height:1px;/*線の高さ指定*/

    margin: 20px 0px;
}

.table-place{
    width: 100%;
    margin-bottom: 16px;
}

.table-place
,.table-place tr
,.table-place th {
    border:1px solid #D1D1D1;
}

.table-place .row-header{
    background-color: #135477;
    color: white;

    
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;

    font-size: 14px;
    padding: 12px 16px;
    width: 56px;
}

.table-place .row-content {
    background-color:white;
    color: #434343;

    
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: left;

    font-size: 14px;
    padding: 12px 16px;
}

@media screen and (max-width: 1150px) {
    .content-publish-place-signage{
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1px;

    }
    
    .content-publish-place-signage .horLine{
        margin: 0px 0px;
    }
    /* スクロールバー全体のスタイル */
    .content-publish-place-signage::-webkit-scrollbar {
        width: 100%; /* スクロールバーの幅 */
        height: 6px; /* 横スクロールバーの高さ */
        border-radius: 3px; /* つまみの角を丸くする */

    }

    /* スクロールバーのトラック（背景）のスタイル */
    .content-publish-place-signage::-webkit-scrollbar-track {
        background: #D5D5D5; /* 背景色 */
    }

    /* スクロールバーのつまみのスタイル */
    .content-publish-place-signage::-webkit-scrollbar-thumb {
        background: #135477; /* つまみの色 */
        border-radius: 3px; /* つまみの角を丸くする */
    }

    /* スクロールバーのつまみをホバーしたときのスタイル */
    .content-publish-place-signage::-webkit-scrollbar-thumb:hover {
        background: #135477;/* ホバー時のつまみの色 */
    }
    .table-place .remarks {
        white-space: nowrap;
        max-width: 950px;
    }
}
@media screen and (max-width: 855px) {
    .publish-place-signage {
        width: calc(100% + 30px);
        padding: 16px;
        margin-bottom: 24px;
        position: relative;
        right: 30px;
    }
}
@media screen and (max-width: 550px) {
    .publish-place-signage {
        width: 100%;
        position: relative;
        right: 20px;
    }
    .content-publish-place-signage .topic-name p {
        font-size: 18px;
        letter-spacing: -1px ;
    }
    .content-publish-place-signage .topic-name img {
        width: 17px;
        height: 28px;
        position: relative;
        bottom: 0px;
    }
}
@media screen and (max-width: 400px) {
    
}


/* 
----------------------------------------
********** サイネージの掲載場所 ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */







/* 
----------------------------------------
********** サイネージの説明 ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */

.explain-signage{
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #F5F5F5;

    width: calc(100% - 64px);
    padding: 32px;
    border-radius: 6px ;
    margin-bottom: 40px;

}

.content-explain-signage{
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: left;
}

.content-explain-signage .topic-name{
    display: flex;
    align-items: center;

    gap: 8px;
    margin-right: 14px;
}

.content-explain-signage .topic-name img{
    width: 17px;
    height: 32px;

    position: relative;
    bottom: 4px;
}
.content-explain-signage .topic-name p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 22px;
}


.content-explain-signage .horLine{
    background: #135477;/*線の色指定*/
    width:auto;/*線の幅指定*/
    height:1px;/*線の高さ指定*/

    margin: 20px 0px;
}

.flame-content{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: left;
    color: #434343;

    font-size: 12px;
    width: 100%;
    margin-bottom: 50px;
}

@media screen and (max-width: 1150px) {
}
@media screen and (max-width: 855px) {
    .explain-signage {
        width: calc(100% + 30px);
        padding: 16px;
        margin-bottom: 24px;
        position: relative;
        right: 30px;
    }
}
@media screen and (max-width: 550px) {
    .explain-signage {
        width: 100%;
        position: relative;
        right: 20px;
    }
    .content-explain-signage .topic-name p {
        font-size: 18px;
        letter-spacing: -1px ;
    }
    .content-explain-signage .topic-name img {
        width: 17px;
        height: 28px;
        position: relative;
        bottom: 0px;
    }
}
@media screen and (max-width: 400px) {
    
}


/* 
----------------------------------------
********** サイネージの説明 ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */




/* 
----------------------------------------
********** サイネージのﾃﾞｰﾀで見る ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
.viewing-data-signage{
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #F5F5F5;

    width: calc(100% -32px);
    padding: 32px;
    border-radius: 6px ;
    margin-bottom: 40px;

}

.content-viewing-data-signage{
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: left;
}

.content-viewing-data-signage .topic-name{
    display: flex;
    align-items: center;

    gap: 8px;
    margin-right: 14px;
}

.content-viewing-data-signage .topic-name img{
    width: 17px;
    height: 32px;

    position: relative;
    bottom: 4px;
}
.content-viewing-data-signage .topic-name p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 22px;
}


.content-viewing-data-signage .horLine{
    background: #135477;/*線の色指定*/
    width:auto;/*線の幅指定*/
    height:1px;/*線の高さ指定*/

    margin: 20px 0px;
}

.table-viewing-data{
    width: 100%;
    margin-bottom: 16px;
}

.table-viewing-data
,.table-viewing-data tr
,.table-viewing-data td {
    border:1px solid #D1D1D1;
}

.table-viewing-data .column-header
,.table-viewing-data .column-content{
    font-family: 'Noto Sans JP', sans-serif;
    vertical-align: middle; /* 縦中央揃え */
    text-align: center; /* 横中央揃え */
    padding: 12px 16px;

    width: calc(100% / 3);
}


.table-viewing-data .column-header{
    background-color: #135477;
    color: white;
    
    font-weight:  bold;
    font-size: 14px;
}

.table-viewing-data .column-content {
    background-color:white;
    color: #434343;

    margin: 0;
    font-weight:  bold;
    font-size: 14px;
}
.column-content-viewing-attributes p{
    font-size: 14px;
}
.viewing-data-signage .table-mini{
    display: none;
}

@media screen and (max-width: 1150px) {
    
}
@media screen and (max-width: 855px) {
    .viewing-data-signage {
        width: calc(100% + 30px);
        padding: 16px;
        margin-bottom: 24px;
        position: relative;
        right: 30px;
    }

    .viewing-data-signage .table-dai{
        display: none;
    }
    .viewing-data-signage .table-mini{
        display: block;
    }
}
@media screen and (max-width: 550px) {
    .viewing-data-signage {
        width: 100% ;
        position: relative;
        right: 20px;
    }
    .content-viewing-data-signage .topic-name p {
        font-size: 18px;
        letter-spacing: -1px ;
    }
    .content-viewing-data-signage .topic-name img {
        width: 17px;
        height: 28px;
        position: relative;
        bottom: 0px;
    }
    .table-viewing-data .column-content {
        font-size: 16px;
    }
}
@media screen and (max-width: 400px) {
    
}

/* 
----------------------------------------
********** サイネージのﾃﾞｰﾀで見る ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */




/* 
----------------------------------------
********** ご掲出について ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */

.Posting-signage{
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #F5F5F5;

    width: calc(100% - 64px);
    padding: 32px;
    border-radius: 6px ;
    margin-bottom: 40px;

}

.content-Posting-signage{
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: left;
}

.content-Posting-signage .topic-name{
    display: flex;
    align-items: center;

    gap: 8px;
    margin-right: 14px;
}

.content-Posting-signage .topic-name img{
    width: 17px;
    height: 32px;

    position: relative;
    bottom: 4px;
}
.content-Posting-signage .topic-name p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 22px;
}


.content-Posting-signage .horLine{
    background: #135477;/*線の色指定*/
    width:auto;/*線の幅指定*/
    height:1px;/*線の高さ指定*/

    margin: 20px 0px;
}

.content-Posting-signage .flame-flow{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: left;
    color: #434343;

    font-size: 12px;
    width: 100%;
}

.content-Posting-signage .name_topic{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 18px;
    margin-bottom: 16px;
}


.content-Posting-signage .flame-flow .box-flow{
    display: flex;
    width: 100%;
    margin-bottom: 16px;
}
.content-Posting-signage .flame-flow .box-flow .No-flow{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#135477 ;
    color: #FFFFFF;;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: center;
    vertical-align: middle; /* 縦中央揃え */

    font-size: 20px;
    width: 30px;
    height: auto;
    margin-right: 12px;

}
.content-Posting-signage .flame-flow .box-flow .text-flow{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;

    width: 100%;
    height: auto;
}
.content-Posting-signage .flame-flow .box-flow .text-flow .Outline{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    vertical-align: middle; /* 縦中央揃え */
    color:#434343;

    font-size: 16px;
}
.content-Posting-signage .flame-flow .box-flow .text-flow .Detail{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: left;
    vertical-align: middle; /* 縦中央揃え */
    color: #434343;

    font-size: 14px;
}


.table-rule{
    width: 100%;
    margin-bottom: 16px;
}

.table-rule
,.table-rule tr {
    border:1px solid #D1D1D1;
}

.table-rule .row-header{
    background-color: #135477;
    color: white;

    
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;

    font-size: 14px;
    padding: 12px 16px;
    width: 56px;
}

.table-rule .row-content {
    background-color:white;
    color: #434343;

    
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: left;

    font-size: 14px;
    padding: 12px 16px;
}

.flame-additional-information .content-additional-information{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: left;

    font-size: 14px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1150px) {
    .content-Posting-signage .flame-rule{
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1px;
        margin-bottom: 15px;
    }
    
    /* .content-Posting-signage .horLine{
        margin: 0px 0px;
    } */
    /* スクロールバー全体のスタイル */
    .content-Posting-signage .flame-rule::-webkit-scrollbar {
        width: 100%; /* スクロールバーの幅 */
        height: 6px; /* 横スクロールバーの高さ */
        border-radius: 3px; /* つまみの角を丸くする */

    }

    /* スクロールバーのトラック（背景）のスタイル */
    .content-Posting-signage .flame-rule::-webkit-scrollbar-track {
        background: #D5D5D5; /* 背景色 */
    }

    /* スクロールバーのつまみのスタイル */
    .content-Posting-signage .flame-rule::-webkit-scrollbar-thumb {
        background: #135477; /* つまみの色 */
        border-radius: 3px; /* つまみの角を丸くする */
    }

    /* スクロールバーのつまみをホバーしたときのスタイル */
    .content-Posting-signage .flame-rule::-webkit-scrollbar-thumb:hover {
        background: #135477;/* ホバー時のつまみの色 */
    }
}
@media screen and (max-width: 855px) {
    .Posting-signage {
        width: calc(100% + 30px);
        padding: 16px;
        margin-bottom: 24px;
        position: relative;
        right: 30px;
    }

}
@media screen and (max-width: 550px) {
    .Posting-signage {
        width: 100%;
        position: relative;
        right: 20px;
    }
    .content-Posting-signage .topic-name p {
        font-size: 18px;
        letter-spacing: -1px ;
    }
    .content-Posting-signage .topic-name img {
        width: 17px;
        height: 28px;
        position: relative;
        bottom: 0px;
    }
}
@media screen and (max-width: 400px) {
    
}
/* 
----------------------------------------
********** ご掲出について ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */



/* 
----------------------------------------
********** 関連するデジタルサイネージ ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
.Related-signage{
    width: 100%;
    margin-bottom: 80px;
}
.Related-signage .horLine-up
,.Related-signage .horLine-down{
    background: #EFEFEF;/*線の色指定*/
    width:auto;/*線の幅指定*/
    height:2px;/*線の高さ指定*/
}
.Related-signage .horLine-up{
    margin-bottom: 30px;
}
.Related-signage .horLine-down{
    margin-top: 20px;
    margin-bottom: 28px;
}

.content-Related-signage{
    width: 100%;
}
.content-Related-signage .topic-name .Related{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 18px;
    margin-bottom: 20px;

}

.flame-box-Related-signage{
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.flame-box-Related-signage .box-Related-signage{
    display: flex;
    flex-flow: column ;
    align-items: baseline;
    color: #434343;
}

.flame-box-Related-signage .box-Related-signage .viewing-Image{
    object-fit: cover; /* アスペクト比を維持して、指定サイズに収める */
    width: 260px;
    height: 170px;
    margin-bottom: 16px;
}

.flame-box-Related-signage .box-Related-signage .title-Related-signage{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #434343;

    font-size: 14px;
    white-space: nowrap; /* テキストを1行に制限 */
    overflow: hidden; /* 溢れた部分を非表示にする */
    text-overflow: ellipsis; /* 超えた部分を「…」で表示 */
    margin-bottom: 9px;
}

.flame-box-Related-signage .box-Related-signage .box-taxonomy{
    display: flex;
    justify-content: left;
    gap: 12px;
    align-items: center;
    margin-bottom: 9px;
}
.flame-box-Related-signage .box-Related-signage .box-taxonomy .taxonomy-name{
    vertical-align: middle; /* 縦中央揃え */
    text-align: center; /* 横中央揃え */
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    background-color: #EDEDED;

    color: #434343;

    width: 75px;
    font-size: 12px;
    border-radius: 2px;
    padding: 4px 5px;
}
.box-Related-signage .box-taxonomy .taxonomy-list{
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.box-Related-signage .box-taxonomy .taxonomy-list li{
    list-style: none;
}
.box-Related-signage .box-taxonomy .taxonomy-list li .text-content{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: center;
    /* vertical-align: middle; */
    color: #434343;

    font-size: 16px;
    letter-spacing: -1px;
}
.box-Related-signage .box-taxonomy .taxonomy-list li .per-conten{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: center;
    vertical-align: middle;
    color: #434343;

    font-size: 12px;
}



@media screen and (max-width: 1350px) {
    .content-Related-signage{
        width: calc(100% - 32px);
        padding: 0 16px;
    }
    .flame-box-Related-signage {
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
        margin-bottom: 24px;
        padding-bottom: 24px;

    }
        /* スクロールバー全体のスタイル */
    .flame-box-Related-signage::-webkit-scrollbar {
        width: 100%; /* スクロールバーの幅 */
        height: 6px; /* 横スクロールバーの高さ */
        border-radius: 3px; /* つまみの角を丸くする */

    }

    /* スクロールバーのトラック（背景）のスタイル */
    .flame-box-Related-signage::-webkit-scrollbar-track {
        background: #D5D5D5; /* 背景色 */
    }

    /* スクロールバーのつまみのスタイル */
    .flame-box-Related-signage::-webkit-scrollbar-thumb {
        background: #135477; /* つまみの色 */
        border-radius: 3px; /* つまみの角を丸くする */
    }

    /* スクロールバーのつまみをホバーしたときのスタイル */
    .flame-box-Related-signage::-webkit-scrollbar-thumb:hover {
        background: #135477;/* ホバー時のつまみの色 */
    }

}
@media screen and (max-width: 855px) {
    .content-Related-signage {
        width: 100%;
        padding: 0;
    }
    .Related-signage {
        border-bottom: 4px solid #F5F5F5;
        margin-bottom: 40px;
    }

    .content-Related-signage .topic-name .Related {
        font-size:22px;
        margin-bottom: 20px;
    }
    
}
@media screen and (max-width: 550px) {
    

    .Related-signage-blue-button-inner{
        padding: 0 10px;
    }
    .flame-box-Related-signage {
        gap: 14px;
        margin-top: -15px;
    }
    .content-Related-signage .topic-name .Related {
        font-size: 18px;
    }
    .Related-signage-blue-button-inner .button-blue {
        padding: 6px 15px;
    }
}
@media screen and (max-width: 400px) {
    .Related-signage-blue-button-inner .button-blue {
        padding: 3px 0px;
    }
    .Related-signage-blue-button-inner .button-blue .icon_text {
        gap: 20px;
    }
    .Related-signage-blue-button-inner .button-blue .text-l1 {
        font-size: 12px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .Related-signage-blue-button-inner .button-blue .text-l2 {
        font-size: 14px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .Related-signage-blue-button-inner  .button-blue .icon {
        width: 16px;
        height: 16px;
        bottom: 1px;
    }

    .content-Related-signage .topic-name .Related {
        font-size: 16px;
    }
}
/* 
----------------------------------------
********** 関連するデジタルサイネージ ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */

/* 
----------------------------------------
********** 関連コラムエリア ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
.space-Related-column{
    display: flex;
    justify-content: center;
    align-items: center;

    /* padding: 0 170px; */
    /* width: calc(100% - 340px); */
    
    width: 100%;
    margin-bottom:83px;
}
.space-Related-column .content-Related-column{ 
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;
    gap: 41px;

    width: 100%;
}
.space-Related-column .content-Related-column .flame-title a{
    width: 100%;
    display: flex;
    justify-content: end;
}
.space-Related-column .content-Related-column .text-summary{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: left;
    color: #434343;

    width: 100%;
    font-size: 16px;
}
.space-Related-column .content-Related-column .topic-Name{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    width: 100%;
    font-size: 32px;
}
.space-Related-column .content-Related-column .flame-columns{ 
    display: flex;
    justify-content: space-between;

    gap:25px ;
    width: 100%;
    margin-bottom: 40px;
}
.space-Related-column .content-Related-column .flame-columns .box-column{ 
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: baseline;

}
.space-Related-column .content-Related-column .flame-columns .box-column img{ 
    width: 350px;
    height: 250px;
    border-radius: 6px;

    margin-bottom: 16px;
}
.space-Related-column .content-Related-column .flame-columns .box-column .box-category{ 
    display: flex;
    /* justify-content: center; */
    justify-content: left;
    align-items: center;
    /* padding: 2px 10px;
    background-color: #2C7DAA; */

    /* border-radius: 2px; */
    gap: 10px;
    margin-bottom: 9px;
}
.space-Related-column .content-Related-column .flame-columns .box-column .text-category{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    width: 100%;
    text-align: center;
    vertical-align: middle;

    color: white;
    padding: 2px 10px;
    background-color: #2C7DAA;
    border-radius: 2px;
    font-size: 12px;
}
.space-Related-column .content-Related-column .flame-columns .box-column .title{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    width: 100%;
    text-align: left;
    margin-bottom: 9px;

    color: #434343;
    font-size: 14px;
}
.space-Related-column .content-Related-column .flame-columns .box-column .date{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    width: 100%;
    text-align: left;

    color: #434343;
    font-size: 12px;
}

@media screen and (max-width: 1200px) {
    .space-Related-column{
        /* width: calc(100% - 32px);
        padding: 0 16px; */
        margin-bottom: 60px;
    }

    .space-Related-column .content-Related-column .flame-columns .box-column img {
        width: 245px;
        height: 175px;
    }
}
@media screen and (max-width: 855px) {
    .space-Related-column .content-Related-column {
        gap: 21px;
    }

    .space-Related-column .content-Related-column .flame-columns .box-column img {
        width: 350px;
        height: 250px;
    }
    .space-Related-column .content-Related-column .flame-columns {
        display: flex;
        flex-flow: column;
        justify-content: center;
        gap: 25px;
        align-items: center;
        width: 100%;
    }
    
    .space-Related-column .content-Related-column .topic-Name {
        font-size: 28px;
    }
    
}
@media screen and (max-width: 550px) {
    .space-Related-column{
        margin-bottom: 40px;
    }
    .space-Related-column .content-Related-column .topic-Name {
        font-size: 23px;
    }
}
@media screen and (max-width: 400px) {
    .space-Related-column .content-Related-column .flame-columns .box-column img {
        width: 328px;
        height: 234px;
    }
    .space-Related-column .content-Related-column .topic-Name {
        font-size: 20px;
    }
}
/* 
----------------------------------------
********** 関連コラムエリア ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */



/* 
----------------------------------------
********** 一緒に検討されているデジタルサイネージ ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
.content-Related-signage .topic-name .Consider{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 32px;
    margin-bottom: 40px;
}
@media screen and (max-width: 1150px) {
    .Related-signage.with {
        border-bottom: 0px solid #F5F5F5;
        margin-bottom: 0px;
    }
}
@media screen and (max-width: 855px) {
    
}
@media screen and (max-width: 550px) {
    .content-Related-signage .topic-name .Consider {
        width: 185px;
        font-size: 20px;
        margin-bottom: 21px;
        letter-spacing: -2px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 400px) {
    
}
/* 
----------------------------------------
********** 一緒に検討されているデジタルサイネージ ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */