/* CSS Document */

body{
    background-image: url("../images/common/contentHeaderBg.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
}

.bgGray{
    background-color: #f5f5f5;
}
.bgWhite{
    background-color: #fff;
}

/**
** Header
**/

#contentHeader{
/*height:700px;*/
	padding-top:80px;
	margin-top:0;
	text-align: center;
}

#contentHeader .container h1{
    margin-top:70px;
    border-bottom: 1px solid #ccc;
    text-align: left;
    color: #006699;
    font-size: 36px;
    letter-spacing: 0.1em;
}
#contentHeader .container p{
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width:575px){
    #contentHeader .container h1{
        font-size:26px;
        margin-top:10px;
        padding-bottom: 10px;
    }
}

.catchcopy{
    margin-top:40px;
    text-align: center;
    font-size: 26px;
    line-height: 180%;
    letter-spacing: 0.1em;
}

@media screen and (min-width:576px){

.catchcopy::after{
    content: '';
    display: block;
    width: 364px;
    height:  8px;
    margin:50px auto;
    background: -webkit-linear-gradient(135deg, #006699, #0e3f72);
    background: -o-linear-gradient(135deg, #006699, #0e3f72);
    background: linear-gradient(135deg, #006699, #0e3f72);
    
}

}

.contentBox{
    padding-top:    80px;
    padding-bottom: 80px;
}
.contentBox p{
    font-size: 18px;
    line-height: 180%;
}
@media screen and (max-width:575px){
    .contentBox{
        padding-top:    20px;
        padding-bottom: 20px;
    }
    .contentBox p{
        font-size: 16px;
    }
}
.boxList{
    display: block;
    margin:  auto;
    text-align: center;
}
.boxList ul{
     display: inline-block;
    padding-left: 0;
}
.boxList ul li{
    list-style: none;
    text-align: left;
    font-size: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.boxList dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.boxList dl dt{
	width: 30%;
}
.boxList dl dd{
	flex:1;
	text-align: left;
}

h3{
    margin-bottom: 60px;
    font-size: 32px;
    text-align: center;
    letter-spacing: 0.15em;
}
@media screen and (min-width:576px){

h3::before,
h3::after{
    content: '';
    background-color: black;
    display: inline-block;
    height: 1px;
    width: 100px;
    margin:10px;
}
}
@media screen and (max-width:575px){
    h3{
        margin-top: 30px;
        font-size: 26px;
    }
}

h4.bg-graient-b{
    padding: 0.75em;
    margin-bottom: 30px;
    background: -webkit-linear-gradient(135deg, #006699, #0e3f72);
    background: -o-linear-gradient(135deg, #006699, #0e3f72);
    background: linear-gradient(135deg, #006699, #0e3f72);
    font-size: 18px;
    letter-spacing: 0.1em;
    color:white;
    text-align: center;
}


