@charset "UTF-8";
/* CSS Document */

#wrapper {
    overflow-y: visible;
    height: auto;
    overflow-x: hidden;
}
header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: fixed;
    z-index: 9999;
    color: #fff;
    width: calc(100% - 30px);
    padding: 15px 15px;
    background-color: rgba(0,44,142,1);
    height: 68px;
}
main {
    padding: 128px 0 120px;
    height: 100%;
    display: block;
}
#main-header {
    position: relative;
    display: block;
    flex-flow: column;
}
#main-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    order: 2;
    color: #000;
    margin: 0;
}
#main-text h1 {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    letter-spacing: 1px;
    opacity: 1;
    animation: fadein02 2s ease-in-out 1.5s both;
}
#main-text h2 {
	color: #fff;
	font-size: 32px;
	line-height: 1;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0;
	animation: fadein 2s ease-in-out 0.5s both;
    font-weight: bold;
    margin-bottom: 10px;
}
@keyframes fadein{
    0%{
        opacity: 0;
        transform: translateY(15%);
    }
    100%{
        opacity: 1; 
        transform: translateY(0%);
    }
}
@keyframes fadein02{
    0%{
        opacity: 0;
        transform: translateY(15%);
    }
    100%{
        opacity: 1; 
        transform: translateY(0%);
    }
}
.main-image {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}
#breadcrumb {
    padding: 0px 15px;
    letter-spacing: 0px;
    position: fixed;
    top: 98px;
    width: calc(100% - 30px);
    height: auto;
    background-color: #fff;
    z-index: 998;
    overflow-X: auto;
}
#breadcrumb ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    height: 31px;
}
#breadcrumb ul li {
    padding-right: 18px;
    font-size: 10px;
    position: relative;
    color: #000;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
}
#breadcrumb ul li::after {
    content:"＞";
    display: inline;
    position: absolute;
    right: 4px;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
}
#breadcrumb ul li:last-child::after {
    content:none;
    display: inline;
    position: absolute;
}
#breadcrumb ul li a{
    text-decoration: none;
    color: #00518e;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
}
#breadcrumb ul li span{
    color: #000;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
}
#contents {
    padding: 30px 0 60px;
}
#contents h2 {
    text-align: center;
    color: #002c83;
    font-size: 18px;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    padding: 0 15px;
    line-height: 1.6;
    margin: 0 0 10px;
    font-weight: bold;
}
#contents p {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 14px;
    color: #000;
    text-align: center;
    padding: 0 15px;
    font-weight: normal;
    line-height: 2;
}
footer {
    color: #333;
    position: relative;
    z-index: 998;
}
@media screen and (min-width:768px){
header {
    background-color: rgba(0,44,142,0.80);
}
main {
    padding: 0 0 120px;
}
#main-header {
    position: relative;
    display: block;
}
#main-text {
    position: absolute;
    top: calc(50% + 49px);
    transform: translateY(-50%);
    left: 30px;
    margin: 0;
}
#main-text h1{
	font-size: 16px;
}
#main-text h2 {
    font-size: 40px;
}
#breadcrumb {
    padding: 15px 30px;
    letter-spacing: 2px;
    position: relative;
    width: calc(100% - 60px);
    top: auto;
}
#breadcrumb ul li {
    font-size: 14px;
    padding-right: 24px;
}
#contents h2 {
    padding: 0 30px;
}
#contents p {
    padding: 0 30px;
}
}
@media screen and (min-width:960px){
header {
    height: 70px;
}
#main-text {
    position: absolute;
    top: calc(50% + 50px);
    transform: translateY(-50%);
    left: 10%;
}
#main-text h1{
	font-size: 24px;
}
#main-text h2 {
    font-size: 60px;
}
#contents h2 {
    font-size: 28px;
    padding: 0 ;
}
#contents p {
    font-size: 16px;
    line-height: 2;
    padding: 0;
    max-width: 960px;
    margin: 0 auto;
}
}
@media screen and (min-width:1024px){
    
}
@media screen and (min-width:1281px){
#contents p {
    max-width: 1100px;
}    
}
@media screen and (min-width:1441px){

}  