.flame-title{ 
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.flame-title .title-left{ 
    width: 100%;
}
.flame-title .title-left .text-mini{ 
    font-family: 'Poppins', sans-serif;
    font-weight:  normal;
    text-align: left;
    color: #135477;

    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
}
.flame-title .title-left .topic-Name{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 32px;
    
    letter-spacing:-1px; 
}
.flame-title a{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: center;
    color: #434343;

    font-size: 16px;
    
    letter-spacing:-1px; 
}

@media screen and (max-width: 1150px) {
    .flame-title .title-left .topic-Name{
        font-size: 28px;
    }
}
@media screen and (max-width: 855px) {
    .flame-title {
        display: flex;
        flex-flow: column;
        gap: 23px;
    }
}
@media screen and (max-width: 550px) {
    
}
@media screen and (max-width: 400px) {
    
}
/* 
----------------------------------------
********** トップエリア ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
.space-top-view{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;

    width: 100%;
    height: 760px;
    position: relative;
    z-index: 1; /* 本体の要素の前面に表示されるように */

}
.space-top-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    /* 仮で高さ設定 */
    height: 100%;
    background-color: rgba(19, 84, 119, 0.15);
    z-index: -2; /* 背景が下になるように */
}
.space-top-view .content-top-view{ 
    display: flex;
    justify-content: center;
    align-items: end;
    overflow: hidden;

    gap: 54px;
    width: 100%;
    height: 100%;
}

.space-top-view .content-top-view .flame-title{
    display: flex;
    flex-flow: column;

    width: 100%;
}
.space-top-view .content-top-view .flame-title .header{
    display: flex;
    justify-content: left;
    align-items: end;

    gap: 20.6px;
    max-height: 106px;
    width: 100%;
    margin-bottom: 45px;

    /* 上部の隙間 */
    margin-top: 28px; 

}

.space-top-view .content-top-view .flame-title .header .logo-header{
    text-align: center;

    height: 50px;
    width: auto;
}

.space-top-view .content-top-view .flame-title .header p{
    display: flex;
    align-items: flex-end;
    font-family: 'Noto Sans JP';
    font-weight:  bold;
    text-align: left;
    color: #434343;
    height: 20px; 

    letter-spacing: 0;
    
    font-size: 10px;

}

.space-top-view .content-top-view .flame-title .box-summary{
    width: 100%;
    margin-bottom: 25px;
}
.space-top-view .content-top-view .flame-title .box-summary .text-summary{
    font-family: 'Noto Sans JP';
    font-weight:  bold;
    text-align: left;
    color: #434343;
    line-height: 60px;
    font-size: 42px;
}
.space-top-view .content-top-view .flame-title .box-summary .text-summary span{
    color: #2C7DAA;
}


.space-top-view .content-top-view .flame-title .box-search-top{
    display: flex;
    flex-flow: column;
    background-color: #FFFFFF;
    gap: 12px;

    width: calc(100% - 32px);
    width: 544px;
    padding: 16px;
    margin-bottom: 25px;

    border-radius: 6px;
}
.space-top-view .content-top-view .flame-title .box-search-top .topic-name{
    width: 100%;
    font-family: 'Noto Sans JP';
    font-weight:  bold;
    text-align: left;
    color: #135477;
    font-size: 16px;
}
.space-top-view .content-top-view .flame-title .box-search-top .box-search{
    display: flex;
    justify-content: center;
    align-items: center;
    
    border: solid 1px #D1D1D1;
    border-radius: 4px;
    width: 100%;
}
#select-area
,#select-type-signage{
    color: #BFBFBF ;
}
.space-top-view .content-top-view .flame-title .box-search-top .box-search .select-box{
    color:#BFBFBF ;
    font-family: 'Noto Sans JP';
    font-weight:  normal;
    text-align: left;
    color: #135477;
    font-size: 16px;
    border-right: solid 1px #D1D1D1;
    
    width: 100%;
    padding-top: 12px;
    padding-left: 16px;
    padding-bottom: 12px;

}
.space-top-view .content-top-view .flame-title .box-search-top .box-search .box-button-search{
    height: 100%;
}
.space-top-view .content-top-view .flame-title .box-search-top .box-search .box-button-search .button-search{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    background-color: #2C7DAA;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;

    width: 80px;
    position: relative;
    z-index: 1; /* 本体の要素の前面に表示されるように */

}
.space-top-view .content-top-view .flame-title .box-search-top .box-search .box-button-search .button-search::before{
    content: '';
    position: absolute;
    width: 100%;
    /* 仮で高さ設定 */
    height: 53px;
    /* background-color: #2C7DAA; */
    background-image: linear-gradient(100deg, rgba(44, 125, 170, 1), rgba(20, 84, 119, 1));
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: -1; /* 背景が下になるように */
}
.space-top-view .content-top-view .flame-title .box-search-top .box-search .box-button-search .button-search img{
    width: auto;
    height: 16px;
}
.space-top-view .content-top-view .flame-title .box-search-top .box-search .box-button-search .button-search p{
    font-family: 'Noto Sans JP';
    font-weight:  bold;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    font-size: 14px;
}


.space-top-view .content-top-view .flame-title .box-explain{
    width: 100%;
    margin-bottom: 42px;
}
.space-top-view .content-top-view .flame-title .box-explain .text-explain{
    font-family: 'Noto Sans JP';
    /* font-weight:  ; */
    text-align: left;
    vertical-align: middle;
    color:#434343;
    font-size: 18px;
}





.space-top-view .content-top-view .flame-title .button-blue{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    /* background-color: #2C7DAA; */
    background-image: linear-gradient(150deg, rgba(44, 125, 170, 1), rgba(20, 84, 119, 1));
    
    width: 100%;
    max-width: 350px;
    padding: 12px 25px;
    border-radius: 34px;

    /* 下部の隙間 */
    margin-bottom: 71px;

}

.space-top-view .content-top-view .flame-title .button-blue .slash{
    width: 8px;
    height: 13px;
}

.space-top-view .content-top-view .flame-title .button-blue .icon_text{
    display: flex;
    justify-content: left;
    align-items: center;

    gap: 15px;
}
.space-top-view .content-top-view .flame-title  .button-blue .icon{
    width: 20px;
    height: 20px;
    position: relative;
    bottom: 2px;
}
.space-top-view .content-top-view .flame-title .button-blue .text-l1{
    font-size: 14px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
}
.space-top-view .content-top-view .flame-title .button-blue .text-l2{
    font-size: 16px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;

}

.space-top-view .content-top-view .slid-show-signage{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center ;
    /* gap: 16px; */
    width: 100%;

    height: 100%;
    position: relative;
    z-index: 1;
}
.space-top-view .content-top-view .slid-show-signage .box-signage{
    display: flex;
    /* justify-content: center; */
    /* background-color: #FFFFFF; */

    border-radius: 6px;
    width: 100%;
    position: relative;

}
.space-top-view .content-top-view .slid-show-signage .box-signage img{
    display: flex;
    justify-content: center;
    align-items: center ;
    width: 208px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start ;

    padding: 20px 16px;
    /* width: 230px; */
    width: 260px;
    gap: 8px;
    background-color: white;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}
.space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .text-title{
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
    color:#434343;
    font-size: 14px;

    width: 100%;
}
.space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .box{
    display: flex;
    justify-content: left;

    width: 100%;
}
.space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .box .box-title{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EDEDED;

    width: 85px;
    padding: 4px 6px;
}
.space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .box .box-title .title{
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    color:#434343;
    font-size: 14px;

    width: 100%;
}
.space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .box .box-value{
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
}

.space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .box .text-content{
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    color:#434343;
    font-size: 16px;

    margin: 0 6px 0 12px;
}

.space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .box .per-content{
    font-family: 'Noto Sans JP';
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    color:#434343;
    font-size: 12px;

}

.slid-show-signage {
    overflow: hidden;
    position: relative;
}
/* スライドの動き等速 */
.swiper-wrapper {
    transition-timing-function: linear;
    display: flex;
    flex-flow: column;
    /* justify-content: center; */
    align-items: end ;
    /* gap: 16px; */
    width: 100%;
    height: 100%;
}

.br_offon{
    display: none;
}
.br_onoff{
    display: block;
}

@media screen and (max-width: 1150px) {

    .space-top-view {
        height: 700px;
    }

    .space-top-view .content-top-view{
        gap: 30px;
        padding: 0 10px;
    }

    .space-top-view .content-top-view .flame-title .header{
        gap: 16px;
        /* 45→36 */
        margin-bottom: 36px;
    }


    .space-top-view .content-top-view .flame-title .box-summary .text-summary{
        font-size: 33px;
        /* 60→54 */
        line-height: 50px;
    }

    .space-top-view .content-top-view .flame-title .box-search-top{
        width: 400px;
    }

    .space-top-view .content-top-view .flame-title .box-explain{
        margin-bottom: 35px;
    }

    .space-top-view .content-top-view .flame-title .box-explain .text-explain{
        font-size: 15px;
    }

    .space-top-view .content-top-view .flame-title .button-blue{
        margin-bottom: 65px;
    }

    .space-top-view .content-top-view .slid-show-signage .box-signage img{
        width: 160px;
    }
    .space-top-view .content-top-view .slid-show-signage .box-signage .flame-text{
        width: 100%;
    }

    .space-top-view .content-top-view .slid-show-signage .box-signage .flame-text .text-title{
        font-size: 13px;
    }

    .space-top-view .content-top-view .slid-show-signage .box-signage .flame-text .box .box-title .title{
        font-size: 12px;
    }

    .space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .box .text-content{
        font-size: 15px;
        margin: 0 4px 0 4px;
    }
}
@media screen and (max-width: 855px) {
    #header{
        position: relative;
        padding: 20px 0;
    }
    .space-top-view {
        height: 100%;
        margin-bottom: 50px;
    }

    .space-top-view .content-top-view{
        display: flex;
        flex-flow: column;
        gap: 20px;
    }

    .space-top-view .content-top-view .flame-title{
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .space-top-view .content-top-view .flame-title .box-search-top .topic-name{
        text-align: center;
    }

    .space-top-view .content-top-view .flame-title .box-summary .text-summary{
        text-align: center;   
    }
    .space-top-view .content-top-view .flame-title .box-search-top .box-search{
        flex-flow: column;
        border: 0px;
    }
    .space-top-view .content-top-view .flame-title .box-search-top .box-search .box-button-search {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 16px;
        background-color: #2C7DAA;
        border-radius: 6px;
        margin-top: 5px;
    }
    .space-top-view .content-top-view .flame-title .box-search-top .box-search .select-box{
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #D1D1D1;
        border-radius: 6px;
    }
    
    .space-top-view .content-top-view .slid-show-signage{
        order: 1;
    }

    .swiper-wrapper{
        flex-flow: unset;
    }

    .space-top-view .content-top-view .slid-show-signage .box-signage img{
        width: 140px;
    }

    .space-top-view .content-top-view .slid-show-signage .box-signage .flame-text{
        padding: 14px 14px;
        background-color: white;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }
    .space-top-view .content-top-view .flame-title .box-search-top .box-search .box-button-search .button-search::before {
        width: 0;
        height: 0;
    }
    .space-top-view .content-top-view .flame-title .box-explain .text-explain {
        max-width: 700px;
        margin: auto;
    }
}
@media screen and (max-width: 550px) {
    .space-top-view {
        margin-bottom: 40px;
    }
    .space-top-view .content-top-view .slid-show-signage .box-signage .flame-text .text-title {
        font-size: 10px;
    }
    .space-top-view .content-top-view .slid-show-signage .box-signage .flame-text .box .box-title .title {
        font-size: 10px;
    }
    .space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .box .text-content {
        font-size: 11px;
    }
    .space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .box .box-title {
        width: 65px;
        padding: 2px 3px;
    }
    .space-top-view .content-top-view .slid-show-signage .box-signage  .flame-text .box .per-content {
        font-size: 10px;
        width: 55px;
        
    }
    .swiper-wrapper {
        gap: 45px;
    }
    .space-top-view .content-top-view .flame-title .box-summary .text-summary {
        font-size: 29px;
    }
    .space-top-view .content-top-view .flame-title .box-search-top {
        width: calc(100% - 32px);
    }
    .space-top-view .content-top-view .flame-title .box-search-top .topic-name {
        font-size: 15px;
    }
    .space-top-view .content-top-view .flame-title .box-search-top .box-search .box-button-search .button-search::before {
        width: 0;
        height: 0;
    }
    .space-top-view .content-top-view .flame-title .box-explain .text-explain {
        font-size: 14px;
    }
    .space-top-view .content-top-view .flame-title .button-blue {
        padding: 6px 15px;
    }
}
@media screen and (max-width: 400px) {
    .space-top-view .content-top-view {
        padding: 0 16px;
    }
    .space-top-view .content-top-view .slid-show-signage .box-signage img {
        width: 120px;
    }
    .space-top-view .content-top-view .slid-show-signage .box-signage .flame-text {
        padding: 8px 8px;
    }
    .space-top-view .content-top-view {
        gap: 11px;
    }
    .space-top-view .content-top-view .slid-show-signage {
        margin: 0 -16px;
        width: calc(100% + 32px);
    }
    .space-top-view .content-top-view .flame-title .box-summary {
        margin-bottom: 16px;
    }
    .space-top-view .content-top-view .flame-title .box-summary .text-summary {
        font-size: 26px;
        letter-spacing: -2px;
    }
    .br_offon{
        display: block;
    }
    .br_onoff{
        display: none;
    }
    .space-top-view .content-top-view .flame-title .box-search-top .topic-name {
        font-size: 14px;
        font-weight: 500;
        letter-spacing: -2px;
    }
    .space-top-view .content-top-view .flame-title .box-search-top {
        gap: 12px;
        width: calc(100% - 32px);
        padding: 12px 14px;
        margin-bottom: 16px;
    }
    .space-top-view .content-top-view .flame-title .box-search-top .box-search .select-box {
        padding: 6px;
        margin-bottom: 8px;
        font-size: 14px;
    }
    .space-top-view .content-top-view .flame-title .box-search-top .box-search .box-button-search {
        padding: 6px 8px;
    }
    .space-top-view .content-top-view .flame-title .box-search-top .box-search .box-button-search .button-search p {
        font-size: 12px;
    }
    .space-top-view .content-top-view .flame-title .box-explain .text-explain {
        font-size: 12px;
        letter-spacing: -2.6px;
    }

    .space-top-view .content-top-view .flame-title .button-blue {
        margin-bottom: 32px;
        padding: 3px 0;
    }
    .space-top-view .content-top-view .flame-title  .button-blue .icon {
        width: 16px;
        height: 16px;
        bottom: 1px;
    }
    .space-top-view .content-top-view .flame-title .button-blue .text-l1 {
        font-size: 12px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .space-top-view .content-top-view .flame-title .button-blue .text-l2 {
        font-size: 14px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .space-top-view .content-top-view .flame-title .button-blue .icon_text {
        gap: 20px;
    }
}




/* 
----------------------------------------
********** トップエリア ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */


/* 
----------------------------------------
********** 人気のサイネージ広告一覧 ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
.Related-signage{
    width: 100%;
}

.content-Related-signage{
    /* width: calc(100% - 32px);
    padding: 0 16px; */
    width: 100%;
}

.content-Related-signage .topic-name{
    margin-bottom: 40px;
}

.content-Related-signage .topic-name .text-mini{ 
    font-family: 'Poppins', sans-serif;
    font-weight:  normal;
    text-align: left;
    color: #135477;

    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
}
.content-Related-signage .topic-name .Related{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    font-size: 32px;
    margin-bottom: 20px;

}


.flame-box-Related-signage{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 40px;
}
.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; /* アスペクト比を維持して、指定サイズに収める */
    border-radius: 6px;
    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;
    letter-spacing: -1px;
}

.flame-box-Related-signage .box-Related-signage .box-taxonomy .box-value{
    display: flex;
    /* width: 100%; */
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.flame-box-Related-signage .box-Related-signage .box-taxonomy .box-value .text-content{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #434343;

    font-size: 16px;
}
.flame-box-Related-signage .box-Related-signage .box-taxonomy .box-value .per-content{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: center;
    color: #434343;

    font-size: 12px;
    letter-spacing: 2px;
}

.box-Related-signage .box-taxonomy .taxonomy-list{
    padding: 0;
    display: flex;
    gap: 10px;
}
.box-Related-signage .box-taxonomy .taxonomy-list li{
    list-style: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: center;
    color: #434343;

    font-size: 12px;
    letter-spacing: 2px;
}





.Related-signage-blue-button-inner{
    display: flex;
    justify-content: center;
    align-items: center;
}
.Related-signage-blue-button-inner .button-blue{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    /* background-color: #2C7DAA; */
    background-image: linear-gradient(150deg, rgba(44, 125, 170, 1), rgba(20, 84, 119, 1));

    width: 100%;
    max-width: 350px;
    padding: 12px 25px;
    border-radius: 34px;
    margin-bottom: 80px;


}
.Related-signage-blue-button-inner .button-blue .slash{
    width: 8px;
    height: 13px;
}

.Related-signage-blue-button-inner .button-blue .icon_text{
    display: flex;
    justify-content: left;
    align-items: center;

    gap: 15px;
}
.Related-signage-blue-button-inner  .button-blue .icon{
    width: 20px;
    height: 20px;
    position: relative;
    bottom: 2px;
}
.Related-signage-blue-button-inner .button-blue .text-l1{
    font-size: 14px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
}
.Related-signage-blue-button-inner .button-blue .text-l2{
    font-size: 16px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;

}

@media screen and (max-width: 1160px) {
    .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) {
    .Related-signage {
        border-bottom: 4px solid #F5F5F5;
    }

    .content-Related-signage .topic-name .Related {
        font-size:28px;
        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;
    }
    .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;
    }
}
/* 
----------------------------------------
********** 人気のサイネージ広告一覧 ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */


/* 
----------------------------------------
********** エリアから探すエリア ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */
.space-search-area{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 83px;

    /* padding: 0 170px; */
    /* width: calc(100% - 340px); */
    width: 100%;
    gap: 40px;
}
.space-search-area .content-search-area{ 
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;
    gap: 41px;

    /* width: calc(100% - 32px); */
    /* padding: 0 16px; */
    width: 100%;
}

.space-search-area .content-search-area .flame-title .move-search-default{ 
    display: flex;
    justify-content: right;
    align-items: center;
}

.space-search-area .content-search-area .flame-title a{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    justify-content: end;
    align-items: end;
    color: #434343;

    width: 100%;
    font-size: 16px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.space-search-area .content-search-area .flame-type-signage-wrapper{ 
    display: flex;                    /* フレックスボックスを使用 */
    flex-wrap: wrap;                 /* 要素が幅を超えた場合に折り返す */
    justify-content: space-between;          /* 中央揃え */
    gap: 20px;                       /* アイテム間のスペース */
    
}
.space-search-area .content-search-area .flame-type-signage{ 
    display: flex;                   /* 子要素のフレックスボックス */
    flex-direction: column;          /* 縦に並べる */
    align-items: center;             /* 中央揃え */
    width: 25%;                      /* 幅を25%に設定して4列にする */
    max-width: 260px;                /* 最大幅を指定 */
    
}
.space-search-area .content-search-area .flame-type-signage .box-type-signage{ 
    position: relative;/*相対配置*/
}
.space-search-area .content-search-area .flame-type-signage .box-type-signage img{ 
    width: 100%;                     /* 幅を100%に設定 */
    height: 120px;                   
    border-radius: 6px;             /* 角を丸く */
    background: rgb(0, 0, 1, 0.2);
}
.space-search-area .content-search-area .flame-type-signage .box-type-signage p{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    text-align: center;
    color: white;
    width: 100%;                     /* 幅を100%に設定 */
    font-size: 16px;
    position: absolute;              /* 絶対配置 */
    bottom: 50px;                   /* 下に17pxの位置に */
    z-index:1;
}


.search-area-blue-button-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.search-area-blue-button-inner .button-blue{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    /* background-color: #2C7DAA; */
    background-image: linear-gradient(150deg, rgba(44, 125, 170, 1), rgba(20, 84, 119, 1));
    
    width: 100%;
    max-width: 350px;
    padding: 12px 25px;
    border-radius: 34px;
    margin-bottom: 80px;


}
.search-area-blue-button-inner .button-blue .slash{
    width: 8px;
    height: 13px;
}

.search-area-blue-button-inner .button-blue .icon_text{
    display: flex;
    justify-content: left;
    align-items: center;

    gap: 15px;
}
.search-area-blue-button-inner  .button-blue .icon{
    width: 20px;
    height: 20px;
    position: relative;
    bottom: 2px;
}
.search-area-blue-button-inner .button-blue .text-l1{
    font-size: 14px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
}
.search-area-blue-button-inner .button-blue .text-l2{
    font-size: 16px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;

}
@media screen and (max-width: 1150px) {
    .space-search-area {
        padding: 0 16px;
        width: calc(100% - 32px);
    }
    .space-search-area .content-search-area .flame-type-signage-wrapper {
        gap: 10px;
    }
    .space-search-area .content-search-area .flame-type-signage {
        width: 23%;
    }
}
@media screen and (max-width: 855px) {
    .space-search-area {
        border-bottom: 4px solid #F5F5F5;
        margin-top: 40px;
    }
    .space-search-area .content-search-area .flame-type-signage-wrapper {
        gap: 50px;
        justify-content: center;
    }
    .space-search-area .content-search-area .flame-type-signage {
        width: 44%;
    }
}
@media screen and (max-width: 550px) {
    .search-area-blue-button-inner{
        padding: 0 10px;
    }
    .flame-title .title-left .topic-Name {
        font-size: 23px;
    }
    .space-search-area .content-search-area .flame-type-signage-wrapper {
        gap: 8px;
        justify-content: space-between;
    }
    
    .space-search-area .content-search-area .flame-type-signage {
        width: 47%;
    }

    .space-search-area .content-search-area .flame-title .move-search-default{ 
        justify-content: center;
    }

    .space-search-area .content-search-area .flame-title a {
        justify-content: center;
        align-items: center;
    }
    
    .search-area-blue-button-inner .button-blue {
        padding: 3px 0px;
        margin-bottom: 40px;
    }
    .space-search-area .content-search-area {
        gap: 21px;
    }
}
@media screen and (max-width: 400px) {
    .space-search-area .content-search-area .flame-type-signage .box-type-signage img {
        width: 160px;
        height: 80px;
        border-radius: 6px;
    }
    .flame-title .title-left .topic-Name {
        font-size: 20px;
    }
    .search-area-blue-button-inner .button-blue {
        padding: 3px 0px;
    }
    .search-area-blue-button-inner .button-blue .icon_text {
        gap: 20px;
    }
    .search-area-blue-button-inner .button-blue .text-l1 {
        font-size: 12px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .search-area-blue-button-inner .button-blue .text-l2 {
        font-size: 14px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .search-area-blue-button-inner  .button-blue .icon {
        width: 16px;
        height: 16px;
        bottom: 1px;
    }
    .space-search-area .content-search-area .flame-type-signage .box-type-signage p{ 
        bottom: 30px;                   /* 下に17pxの位置に */
    }
    
}

/* 
----------------------------------------
********** エリアから探すエリア ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */


/* 
----------------------------------------
********** サイネージの種類から探すエリア ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */
.space-search-type-signage{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    /* padding: 0 170px; */
    /* width: calc(100% - 340px); */
    width: 100%;
}
.space-search-type-signage .content-search-type-signage{ 
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;
    gap: 41px;

    width: 100%;
}
.space-search-type-signage .content-search-type-signage .flame-title{ 
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.space-search-type-signage .content-search-type-signage .flame-title .topic-Name{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    width: 100%;
    font-size: 32px;
}

.space-search-type-signage .content-search-type-signage .flame-title .move-search-default{ 
    display: flex;
    justify-content: right;
    align-items: center;
}

.space-search-type-signage .content-search-type-signage .flame-title a{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    justify-content: end;
    color:#434343;

    width: 100%;
    font-size: 16px;
    white-space: nowrap;
}

.space-search-type-signage .content-search-type-signage .flame-type-signage-wrapper{ 
    display: flex;                    /* フレックスボックスを使用 */
    flex-wrap: wrap;                 /* 要素が幅を超えた場合に折り返す */
    justify-content: space-between;          /* 中央揃え */
    gap: 20px;                       /* アイテム間のスペース */
    margin-bottom: 20px;
}
.space-search-type-signage .content-search-type-signage .flame-type-signage{ 
    display: flex;                   /* 子要素のフレックスボックス */
    flex-direction: column;          /* 縦に並べる */
    align-items: center;             /* 中央揃え */
    width: 25%;                      /* 幅を25%に設定して4列にする */
    max-width: 260px;                /* 最大幅を指定 */
    
}
.space-search-type-signage .content-search-type-signage .flame-type-signage .box-type-signage{ 
    position: relative;/*相対配置*/
}
.space-search-type-signage .content-search-type-signage .flame-type-signage .box-type-signage img{ 
    width: 100%;                     /* 幅を100%に設定 */
    height: 160px;                   
    border-radius: 6px;             /* 角を丸く */
    background: rgb(0, 0, 1, 0.2);
}
.space-search-type-signage .content-search-type-signage .flame-type-signage .box-type-signage p{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    text-align: center;
    color: white;
    width: 100%;                     /* 幅を100%に設定 */
    font-size: 16px;
    position: absolute;              /* 絶対配置 */
    bottom: 17px;                   /* 下に17pxの位置に */
    z-index:1;
}

.search-type-blue-button-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.search-type-blue-button-inner .button-blue{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    /* background-color: #2C7DAA; */
    background-image: linear-gradient(150deg, rgba(44, 125, 170, 1), rgba(20, 84, 119, 1));

    width: 100%;
    max-width: 350px;
    padding: 12px 25px;
    border-radius: 34px;
    margin-bottom: 80px;


}
.search-type-blue-button-inner .button-blue .slash{
    width: 8px;
    height: 13px;
}

.search-type-blue-button-inner .button-blue .icon_text{
    display: flex;
    justify-content: left;
    align-items: center;

    gap: 15px;
}
.search-type-blue-button-inner  .button-blue .icon{
    width: 20px;
    height: 20px;
    position: relative;
    bottom: 2px;
}
.search-type-blue-button-inner .button-blue .text-l1{
    font-size: 14px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
}
.search-type-blue-button-inner .button-blue .text-l2{
    font-size: 16px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;

}

@media screen and (max-width: 1150px) {
    .space-search-type-signage {
        padding: 0 16px;
        width: calc(100% - 32px);
    }
    .space-search-type-signage .content-search-type-signage .flame-type-signage .box-type-signage img {
        height: 120px;
    }
    .space-search-type-signage .content-search-type-signage .flame-type-signage-wrapper {
        justify-content: center;
    }
}
@media screen and (max-width: 855px) {
    .space-search-type-signage .content-search-type-signage .flame-title {
        flex-flow: column;
    }
    .space-search-type-signage .content-search-type-signage .flame-title .topic-Name {
        font-size: 28px;
    }
    .space-search-type-signage .content-search-type-signage .flame-type-signage-wrapper {
        justify-content: space-around;
    }
    .space-search-type-signage .content-search-type-signage .flame-type-signage {
        width: 30%;
    }
    .space-search-type-signage .content-search-type-signage .flame-type-signage {
        width: 41%;
    }
    .space-search-type-signage{
        border-bottom: 4px solid #F5F5F5;
        margin-top: 40px;
    }
}
@media screen and (max-width: 550px) {
    .search-type-blue-button-inner .button-blue {
        padding: 3px 0px;
        margin-bottom: 40px;
    }
    .space-search-type-signage .content-search-type-signage .flame-type-signage {
        width: 46%;
    }
    .space-search-type-signage .content-search-type-signage .flame-type-signage-wrapper {
        justify-content: center;
        gap: 8px;
    }
    .space-search-type-signage .content-search-type-signage .flame-title .topic-Name {
        font-size: 23px;
    }
    .space-search-type-signage .content-search-type-signage .flame-title .move-search-default{ 
        justify-content: center;
    }
    .space-search-type-signage .content-search-type-signage .flame-title a {
        justify-content: center;
    }
}
@media screen and (max-width: 400px) {
    .space-search-type-signage .content-search-type-signage .flame-type-signage-wrapper {
        justify-content: center;
        gap: 8px;
    }
    .space-search-type-signage .content-search-type-signage .flame-type-signage .box-type-signage img {
        height: 80px;
    }
    .space-search-type-signage .content-search-type-signage .flame-type-signage .box-type-signage p {
        font-size: 12px;
    }
    .space-search-type-signage .content-search-type-signage .flame-title .topic-Name {
        font-size: 20px;
    }
    .search-type-blue-button-inner .button-blue {
        padding: 3px 0px;
    }
    .search-type-blue-button-inner .button-blue .icon_text {
        gap: 20px;
    }
    .search-type-blue-button-inner .button-blue .text-l1 {
        font-size: 12px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .search-type-blue-button-inner .button-blue .text-l2 {
        font-size: 14px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .search-type-blue-button-inner  .button-blue .icon {
        width: 16px;
        height: 16px;
        bottom: 1px;
    }
}
/* 
----------------------------------------
********** サイネージの種類から探すエリア ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */


/* 
----------------------------------------
********** ターゲット層から探すエリア ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */
.space-search-group-target{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 83px; */

    /* padding: 0 170px; */
    /* width: calc(100% - 340px); */
    width: 100%;
}
.space-search-group-target .content-search-group-target{ 
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;
    gap: 41px;

    width: 100%;
    margin-top: 40px;
}
.space-search-group-target .content-search-group-target .flame-title{ 
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.space-search-group-target .content-search-group-target .flame-title .topic-Name{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;
    color: #135477;

    width: 100%;
    font-size: 32px;
}
.space-search-group-target .content-search-group-target .flame-title .move-search-default{ 
    display: flex;
    justify-content: right;
    align-items: center;
}
.space-search-group-target .content-search-group-target .flame-title a{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    justify-content: end;
    color: #434343;

    width: 100%;
    font-size: 16px;
    white-space: nowrap;
}

.space-search-group-target .content-search-group-target .flame-type-signage-wrapper{ 
    display: flex;                    /* フレックスボックスを使用 */
    flex-wrap: wrap;                 /* 要素が幅を超えた場合に折り返す */
    justify-content: space-between;          /* 中央揃え */
    gap: 20px;                       /* アイテム間のスペース */
    margin-bottom: 40px;
}
.space-search-group-target .content-search-group-target .flame-type-signage{ 
    display: flex;                   /* 子要素のフレックスボックス */
    flex-direction: column;          /* 縦に並べる */
    align-items: center;             /* 中央揃え */
    /* 幅を20%に設定して5列にする */
    width: 20%;                      
    max-width: 204px;                /* 最大幅を指定 */
    
}
.space-search-group-target .content-search-group-target .flame-type-signage .box-type-signage{ 
    position: relative;/*相対配置*/
}
.space-search-group-target .content-search-group-target .flame-type-signage .box-type-signage img{ 
    width: 100%;                     /* 幅を100%に設定 */
    height: 130px;                   
    border-radius: 6px;             /* 角を丸く */
    background: rgb(0, 0, 1, 0.2);
}
.space-search-group-target .content-search-group-target .flame-type-signage .box-type-signage p{ 
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    text-align: center;
    color: white;
    width: 100%;                     /* 幅を100%に設定 */
    font-size: 16px;
    position: absolute;              /* 絶対配置 */
    bottom: 50px;                   /* 上に50pxの位置に */
    z-index:1;
}




.search-group-target-blue-button-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.search-group-target-blue-button-inner .button-blue{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    /* background-color: #2C7DAA; */
    background-image: linear-gradient(150deg, rgba(44, 125, 170, 1), rgba(20, 84, 119, 1));

    width: 100%;
    max-width: 350px;
    padding: 12px 25px;
    border-radius: 34px;
    margin-bottom: 80px;


}
.search-group-target-blue-button-inner .button-blue .slash{
    width: 8px;
    height: 13px;
}

.search-group-target-blue-button-inner .button-blue .icon_text{
    display: flex;
    justify-content: left;
    align-items: center;

    gap: 15px;
}
.search-group-target-blue-button-inner  .button-blue .icon{
    width: 20px;
    height: 20px;
    position: relative;
    bottom: 2px;
}
.search-group-target-blue-button-inner .button-blue .text-l1{
    font-size: 14px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
}
.search-group-target-blue-button-inner .button-blue .text-l2{
    font-size: 16px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    text-align: left;
    vertical-align: middle;

}

@media screen and (max-width: 1150px) {
    .space-search-group-target {
        padding: 0 16px;
        width: calc(100% - 32px);
    }
    .space-search-group-target .content-search-group-target .flame-type-signage-wrapper {
        justify-content: space-around;
    }
    .space-search-group-target .content-search-group-target .flame-type-signage {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 23%;
        max-width: none;
    }
}
@media screen and (max-width: 855px) {
    .space-search-group-target .content-search-group-target .flame-type-signage {
        width: 48%;
    }
}
@media screen and (max-width: 550px) {
    .search-group-target-blue-button-inner .button-blue {
        padding: 3px 0px;
        margin-bottom: 40px;
    }
    .space-search-group-target .content-search-group-target .flame-type-signage .box-type-signage img {
        height: 100px;
    }
    .space-search-group-target .content-search-group-target .flame-type-signage {
        width: 46%;
    }
    .space-search-group-target .content-search-group-target .flame-title .move-search-default{ 
        justify-content: center;
    }
    .space-search-group-target .content-search-group-target .flame-title a {
        justify-content: center;
    }
    .space-search-group-target .content-search-group-target .flame-title .topic-Name {
        font-size: 28px;
    }

    .space-search-group-target .content-search-group-target .flame-type-signage .box-type-signage p{ 
        bottom: 35px;                   /* 上に50pxの位置に */
    }
}
@media screen and (max-width: 400px) {
    .space-search-group-target .content-search-group-target .flame-type-signage .box-type-signage img {
        height: 80px;
    }
    .search-group-target-blue-button-inner .button-blue {
        padding: 3px 0px;
    }
    .space-search-group-target .content-search-group-target .flame-title .topic-Name {
        font-size: 20px;
    }
    .search-group-target-blue-button-inner .button-blue .icon_text {
        gap: 20px;
    }
    .search-group-target-blue-button-inner .button-blue .text-l1 {
        font-size: 12px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .search-group-target-blue-button-inner .button-blue .text-l2 {
        font-size: 14px;
        letter-spacing: -1px;
        font-weight: 500;
    }
    .search-group-target-blue-button-inner  .button-blue .icon {
        width: 16px;
        height: 16px;
        bottom: 1px;
    }
}
/* 
----------------------------------------
********** ターゲット層から探すエリア ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */



/* 
----------------------------------------
********** 説明エリア ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
.space-explain-type-signage{
    display: flex;
    justify-content: center;
    align-items: center;

    /* width: calc(100% - 340px) ; */
    width: 100% ;
    padding: 77px 0 101px 0;
    position: relative;
    z-index: 1; /* 本体の要素の前面に表示されるように */

    
    margin-bottom :82px;
}
.space-explain-type-signage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 100%;
    background-color: rgba(19, 84, 119, 0.15);
    z-index: -1; /* 背景が下になるように */
}
.space-explain-type-signage .content-explain-type-signage{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    gap: 63px;
}
.space-explain-type-signage .content-explain-type-signage .flame-explain{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;

    width: 100%;
    gap: 20px;
}
.space-explain-type-signage .content-explain-type-signage .flame-explain .topic-title{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  bold;
    text-align: left;

    color: #135477;
    font-size: 18px;

}
.space-explain-type-signage .content-explain-type-signage .flame-explain .topic-explain{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:  normal;
    text-align: left;

    color: #434343;
    font-size: 12px;
}

@media screen and (max-width: 1150px) {
    .space-explain-type-signage {
        width: calc(100% - 32px);
        padding: 42px 16px;
        margin-bottom: 42px;
    }
}
@media screen and (max-width: 855px) {
    .space-explain-type-signage .content-explain-type-signage .flame-explain {
        justify-content: center;
        align-items: center;
    }
}
@media screen and (max-width: 550px) {
    .space-explain-type-signage .content-explain-type-signage {
        gap: 80px;
    }
    .space-explain-type-signage .content-explain-type-signage .flame-explain .topic-title {
        font-size: 16px;
    }
    .space-explain-type-signage {
        padding: 42px 16px 100px 16px;
    }
}
@media screen and (max-width: 400px) {
    
}
/* 
----------------------------------------
********** 説明エリア ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */


/* 
----------------------------------------
********** 関連コラムエリア ↓↓↓↓↓↓↓↓↓↓
----------------------------------------
 */
.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;
    align-items: center;
    padding: 2px 10px;
    background-color: #2C7DAA;
    border-radius: 2px;
    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: center;

    color: white;
    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: 1150px) {
    .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 .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: 315px;
        height: 225px;
    }
    .space-Related-column .content-Related-column .topic-Name {
        font-size: 20px;
    }
}
/* 
----------------------------------------
********** 関連コラムエリア ↑↑↑↑↑↑↑↑↑↑
----------------------------------------
 */




