/*ファーストビュー*/
#firstview{
	background-image: url("../image/info.jpg");
    background-position:top;
}

/*information.phpのcss*/
#information{
    text-align:center;
    margin:0 auto;
}

#information h3{
    margin:50px auto;
    padding:10px;
    font-size:24px;
    text-align:center;
    color:#fff;
    background-color:#404d9f;
    border-radius:30px;
    letter-spacing:5px;
}

#information_area1 .infoimg{
    display:flex;
    justify-content:center;
}
#information_area1 .infoimg img{
    width:40%;
    margin: 0 30px;
}

#information_area2 .infoimg img{
    width:100%;
    /* margin: 0 30px; */
}

#information_area3 table{
    margin:0 auto;
    margin-bottom:50px;
}

iframe{
    margin-bottom:50px;
}

.infotext{
    margin: 30px auto;
}

/*　レスポンシブ（768px以下） */
@media screen and (max-width:768px){
    #information{
        margin:0 30px;
    }
    #information h3{
        width:100%;
    }
    #information_area1 .infoimg{
        flex-direction:column;
    }
    #information_area1 .infoimg img{
        width:100%;
        margin:30px 0;
    }
    #information_area2 .infoimg img{
        width:100%;
        margin:30px 0;
    }
    iframe{
        width:100%;
    }
}


/*　レスポンシブ（400px以下） */
@media screen and (max-width:450px){
}