.title{
    position: relative;
	height:230px;
	background-color:transparent;
	overflow:hidden;
	margin-top : 70px;
}

.title .bg{
	position:absolute;
	top:0;
	left:0;
	z-index:100;
	width:100vw;
	height:100%;
    /* background: rgb(8,49,144); */
    background: linear-gradient(135deg, rgba(8,49,144,1) 0%, rgba(51,168,241,1) 75%);
	/* background: url(img/pic/chicago.jpg) no-repeat center center;
    background-size: cover; */
	overflow:hidden;
}

.title .bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.3); */
}

.title .pane{
    display: flex;
    align-items: center;
	position:absolute;
    padding-left: 10%;
    left: 0;
    right: 0;
    bottom: 10%;
	z-index:200;
}

.title .pane h1 {
    color: #fff;
    font-size: 48px;
    margin: 0;
    letter-spacing: 0.5rem;
}
.title .pane h3 {
    color: #33a8f1 ;
    font-size: 24px;
    margin: 0;
}

/* モバイル対応 */
/* 横幅が狭いとき、タイトルのバーを小さくする */
@media only screen and (min-width: 0px) and (max-width: 700px) {
    .title{
        height:100px;
    }
    .pane{
        top: 20%!important;
    }
    .title .pane h1 {
        font-size: 32px;
        letter-spacing: 0.3rem;
    }
    .title .pane h3 {
        font-size: 18px;
    }
}