/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
.main-header {
   width:100%;
   height:100%;
}
address {
   clear:both;
   width:100%;
   padding:40px 0 40px 0;
   text-align:center;
   font-style:normal;
   font-size:10px;
   color:#696969;
   background-image : url('images/body.jpg');
    background-repeat : repeat;
    background-position : center center;
   border-top:1.5px solid #a9a9a9;
   
}
.container {
    background-image: url("images/NY.jpg");
    background-color: #464646;
    background-position: center center;
    position: relative;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
	
/* For mobile devices */
@media only screen and (max-width: 767px) {
  .main-header {
    width:100%;
    height:100%;
  }
  .container {
    background:url("images/NY-mobile.jpg") center/cover no-repeat; /*fixedをトル！*/
    -webkit-background-size:cover;/*Android4*/
  }
 }

@media (max-width: 750px) and (orientation: landscape) { /*横向きの際に適用*/

.content h1 {
  
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  margin-top: 70px;
  margin-bottom:5px;
}

/* Special */
.sub-title {
  margin: 50px auto;
  font-size: 28px;
  margin-top: 30px;
  margin-bottom:20px;color: #f0e68c;
  
}

}
