@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    font-size: 62.5%
}

html,
body {
    width: 100%;
    height: 100%
}

body {
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'HiraginoKakuGothic ProN', 'Yu Gothic', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666
}

@media screen and (min-width:768px) {
    body {
        line-height: 1.5;
        font-size: 1.6rem
    }
}

/* 画像右クリック禁止 */
img {
    pointer-events: none; 
}
img {
-webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    touch-callout:none;
    user-select:none;
}

img {
    display: block;
    margin: 0;
    width: 100%;
    font-size: 0
}

figure {
    display: block;
    margin: 0
}

ul,
li {
    list-style: none
}

a, a:link a:visited {
    width: 100%;
    height: 100%;
    color: #006994;
    text-decoration: none;
    transition: .2s
}

/* .linkArrowBlue {
    display: block;
    position: relative;
    margin: 5px 0 0;
    padding: 0 0 0 1em;
    text-decoration: underline
}

.linkArrowBlue::before {
    position: absolute;
    content: ' ';
    top: .4em;
    left: 0;
    width: 6px;
    height: 6px;
    border-top: 2px solid #004ea2;
    border-right: 2px solid #004ea2;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.linkArrowBlue:hover {
    text-decoration: none
} */

.linkArrow {
    display:block;
    margin-top: 3px;
    padding-left: 18px;
    line-height: 1.2;
    font-size: 1.6rem;
    font-weight: normal;
    color: #006994;
    background: url(../images/common/icon-link.gif) no-repeat 0 0.2em;
}
.linkArrow:hover{
    filter:alpha(opacity=75);
    -moz-opacity: 0.75;
    opacity: 0.75;
    cursor:pointer;
}

h1, h2, h3, h4 {
    margin: 0;
    font-family: "din-2014", sans-serif;
    font-weight: 400;
    font-size: 2.2rem
}

p {
    line-height: 1.4
}

p+p {
    margin-top: 15px
}

.onlySmallDevise {
    display: block!important
}

.onlyMediumDevise {
    display: none!important
}

.onlyLargeDevise {
    display: none!important
}

@media screen and (min-width:768px) {
    .onlySmallDevise {
        display: none!important
    }
    .onlyMediumDevise {
        display: block!important
    }
    .onlyLargeDevise {
        display: none!important
    }
}

@media screen and (min-width:1000px) {
    .onlySmallDevise {
        display: none!important
    }
    .onlyMediumDevise {
        display: none!important
    }
    .onlyLargeDevise {
        display: block!important
    }
}

.moreMediumDevise {
    display: none!important
}

@media screen and (min-width:768px) {
    .moreMediumDevise {
        display: block!important
    }
}

@media screen and (min-width:1000px) {
    .moreMediumDevise {
        display: block!important
    }
}

.lessMediumDevise {
    display: block!important
}

@media screen and (min-width:768px) {
    .lessMediumDevise {
        display: block!important
    }
}

@media screen and (min-width:1000px) {
    .lessMediumDevise {
        display: none!important
    }
}

.inner {
    margin: 0;
    padding: 0 8%
}

.innerLarger {
    margin: 0;
    padding: 0 3%
}

@media screen and (min-width:1000px) {
    .inner {
        margin: 0 auto;
        padding: 0;
        width: 1000px
    }
    .innerLarger {
        margin: 0 auto;
        padding: 0 3%;
    }
}

.btn {
    margin: 10px 0;
    width: auto
}

.btn a {
    position: relative;
    display: block;
    padding: 14px 10px;
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #006994;
    border: #cccccc 1px solid;
    border-radius: 2px;
    transition: .2s;
}
.btn a:hover {
    color: #fff;
    background: #666;
}

@media screen and (min-width:768px) {
    .btn a {
        font-size: 1.6rem
    }
}

.btn.black a {
    color: #000;
    border: 2px solid #000;
    transition: .2s
}

.btn.black a:hover {
    color: #fff;
    background: #000
}

.btn.white a {
    color: #fff;
    border: 2px solid #fff;
    transition: .2s
}

.btn.white a:hover {
    color: #000;
    background: #fff
}
.btn.arrow a::after {
    position: absolute;
    content: ' ';
    top: 40%;
    right: 5%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #666666;
    border-right: 2px solid #666666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.btn.pdf a {
    padding-left: 20px;
    text-align: left;
}
.btn.pdf a::before {
    display: inline-block;
    content: ' ';
    width: 45px;
    height: 26px;
    left: 10px;
    vertical-align: middle;
    background-image: url(../images/common/icon-pdf.png);
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 26px;
}
.btn.pdf a:hover {
    background: #cccccc;
}


.flL {
    float: left
}

.flR {
    float: right
}

.clearfix:after {
    display: block;
    content: ' ';
    clear: both;
    height: 0
}

.align-center {
    text-align: center
}

.align-left {
    text-align: left
}

.align-right {
    text-align: right
}

.border-top {
    border-top: 1px solid #b0a084
}

.bold {
    font-weight: 600
}

.white {
    color: #fff
}

.listDot li {
    position: relative;
    margin: 5px 0 0;
    padding: 0 0 0 1em
}

.listDot li::before {
    position: absolute;
    content: ' ';
    top: .5em;
    left: .3em;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #000
}

.column {
    display: block
}

.columns {
    display: block
}

@media screen and (min-width:768px) {
    .column {
        display: block;
        width: 100%
    }
    .columns {
        display: flex;
        justify-content: space-between
    }
    .columns.jusCenter {
        justify-content: center
    }
}

.btnColumns {
    margin: 15px 0 0
}

@media screen and (min-width:768px) {
    .btnColumns {
        display: flex;
        justify-content: space-between
    }
    .btnColumns>.col {
        margin-left: 10px;
        width: 100%
    }
    .btnColumns>.col:first-of-type {
        margin-left: 0
    }
}


.wrapper {
    position: relative;
}

.header {
    z-index: 2;
    background: rgba(255, 255 ,255, .93);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, .2);
}
.header>.columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 54px
}

.headerLogo {
    width: 44%;
    max-width: 225px;
}
.headerLogo img {
    height: auto;
}

.headerMenuWrapper {
    width: 15%
}

.headerMenu {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 54px 0 0;
    z-index: 99;
    background: rgba(102, 102, 102, .95);
    overflow: scroll
}

.headerMenu .menuItem {
    width: 100%
}

.headerMenu .menuItem a {
    display: block;
    padding: 18px 5%;
    font-size: 2.0rem;
    color: #fff;
    border-bottom: 5px solid transparent;
}

.headerMenu .menuItem:first-of-type a {
    /* border-top: 1px solid #999 */
}

.headerMenuBtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 54px;
    background: #666666;
    border-top: 26px solid #fff;
    border-bottom: 26px solid #fff;
    border-left: 11px solid #fff;
    border-right: 11px solid #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
    z-index: 999;
}

.headerMenuBtn::before,
.headerMenuBtn::after {
    content: ' ';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #666666;
    right: 0;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.headerMenuBtn::before {
    top: -10px
}

.headerMenuBtn::after {
    bottom: -10px;
    right: 0
}

.headerMenuClose {
    margin: 15px 15px;
    width: 50px;
    height: 50px;
    z-index: 99;
    cursor: pointer;
    text-align: right
}

.headerMenuBtn.active {
    background: #fff
}

.headerMenuBtn.active:before {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 0;
    right: 0
}

.headerMenuBtn.active:after {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 0;
    right: 0
}
.headerUtility {
    margin: 0 auto 0 10%;
}

@media screen and (min-width:768px) {
    .header {
        padding: 0;
        width: 100%;
    }
    .header>.innerLarger {
        padding: 0 0 0 3%;
        position: relative;
        max-width: 1200px;
        height: 80px
    }
    .headerLogo {
        width: 225px
    }
    .headerMenu>.columns {
        display: block
    }
    .headerMenu {
        padding: 82px 0 0
    }

    .headerMenuBtn {
        width: 76px;
        height: 80px;
        border-top: 39px solid #FFF;
        border-bottom: 39px solid #FFF;
        border-left: 20px solid #FFF;
        border-right: 20px solid #FFF
    }
    .headerMenuBtn::before,
    .headerMenuBtn::after {
        content: ' ';
        position: absolute;
        width: 36px;
        height: 2px;
        background: #666666;
        right: 0;
        -moz-transition: all .3s;
        -webkit-transition: all .3s;
        transition: all .3s
    }
}

@media screen and (min-width:1000px) {
    .header>.innerLarger {
        padding: 0 3%;
        height: 96px
    }
    .headerLogo {
        padding: 10px 0 0;
    }
    .headerMenuWrapper {
        align-self: flex-end;
        margin: 0;
        width: 72%
    }
    .headerMenu {
        display: flex;
        justify-content: space-between;
        position: inherit;
        padding: 0;
        width: 100%;
        overflow: inherit;
        background: none
    }
    .headerMenu>.columns {
        display: flex;
        justify-content: space-between;
        width: 100%
    }
    .headerMenuBtn,
    .headerMenuClose {
        display: none
    }
    .headerMenu .menuItem {
        margin: 0 7px;
        width: auto
    }
    .headerMenu .menuItem a {
        position: relative;
        display: inline-block;
        padding: 2px 0 15px;
        font-size: 1.4rem;
        font-weight: 600;
        color: #006994;
        border-top: 0
    }
    .headerMenu .menuItem a,
    .headerMenu .menuItem:first-of-type a {
        /* border: none; */
    }
    .headerMenu .menuItem a.current {
        border-bottom: 5px solid #006994
    }
    .headerMenu .menuItem a:before,
    .headerMenu .menuItem a:after {
        position: absolute;
        bottom: -5px;
        content: ' ';
        display: inline-block;
        width: 0;
        height: 5px;
        background: #006994;
        transition: .2s
    }
    .headerMenu .menuItem a:before {
        left: 50%
    }
    .headerMenu .menuItem a:after {
        right: 50%
    }
    .headerMenu .menuItem:not(.contact) a:not(.current):hover:before,
    .headerMenu .menuItem:not(.contact) a:not(.current):hover:after {
        width: 50%
    }
    .headerMenu .contact {
        margin-right: 0;
        align-self: center;
    }
    .headerMenu .contact a {
        margin-bottom: 14px;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 4px;
        color: #fff;
        border: 1px solid transparent;
        border-radius: 3px;
        background: #006994;
    }
    .headerMenu .contact a:hover {
        color: #006994;
        border: 1px solid #006994;
        background: none;
    }
    .headerUtility {
        align-items: center;
        position: absolute;
        top: 15px;
        right: calc(3.5% + 10px);
    }
    .headerUtility .langChange {
        margin: 0 0 0 15px;
        font-size: 1.4rem;
    }
    .headerUtility a {
        font-weight: 600;
        color: #006994;
    }
    .headerUtility a:hover {
        text-decoration: underline;
    }
}

.contents {
    position: relative;
    padding: 0 0 30px;
    width: 100%
}
.contents.border {
    border-top: 6px solid #004ea2
}
@media screen and (min-width:768px){
    .contents {
        padding: 0 0 140px;
    }
}

.toTopBtn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: auto;
    width:40px;
    z-index:2;
}
@media screen and (min-width:768px){
    .toTopBtn{
        bottom: 40px;
    }
}

.mainContent {
    padding: 10% 0 50px;
    width: 100%
}
@media screen and (min-width:768px) {
    .mainContent {
        padding: 90px 0 100px
    }
}

.footer {
    position: relative;
    padding: 40px 0 20px;
    color: #fff;
    background: #666666;
    z-index: 1
}

.footerMenu {
    justify-content: center
}

.footerMenu li {
    margin: 0 0 12px;
    padding: 0 20px;
    text-align: center;
    font-size: 1.4rem;
}

.footerMenu a {
    padding: 0 2px 2px;
    color: #fff
}

.footerMenu a.current {
    border-bottom: 1px solid #fff
}

.footer .contact {
    margin: 30px auto 0;
    width: 60%
}

.footer .contact a {
    font-weight: 400;
    border: 1px solid #fff
}

.footer .footerBottom {
    margin: 30px 0 0;
    text-align: center;
    font-size: 1.1rem
}
.footer .footerBottom .copyright {
    margin-top: 15px;
}
.footer .footerBottom a {
    color: #fff;
    text-decoration: underline;
}

@media screen and (min-width:768px) {
    .footer {
        padding: 60px 0 25px
    }
    .footer .contact {
        width: 220px
    }
    .footer .footerBottom {
        margin: 50px 0 0
    }
    .footer .footerBottom .copyright {
        margin: 0 0 0 auto;
    }
    .footer .footerBottom a:hover {
        text-decoration: none;
    }
    .footerMenu .menuItem a {
        position: relative;
        display: inline-block;
        padding: 0 2px 2px;
        border-top: 0
    }
    .footerMenu .menuItem a:before,
    .footerMenu .menuItem a:after {
        position: absolute;
        bottom: -1px;
        content: ' ';
        display: inline-block;
        width: 0;
        height: 1px;
        background: #fff;
        transition: .2s;
    }
    .footerMenu .menuItem a:before {
        left: 50%
    }
    .footerMenu .menuItem a:after {
        right: 50%
    }
    .footerMenu .menuItem a:not(.current):hover:before,
    .footerMenu .menuItem a:not(.current):hover:after {
        width: 50%
    }
}

.isActive.showUp {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    -ms-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-name: showUp;
    -ms-animation-name: showUp;
    animation-name: showUp;
    visibility: visible!important
}

@-webkit-keyframes showUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@keyframes showUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.isActive.showLeft {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .6s;
    -ms-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-name: showLeft;
    -ms-animation-name: showLeft;
    animation-name: showLeft;
    visibility: visible!important
}

@-webkit-keyframes showLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-40px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@keyframes showLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
        transform: translateX(-40px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.isActive.showRight {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    -ms-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-name: showRight;
    -ms-animation-name: showRight;
    animation-name: showRight;
    visibility: visible!important
}

@-webkit-keyframes showRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@keyframes showRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.showFade {
  transition: opacity 1s, visibility 0s ease 1s;
  opacity: 0;
  visibility: hidden;
}
.showFade.isShow {
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
}

.anchorNav {
    margin: 30px 0 0;
    padding: 15px 25px;
    background: #f5f5f5;
}
.anchorNav .anchorNavList {
    justify-content: flex-start;
    align-content: center;
    margin: 0 !important;
}
.anchorNavItem {
    position: relative;
    margin: 0 15px 0 0;
    padding: 0 15px 0 0;
}
.anchorNavItem::after {
    display: inline-block;
    content: '|';
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1;
    vertical-align: middle;
    color: #cfcfcf;
}
.anchorNavItem:last-of-type {
    margin: 0;
}
.anchorNavItem:last-of-type::after {
    display: none;
}
.anchorNavItem a {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #006994;
}
.anchorNavItem a:hover {
    opacity: .7;
}
