/******************************************
/* HOME
*******************************************/
/*表示中メニュー*/
#menu_index{
	background-color:violet;
}

/*トップ画像*/
#index_topimg{
    display: flex;
    width: 940px;
}

#index_topimg img{
    height: 270px;
    object-fit:scale-down;
}

/*お知らせ*/
#index_notice{
	width: 281px;	
    margin-top: 20px;
	margin-right: 15px;
}
#index_notice_text{
    background-image:url(../images/index_notice_wall.png) ;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: auto;
}

/*ご挨拶*/
#index_contents_2{
    margin-top: 20px;
	width: 641px;
}   

#index_greeting_mobile{
    display: none;
}

#index_greeting_text{
    background-image:url(../images/index_greeting_wall.png) ;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: auto;
}

#index_greeting_text img{
    margin: 5px;
    float: right;
}

/*感染対策*/
#index_infection{
    margin-top: 20px;
}

#index_infection_text {
    background-image:url(../images/index_infection_wall.png) ;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: auto;
}

#index_infection_text ul{
    margin-top: 0px;
    padding-left: 20px;
}

/******************************************
/* スマホ・タブレット対応
*******************************************/
@media screen and (max-width:767px){
    /*お知らせ*/
    #index_notice{
        width: 100%;	
    }
    #index_greeting img{
        margin-top: 10px;
        width:100%;
    }
}
@media (max-width:940px){
    /*トップ画像*/
    #index_topimg{
        margin-left: auto;  /*なぜか中央揃えが効かない*/
        margin-right: auto; /*なぜか中央揃えが効かない*/
        width: 100%;
    }

    #index_topimg img{
        width: 100%;
        height:auto;
    }

    /*お知らせ*/
    #index_notice_text{
        background-image:url(../images/index_infection_wall.png) ;
    }

    /*ご挨拶*/
    #index_contents_2{
        width: 100%;	
        margin-right: 10px;
    }
    #index_greeting_title img{
        object-fit:fill;
        width:100%;
    }
    #index_greeting_mobile{
        display: inline;
    }
    #index_greeting_mobile img{
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }    
    #index_greeting_text img{
        display: none;
    }

}