@charset "utf-8";

.lh-17{
    line-height: 1.7;
}

.tal-j{
    text-align: justify;
}

h1{
    color: #0bd;
    background-color: #faa;
}
h2{
    color: navy;
}
p{
    color: rgba(10, 130, 165, .5);
}

body{
    background-color: #fee;
}

/* 背景画像の繰り返し */
.biurl{
    background-color: #f5f2e5;
    background-image: url(images/bg.png);
    /* background-repeat: repeat-x; */
    /* background-repeat: repeat-y; */
    background-repeat: no-repeat;
    /* background-position: center top; */
    background-position: 30px 80px;
}

/* 背景画像の大きさ指定 */
.bs-cov{
    background-image: url(images/bg-airplane.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
}
.bs-con{
    background-image: url(images/bg-airplane.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 50vh;
}

.bg-all{
    background: #70acdc url(images/bg-airplane.jpg) no-repeat center bottom/cover;
    height: 100vh; 
}
.wh{
    background: #0bd;
    width: 500px;
    height: 300px;
}

.wh p{
    width: 50%;
    color: #000;
}
