@charset "utf-8";
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(//fonts.googleapis.com/earlyaccess/notosansjp.css);
/*** =============================
  - reset
============================= ***/
html, body, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}
* {
    box-sizing: border-box;
}
:root,
html,
body {
    background-color: #fff;
    color: #333;
    width: 100%;
    font-size: 18px;
    line-height: 1.7;
}
@media only screen and (max-width: 640px) {
    :root,
    html,
    body {
        font-size: 4vw;
    }
}
body {
    font-family: 'ヒラギノ角ゴ ProN', "Hiragino Kaku Gothic ProN", 'メイリオ', Meiryo, sans-serif;
}
a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: .7s;
}
li {
    list-style-type: none;
}
img{
    width: 100%;
}
.cf {
    zoom: 1;
}
.cf:before, .cf:after {
    content: "";
    display: table;
}
.cf:after {
    clear: both;
}
/*** =============================
  - layout
============================= ***/
.l-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.l-row {
    zoom: 1;
}
.l-row:before, .l-row:after {
    content: "";
    display: table;
}
.l-row:after {
    clear: both;
}
.l-column {
    width: 100%;
    max-width: 1020px;
    padding: 0 10px;
    margin: 0 auto;
}
.l-column-narrow {
    width: 100%;
    max-width: 820px;
    padding: 0 10px;
    margin: 0 auto;
}
@media only screen and (max-width: 640px) {
    .l-column, .l-column-wide {
        max-width: none;
        padding: 0 3.75%;
    }
    .l-contentMain {
        float: none;
        width: 100%;
    }
    .l-contentSide {
        float: none;
        max-width: none;
        width: 100%;
        margin-bottom: 10%;
    }
}
/*** =============================
  - font
============================= ***/
.font-NotoSans{
    font-family: 'Noto Sans JP', sans-serif;
}
/*** =============================
  - modules
============================= ***/
/** ------------------------------
  - header
------------------------------ **/
.header{
}
.header_head{
    padding: 20px 0 15px;
    position: relative;
}
.header_body{
    padding: 14px 0;
    background-color: #2d4486;
}

.header_logo{
    width: 41.6%;
    max-width: 416px;
    margin: 0 auto;
}
@media only screen and (max-width: 640px) {
    .header{
        width: 100%;
    }
    .header_head{
        padding: 6% 0 4%;
    }
    .header_body{
        padding: 0;
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 10;
        border-top: 1px solid #2d4486;
    }
    .header_logo{
        width: 60%;
        max-width: none;
    }
}
/** ------------------------------
  - localNavigation
------------------------------ **/
.localNavigation{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.localNaviagtion_item{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
}
.localNaviagtion_item a{
    display: block;
    width: 100%;
    color: #fff;
}
.localNaviagtion_item:last-child{
    border-right: none;
}
@media only screen and (max-width: 980px) {
    .localNaviagtion_item{
        font-size: 16px;
        padding: 0 10px;
    }
}
@media only screen and (max-width: 640px) {
    .localNavigation{
        display: block;
    }
    .localNaviagtion_item{
        font-size: 4vw;
        padding: 5% 0;
        border-left: none;
        border-bottom: 1px solid #2d4486;
    }
    .localNaviagtion_item a{
        display: block;
        width: 100%;
        color: #333;
    }
    .localNaviagtion_item:last-child{
        border-right: none;
    }
}
/** ------------------------------
  - hamburger
------------------------------ **/
.hamburger {
    display: none;
}
@media only screen and (max-width: 768px) {
    .hamburger {
        position: absolute;
        display: block;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 32px;
        height: 20px;
        z-index: 99999;
        transition: all .4s;
        box-sizing: border-box;
    }
    .hamburger  span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #333;
        margin: 0 auto;
    }
    .hamburger  span:nth-of-type(1) {
        top: 0;
    }
    .hamburger  span:nth-of-type(2) {
        top: 9px;
    }
    .hamburger  span:nth-of-type(3) {
        bottom: 0;
    }
    .hamburger  span:nth-of-type(1) {
        -webkit-animation: menu-ber01 .75s forwards;
        animation: menu-ber01 .75s forwards;
    }
    .hamburger  span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .hamburger  span:nth-of-type(3) {
        -webkit-animation: menu-ber02 .75s forwards;
        animation: menu-ber02 .75s forwards;
    }
    .active span:nth-of-type(1) {
        -webkit-animation: active-menu-ber01 .75s forwards;
        animation: active-menu-ber01 .75s forwards;
    }
    .active span:nth-of-type(2) {
        opacity: 0;
    }
    .active span:nth-of-type(3) {
        -webkit-animation: active-menu-ber03 .75s forwards;
        animation: active-menu-ber03 .75s forwards;
    }
    @-webkit-keyframes menu-ber01 {
        0% {
            -webkit-transform: translateY(8px) rotate(45deg);
        }
        50% {
            -webkit-transform: translateY(8px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes menu-ber01 {
        0% {
            transform: translateY(8px) rotate(45deg);
        }
        50% {
            transform: translateY(8px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    @-webkit-keyframes menu-ber02 {
        0% {
            -webkit-transform: translateY(-8px) rotate(-45deg);
        }
        50% {
            -webkit-transform: translateY(-8px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes menu-ber02 {
        0% {
            transform: translateY(-8px) rotate(-45deg);
        }
        50% {
            transform: translateY(-8px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    @-webkit-keyframes active-menu-ber01 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(10px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(10px) rotate(45deg);
        }
    }
    @keyframes active-menu-ber01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(10px) rotate(0);
        }
        100% {
            transform: translateY(10px) rotate(45deg);
        }
    }
    @-webkit-keyframes active-menu-ber03 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(-8px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(-8px) rotate(-45deg);
        }
    }
    @keyframes active-menu-ber03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-8px) rotate(0);
        }
        100% {
            transform: translateY(-8px) rotate(-45deg);
        }
    }
}
/** ------------------------------
  - breadCrumbs
------------------------------ **/
.breadCrumbs {
    padding-top: 10px;
}
.breadCrumbs_list {
    font-size: 12px;
}
.breadCrumbs li {
    float: left;
}
.breadCrumbs li a{
    text-decoration: underline;
}
.breadCrumbs li a::after {
    content: '>';
    margin-right: 8px;
    margin-left: 8px;
    display: inline-block;
}
.breadCrumbs li:last-child::after {
    content: none;
}
@media only screen and (max-width: 640px) {
    .breadCrumbs {
        max-width: none;
        padding: 3% 0;
    }
    .breadCrumbs_list {
        font-size: 3.25vw;
    }

}
/** ------------------------------
  - footer
------------------------------ **/
.footer{

}
.footer_head{
    padding-top: 35px;
    padding-bottom: 35px;
    background-color: #f2f2f2;
}
.footer_foot{
    padding-top: 30px;
    padding-bottom: 30px;
}
.footer_logo{
    max-width: 329px;
    width: 33%;
    margin: 0 auto;
}
@media only screen and (max-width: 640px) {
    .footer{

    }
    .footer_head{
        padding-top: 7%;
        padding-bottom: 7%;
    }
    .footer_foot{
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .footer_logo{
        max-width: none;
        width: 60%;
    }
}
/** ------------------------------
  - copyright
------------------------------ **/
.copyright{
    font-size: 11px;
    text-align: center;
}

/*--------------------------------------------------
scroll
--------------------------------------------------*/
.scroll {
    width: 60px;
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 500;
}
@media only screen and (max-width: 640px) {
    .scroll {
        width: 10%;
        bottom: 8vw;
        right: 4.6vw;
    }
}
/** ------------------------------
  - section
------------------------------ **/
.section{
    padding-top: 70px;
    padding-bottom: 70px;
}
.section-bgYellow{
    background-color: #fffeee;
}
.section-bgBlue{
    background-color: #eff7fa;
}
.section-bgPurple{
    background-color: #f4f3f9;
}
.section-bgOrange{
    background-color: #fef7f2;
}
.section-bgLightGreen{
    background-color: #f3fdee;
}
.section-bgPink{
    background-color: #fdf3fa;
}
.section_head{
    margin-bottom: 50px;
}
.section_body{

}
.section_foot{
}

.section_lead{
    text-align: center;
    line-height: 2;
}
@media only screen and (max-width: 640px) {
    .section{
        padding-top: 10%;
        padding-bottom: 10%;
    }
    .section_head{
        margin-bottom: 10%;
    }
    .section_foot{
        margin-top: 10%;
    }
    .section_lead{
        padding: 0 10px;
        font-size: 4vw;
        text-align: left;
    }
}
/** ------------------------------
  - hero
------------------------------ **/
.heroSecond{
    padding-top: 50px;
    padding-bottom: 50px;
}
.heroSecond_head{
    margin-bottom: 25px;
}
.heroSecond_heading{
    color: #2d4486;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 24px;
    position: relative;
}
.heroSecond_heading::after{
    content: '';
    display: inline-block;
    height: 1px;
    width: 35px;
    background-color: #2d4486;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.heroSecond_lead{
    text-align: center;
    line-height: 2;
    width: 70%;
    margin: 0 auto;
}
@media only screen and (max-width: 640px) {
    .heroSecond{
        padding-top: 15%;
        padding-bottom: 15%;
    }
    .heroSecond_head{
        margin-bottom: 7%;
    }
    .heroSecond_heading{
        font-size: 7vw;
        padding-bottom: 5%;
    }
    .heroSecond_lead{
        font-size: 4vw;
        width: 80%;
    }
}
/** ------------------------------
  - list
------------------------------ **/
/* -------------------------------
  - circleList
------------------------------- */
.circleList li::before{
    content: '●';
    color: #2d4486;
    display: inline-block;
    margin-right: 2px;
}

/** ------------------------------
  - heading
------------------------------ **/
/* -------------------------------
  - headingBorder
------------------------------- */
.headingBorder {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    display: inline-block;
    padding: 14px 30px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    background-color: #2d4486;
}

@media only screen and (max-width: 640px) {
    .headingBorder {
        font-size: 5vw;
        color: #fff;
        padding: 3% 0;
        width: 100%;
    }
}
/* -------------------------------
  - headingUnderLine
------------------------------- */
.headingUnderLine{
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
    padding-bottom: 16px;
    position: relative;
}
.headingUnderLine::after{
    content: '';
    display: inline-block;
    height: 1px;
    width: 35px;
    background-color: #2d4486;
    position: absolute;
    left:0;
    bottom: 0;
}
@media only screen and (max-width: 640px) {
    .headingUnderLine{
        font-size: 4.5vw;
        padding-bottom: 5%;
    }
}

/** ------------------------------
  - button
------------------------------ **/
/* -------------------------------
  - borderButton
------------------------------- */
.borderButton {
    text-align: center;
    line-height: 1;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 18px 0;
    width: 270px;
    margin: 0 auto;
    display: block;
    text-decoration: none;
    position: relative;
    -webkit-transition: .5s;
    transition: .5s;
}
.borderButton-orange {
    color: #f08437;
    border: 1px solid #f08437;
}
.borderButton-orange:hover {
    color: #fff;
    background-color: #f08437;
}
@media only screen and (max-width: 640px) {
    .borderButton {
        font-size: 4vw;
        padding: 5% 0;
        width: 100%;
    }
}


/** ------------------------------
  - labels
------------------------------ **/
/* -------------------------------
  - categoryLabel
------------------------------- */
.categoryLabel {
    background-color: #f2f2f2;
    padding: 4px 12px;
    font-size: 11px;
    display: inline-block;
    text-align: center;
    line-height: 1;
}
@media only screen and (max-width: 640px) {
    .categoryLabel {
        padding: 2% 0;
        font-size: 2.6vw;
        width: 50%;
    }
}
/** ------------------------------
  - panels
------------------------------ **/
/* -------------------------------
  - common
------------------------------- */
.panelWrap {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.panel-col1-md {
    width: 100%;
}
.panel-col2-md {
    max-width: 433px;
    width: 48%;
}
.panel-col3-md {
    max-width: 433px;
    width: 48%;
}
.panel-col4-md {
    max-width: 235px;
    width: 23.5%;
}
.panel-col4-md:nth-child(n+2) {
    margin-left: 2%;
}
.panel-col4-md:nth-child(4n+1) {
    margin-left: 0;
}
.panel-col2-md:nth-child(n+3) {
    margin-top: 30px;
}
@media only screen and (max-width: 640px) {
    .panel-col4-md:nth-child(n+2) {
        margin-left: 0;
    }
    .panel-col4-md:nth-child(4n+1) {
        margin-left: 0;
    }
    .panel-col2-md:nth-child(n+3) {
        margin-top: 0;
    }
    .panel-col2-sm {
        max-width: 335px;
        width: 49%;
    }
    .panel-col2-sm:nth-child(n+3) {
        margin-top: 5%;
    }
    .panel-col2-sm:nth-child(n+2) {
        margin-left: 2%;
    }
    .panel-col2-sm:nth-child(2n+1) {
        margin-left: 0;
    }
}
/* -------------------------------
  - newsPanel
------------------------------- */
.newsPanel {
    margin-bottom: 50px;
}
.newsPanel-bdOrange {
    border-bottom: 1px solid #f08437;
}
.newsPanel-bdBlue {
    border-bottom: 1px solid #2d4486;
}
.newsPanel_head {
    margin-bottom: 10px;
}
.newsPanel_thumb {
    width: 100%;
}
.newsPanel_body {
    padding-bottom: 16px;
}
.newsPanel_label{
    margin-bottom: 12px;
}
.newsPanel_text {
    line-height: 1.7;
}

@media only screen and (max-width: 640px) {
    .newsPanel {
        margin-bottom: 5%;
    }
    .newsPanel_head {
        margin-bottom: 3%;
    }
    .newsPanel_thumb {
        width: 100%;
    }
    .newsPanel_body {
        padding-bottom: 5%;
    }
    .newsPanel_label{
        margin-bottom: 3%;
    }
    .newsPanel_text {
        font-size: 4vw;
    }
}

/** ------------------------------
  - entry
------------------------------ **/
.entry{
    margin-top: 60px;
}
.entry_title{
    margin-bottom: 40px;
}
.entry_label{
    margin-bottom: 16px;
}
.entry_heading{
    color: #2d4486;
    font-size: 30px;
    font-weight: bold;
    text-align: left;
    padding-bottom: 18px;
    position: relative;
}
.entry_heading2{
    color: #2d4486;
    font-size: 80%;
    font-weight: bold;
    text-align: left;
    padding-bottom: 18px;
    position: relative;
}
.entry_heading::after{
    content: '';
    display: inline-block;
    height: 1px;
    width: 35px;
    background-color: #2d4486;
    position: absolute;
    left:0;
    bottom: 0;
}
.entry_heading-medium{
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top:1px solid #333;
    border-bottom:1px solid #333;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}
.entry_hero{
}
.entry_text{
    margin-bottom: 20px;
    line-height: 1.7;
}
.entry_text-cRed{
    color: #e6002d;
}
.entry_foot{
    margin-top: 40px;
    margin-bottom: 40px;
}
.entry .entry_link{
    color: #e6002d;
    text-decoration: underline;
    display: inline;
}
.entry_table{
    width: 100%;
    border: 1px solid #333;
    font-size: 16px;
    border-collapse:collapse;
}
.entry_table_th1{
    width: 20%;
    vertical-align: middle;
    text-align: center;
}
.entry_table_th2,
.entry_table_th3{
    width: 40%;
    vertical-align: middle;
    text-align: center;
}
.entry_table th{
    padding: 5px;
    text-align: center;
    border: 1px solid #333;
    background-color: #f1f1f1;
    vertical-align: middle;
    font-weight: normal;
}
.entry_table td{
    padding: 5px 10px;
    text-align: center;
    border: 1px solid #333;
    vertical-align: middle;
}
.entry_date{
	text-align: right;
	padding: 0px;
	font-size: 0.85em;
}
@media only screen and (max-width: 640px) {
    .entry{
        margin-top: 5%;
    }
    .entry_title{
        margin-bottom: 7%;
    }
    .entry_label{
        margin-bottom: 5%;
    }
    .entry_heading{
        font-size: 5.5vw;
        padding-bottom: 5%;
    }
    .entry_heading-medium{
        font-size: 5vw;
        line-height: 1.4;
        padding-top: 5%;
        padding-bottom: 5%;
        margin-top: 7%;
        margin-bottom: 7%;
    }
    .entry_hero{
    }
    .entry_text{
        margin-bottom: 5%;
        font-size: 4vw;
        line-height: 1.6;
    }
    .entry_foot{
        margin-top: 7%;
        margin-bottom: 7%;
    }
}
/*** =============================
  - utility
============================= ***/
/** ------------------------------
  - hidden
------------------------------ **/
.u-hidden{
    display: none;
}
/** ------------------------------
  - device switcher
------------------------------ **/
.u-visible-md {
    display: block;
}
.u-visible-sm {
    display: none !important;
}
@media only screen and (max-width: 640px) {
    .u-visible-md {
        display: none !important;
    }
    .u-visible-sm {
        display: block !important;
    }
}
/** ------------------------------
  - alpha
------------------------------ **/
.u-alpha,
.u-alpha img {
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}
.u-alpha:hover,
.u-alpha:hover > img {
    opacity: .7;
}
/** ------------------------------
  - adjustment
------------------------------ **/
.u-mb-lv9 {
    margin-bottom: 90px;
}
.u-mb-lv5 {
    margin-bottom: 50px;
}
.u-mb-lv4 {
    margin-bottom: 40px;
}
.u-mb-lv3 {
    margin-bottom: 30px;
}
.u-mb-lv2 {
    margin-bottom: 20px;
}
.u-mb-lv1 {
    margin-bottom: 10px;
}
.u-mt-lv5 {
    margin-top: 50px;
}
.u-mt-lv4 {
    margin-top: 40px;
}
.u-mt-lv3 {
    margin-top: 30px;
}
.u-mt-lv2 {
    margin-top: 20px;
}
.u-mt-lv1 {
    margin-top: 10px;
}
/** ------------------------------
  - border
------------------------------ **/
.bdTop-Navy{
    border-top: 4px solid #2d4486;
}
/** ------------------------------
  - color
------------------------------ **/
.color-Navy{
    color: #2d4486;
}
.color-Red{
    color: #e6002d;
}