/* ------------------------------------------------------------------------
    SAMPLE
------------------------------------------------------------------------  */
.SAMPLE {
    font-weight: 500;
    font-size: .875em;
    color: red;
    margin-top: 5px;
    line-height: 1.5em;
}

/* ------------------------------------------------------------------------
    PAGE TITLE
------------------------------------------------------------------------  */
/* BG */
#PAGE_TITLE:before {
    background-image: url("./images/page_title_sp.jpg");
}
@media screen and (min-width:769px){
    #PAGE_TITLE:before {
        background-image: url("./images/page_title_pc.jpg");
    }
}

/* ------------------------------------------------------------------------
    NEWS_RELEASE
------------------------------------------------------------------------  */
/* News List */
#NEWS_AREA .News_Release .News_List{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.News_List .Item:not(:last-child) {
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px dotted var(--sub2-color);
}
@media screen and (min-width:769px){
    #NEWS_AREA .News_Release .News_List{
    }
}
.News_List,
.News_List .Item,
.News_List .Item .Contents{
    width: 100%;
}
.News_List .Item .Contents{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
}
@media screen and (min-width:769px){
    .News_List .Item .Contents{
        padding-left: 1em;
        padding-right: 1em;
    }
}

.News_List .Item .Contents > *{
    box-sizing: border-box;
}
.News_List .Item .Contents .Date{
}
.News_List .Item .Contents .Category{
}
.News_List .Item .Contents .News{
    width: 100%;
    line-height: 1.5em;
    margin-top: 1em;
    font-weight: 500;
    font-size: .875em;
}
@media screen and (min-width:769px){
    .News_List .Item .Contents .Date,
    .News_List .Item .Contents .Category{
        font-size: 14px;
    }
    .News_List .Item .Contents .News{
        width: calc(100% - 210px);
        padding: 0 1em;
        margin-top: 0;
    }
}

/***** Date *****/
.Date{
    width: 90px;
    font-size: 12px;
}

/***** Category *****/
.Category{
    width: 120px;
    font-size: 12px;
    text-align: center;
    color: #fff;
}
.Category.No1{
    background: #800000 !important;
}
.Category.No2{
    background: var(--main-color) !important;
}
.Category.No3{
    background: #eea683 !important;
}
.Category.No4{
    background: #e8a2c1 !important;
}
.Category.No5{
    background: #72acee !important;
}
.Category.No6{
    background: var(--sub-color) !important;
}

/***** News Arrow *****/
.News_Release button {
    display: none !important;
}
.News_Release .News_Arrow {
    position: absolute;
    right: 0;
    top: -10px;
}
@media screen and (min-width:769px){
    .News_Release {
        margin-top: 0;
    }
    .News_Release .News_Arrow {
        top: 0;
    }
}
/***** Arrow *****/
.News_Arrow.Arr > *:first-child {
    margin-right: 15px;
}


/***** Button *****/
#NEWS_AREA .Btn_Area {
    margin-top: var(--space-30);
    margin-bottom: var(--space-30);
}
@media screen and (min-width:769px){
    #NEWS_AREA .Btn_Area {
        margin-top: var(--space-20);
        margin-bottom: var(--space-20);
    }
}

/* ------------------------------------------------------------------------
    NEWS_DETAIL
------------------------------------------------------------------------  */
#DETAIL{}
#DETAIL .Category_Days{
    display: flex;
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom:1px dotted var(--sub2-color);
}

/***** Content *****/
#DETAIL .Contents {
    display: flex;
    flex-wrap: wrap;
    row-gap:var(--space-20);
}
#DETAIL .Contents > * {
    width: 100%;
}
/* Main */
#DETAIL .Main a{
    transition: all .6s;
    text-decoration: underline;
}
@media screen and (min-width:769px){
    #DETAIL .Main a:hover{
        opacity: .5;
    }
}

/* Item */
#DETAIL .Item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap:20px;
    row-gap:20px;
}
#DETAIL .Item > *{
    width: 100%;
}
@media screen and (min-width:769px){
    #DETAIL .Item > *{
        flex: 1;
    }
    #DETAIL .Item > .Image{
        max-width: calc( (100% - 20px) / 2);
    }
    
    /* order */
    #DETAIL .Item:nth-child(odd) .Message{
        order: 1;
    }
    #DETAIL .Item:nth-child(odd) .Image{
        order: 2;
    }
}
#DETAIL .Message a{
    transition: all .6s;
    text-decoration: underline;
}

#IMAGE_BOX img {
    max-width: 1024px;
}

/* Btn */
#DETAIL .Btn_Area {
    margin-top: var(--space-20);
}
