@charset "utf-8";
/* -----------------------------------------------------------
 =common css
----------------------------------------------------------- */
body {
    min-width: 320px;
    background-color: #fff;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
}
@media print, screen and (min-width: 768px) {
    body {
        font-size: 16px;
    }
}
/* default link color
----------------------------------------------------------- */
a {
    color: #2059A6;
    text-decoration: none;
}
a, a img, a::before, a::after, .btnForm {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
a:hover {
    color: #999;
}
a:hover img {
    opacity: 0.6;
}
.topLinkCard:hover, .breadcrumbs a:hover {
    color: #2059A6;
}
/* -----------------------------------------------------------
 =header, glovalnavi
----------------------------------------------------------- */
#areaHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 320px;
    border-bottom: 1px solid #DEDEDE;
    background-color: #fff;
    padding: 0 4%;
    z-index: 1000;
    -webkit-transition: 0.8s;
    transition: 0.8s;
}
.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 3px;
}
.logo {
    margin-right: 4%;
}
.logo img {
    width: 156px;
}
#areaHeader.detach {
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
}
.btnGNaviSp, .btnGNaviSp span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.btnGNaviSp {
    position: relative;
    width: 26px;
    height: 18px;
}
.btnGNaviSp span, .btnGNaviSp.select span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2059A6;
}
.btnGNaviSp span:nth-of-type(1) {
    top: 0;
}
.btnGNaviSp span:nth-of-type(2) {
    top: 8px;
}
.btnGNaviSp span:nth-of-type(3) {
    bottom: 0;
}
.btnGNaviSp.select span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}
.btnGNaviSp.select span:nth-of-type(2) {
    opacity: 0;
}
.btnGNaviSp.select span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}
.btnGNaviSp:hover {
    opacity: 0.6;
}
/* gnavi --------------- */
.areaGNavi {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    overflow-y: auto;
}
.gNavi {
    border-top: 1px solid #EFEFEF;
    margin-bottom: 25px;
}
.gNavi > li {
    border-bottom: 1px solid #EFEFEF;
}
.gNavi li a {
    display: block;
    position: relative;
    padding: 17px 20px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}
.gNavi li a:hover /*,
.gNavi li a.on*/ {
    color: #2059A6;
}
.btnSite a {
    display: block;
    width: 100px;
    background-color: #C51729;
    margin: 0 auto 80px;
    padding: 11px 0;
    color: #fff;
    font-size: 13px;
    text-align: center;
}
.btnSite a:hover {
    opacity: 0.7;
}
@media print, screen and (min-width: 768px) {
    #areaHeader {
        padding: 0 30px;
    }
    .header {
        height: 85px;
    }
    .logo img {
        width: 214px;
    }
    .areaBtnGnaviSp {
        margin-left: 30px;
    }
    .headerInner {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        -ms-align-items: center;
        align-items: center;
    }
    .btnSite a {
        margin-bottom: 0;
    }
   .btnGNaviSp {
        width: 34px;
    }
    .areaGNavi {
        top: 85px;
    }
    .gNavi {
        border-top: none;
        margin-top: 60px;
         padding-right: 30px;
        padding-left: 30px;
    } 
    .gNavi > li {
        border: none;
        margin-bottom: 50px;
        text-align: center;
    }
    .gNavi > li a {
        padding: 0;
        font-weight: 600;
        font-size: 19px;
    }
}
/* -----------------------------------------------------------
 =breadcrumbs list
----------------------------------------------------------- */
.areaBreadcrumbs {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 20px;
}
.breadcrumbs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin: 0 auto;
    padding: 10px 4%;
    color: #888;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0;
}
.breadcrumbs li {
    position: relative;
    padding-left: 17px;
}
.breadcrumbs li:before {
    position: absolute;
    top: 7px;
    left: 4px;
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
}
.breadcrumbs li:first-child {
    padding-left: 0;
}
.breadcrumbs li:first-child:before {
    display: none;
}
.breadcrumbs a {
    color: #666;
}
@media print, screen and (min-width: 768px) {
    .areaBreadcrumbs {
        margin-bottom: 35px;
    }
    .breadcrumbs {
        width: 1060px;
        padding: 12px 30px;
        font-size: 12px;
    }
    .breadcrumbs li {
        padding-left: 20px;
    }
}
/* -----------------------------------------------------------
 =contents
----------------------------------------------------------- */
#contents {
    margin-bottom: 35px;
    padding-top: 50px;
    line-height: 1.7;
}
.areaMain {
    padding-right: 4%;
    padding-left: 4%;
}
section, .mgBsection {
    margin-bottom: 30px;
}
section > section, .mgBsectionSub {
    margin-bottom: 20px;
}
body.forum section > section {
    margin-bottom: 30px;
}
/* title --------------- */
.areaTtl {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    height: 80px;
    background: url("../images/bg_header.jpg") no-repeat right center;
    -webkit-background-size: cover;
    background-size: cover;
}
.h1 {
    padding-right: 4%;
    padding-left: 4%;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
}
.h2 {
    margin-bottom: 1em;
    padding-bottom: 6px;
    border-bottom: 2px solid #2059A6;
    font-size: 17px;
}
.h2 span.normal {
    font-weight: 400;
    font-size: 16px;
}
.h3 {
    border-left: 4px solid #2059A6;
    padding-left: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}
.h4 {
    margin-bottom: 0.5em;
    font-size: 15px;
}
@media print, screen and (min-width: 768px) {
    #contents {
        margin-bottom: 80px;
        padding-top: 85px;
        line-height: 1.8;
        letter-spacing: 0.03em;
    }
    .areaMain {
        width: 1060px;
       margin: 0 auto;
        padding-right: 30px;
        padding-left: 30px;
    }
    section, .mgBsection {
        margin-bottom: 4em;
    }
    section > section, .mgBsectionSub {
        margin-bottom: 3.5em;
    }
    section > section > section {
        margin-bottom: 3em;
    }
    /* title --------------- */
    .areaTtl {
        height: 100px;
    }
    .h1 {
        width: 1260px;
        margin: 0 auto;
        padding: 0 30px;
        font-size: 26px;
    }
    .h2 {
        padding-bottom: 8px;
        font-size: 22px;
    }
    .h2 span.normal {
        font-size: 17px;
    }
    .h3 {
        margin-bottom: 16px;
        padding-left: 16px;
        font-size: 20px;
    }
    .h4 {
        font-size: 18px;
    }
}
/* -----------------------------------------------------------
 =footer
----------------------------------------------------------- */
.areaFooter {
    background-color: #333;
    padding: 20px 0 15px;
    text-align: center;
}
.footerInfo {
    margin-bottom: 10px;
    color: #fff;
    font-size: 11px;
}
.copyright small {
    color: #BFBFBF;
    font-size: 11px;
}
/* pagetop --------------- */
.pagetop {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 0;
    z-index: 10;
}
.pagetop a {
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
    background-color: rgba(32, 89, 166, 0.8);
}
.pagetop img {
    position: absolute;
    top: 16px;
    left: 14px;
    width: 17px;
}
.pagetop a:hover {
    background-color: #2059A6;
}
.pagetop a:hover img {
    top: 9px;
}
@media print, screen and (min-width: 768px) {
    footer {
        letter-spacing: 0.05em;
    }
    .areaFooter {
        padding: 27px 0 28px;
    }
    .footerInfo {
        margin-bottom: 15px;
        font-size: 14px;
    }
    /* pagetop --------------- */
    .pagetop {
        bottom: 99px;
    }
    .pagetop a {
        width: 54px;
        height: 54px;
    }
    .pagetop img {
        top: 21px;
        left: 17px;
        width: 20px;
    }
}
@media print {
    .pagetop {
        display: none !important;
    }
}