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

/* =========================================================
Reset
========================================================= */

/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
table {border-collapse: collapse;border-spacing: 0;}
button{background-color: transparent;border: none;cursor: pointer;outline: none;padding: 0;appearance: none;}

@font-face {
    font-family: 'arrow';
    src:  url('../fonts/arrow.eot?qdcm3n');
    src:  url('../fonts/arrow.eot?qdcm3n#iefix') format('embedded-opentype'),
        url('../fonts/arrow.ttf?qdcm3n') format('truetype'),
        url('../fonts/arrow.woff?qdcm3n') format('woff'),
        url('../fonts/arrow.svg?qdcm3n#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
/* =========================================================
Common
========================================================= */
html {
    font-size: 62.5%;
    height: 100%;
}
body {
    color: #555;
    font-family: -apple-system , YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, sans-serif;
    font-size: 1.4rem;
    max-height: 999999px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}
* {
    box-sizing: border-box;
}
a {
    color: #666;
    text-decoration: none;
    -webkit-transition: all .25s ease-in;
    transition: all .25s ease-in;
}
a:focus {
    outline: none;
}
a:hover {
    opacity: 0.7;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
.preload{
    -webkit-transition: 0 !important;
    transition: 0 !important;
}
.spOnly {
    display: none;
}
.fadeAnime {
    opacity: 0;
    transform: translateY(50px);
}
.fadeIn {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;			
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}
@media only screen and (max-width:749px) {
    .pcOnly {
        display: none;
    }
    .spOnly {
        display: block;
    }
    img {
        width: 100%;
    }
}
/* =========================================================
Header
========================================================= */
.header {
    position: relative;
}
.header .navBlock {
    display: flex;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .25s ease-in;
}
.header .navBlock.active {
    background: #fff;
}
.header .navBlock .jbLogo {
    width: min(11.95vw, 153px);
    margin: 0 1.8%;
    display: flex;
    align-items: center;
}
.header .navBlock .jbLogo a {
    display: block;
    width: 100%;
}
.header .navWrap {
    display: flex;
}
.header .gNav ul {
    display: flex;
    align-items: center;
    padding-right: 40px;
}
.header .gNav li {
    display: flex;
    align-items: center;
    height: 50px;
    margin-right: 2.85vw;
    border-bottom: 2px solid transparent;
}
.header .gNav li:hover {
    border-bottom: 2px solid #4b7ebf;
}
.header .gNav li.nav05 {
    margin: 0;
}
.header .gNav li a {
    display: block;
    padding: 8px 0;
}
.header .gNav li figure {
    font-size: 0;
}
.header .gNav li figure p {
    display: none;
}
.header .gNav li span {
    line-height: 1;
}
.header .gNav li .imgEn {
    height: 1.477vw;
    height: min(1.477vw, 18px);
    display: block;
}
.header .gNav li .imgJa {
    display: inline-block;
    position: relative;
    height: 1.238vw;
    height: min(1.238vw, 15px);
}
.header .gNav li.havChild .imgJa::after {
    content: "";
    width: 8px;
    height: 8px;
    background: url(../img/arrow_d.svg) no-repeat 0 center;
    background-size: contain;
    -webkit-transition: all .25s ease-in;
    transition: all .25s ease-in;
    position: absolute;
    right: -16px;
    bottom: 1px;
}
.header .gNav li.havChild:hover .imgJa::after {
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}
.header .gNav li .imgEn img,
.header .gNav li .imgJa img {
    width: auto;
    height: 100%;
}
.header .gNav li .childMenu {
    display: block;
    position: absolute;
    top: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease-in;
    justify-content: center;
    padding: 16px 16px 6px;
    margin-left: -16px;
}
.header .gNav li .childMenu {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
.header .active .gNav li .childMenu {
    background: rgba(255, 255, 255, 1);
}
.header .gNav li.havChild:hover .childMenu {
    opacity: 1;
    visibility: visible;
}
.header .gNav li .childMenu li {
    border: none;
    height: auto;
}
.header .gNav li .childMenu li:first-child {
    margin: 0;
}
.header .gNav li .childMenu li:hover {
    border: none;
}
.header .gNav li .childMenu li a {
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0 0 10px;
}
.header .gNav li .childMenu li a::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 8px;
    background: url(../img/arrow_r.svg) no-repeat;
    background-size: contain;
    margin-left: 6px;
}
.header .entry {
    display: flex;
}
.header .entry li {
    width: 8.6vw;
    height: 100%;
    line-height: 1;
    margin-left: 4%;
}
.header .entry li:first-child {
    margin-left: 0;
}
.header .entry li a {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(to right,  #4b7ebf 1%,#6cbdc6 100%);
}
.header .entry li:nth-child(2) a {
    background: linear-gradient(to right,  #6cbdc6 1%,#d3d95f 100%);
}
.header .entry li img {
    max-width: 45px;
    width: 100%;
}
.header .trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.85vw;
    margin: 0 0 0 auto;
    padding: 0 10px;
}
.header .trigger:hover {
    cursor: pointer;
}
.header .trigger img {
    width: 100%;
    max-width: 62px;
}
.header .gNav.slideNav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    background: #fff;
    height: 100%;
    z-index: 9999;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all .2s;
    transform: translateX(100%);
}
.header .gNav.slideNav.open {
    transform: translateX(0);
}
.header .gNav.slideNav .close {
    display: block;
    position: absolute;
    z-index: 2;
    width: 20px;
    top: 4%;
    right: 7.5%;
}
.header .gNav.slideNav .close:hover {
    cursor: pointer;
}
.header .gNav.slideNav ul {
    display: block;
    padding: 86px 0 60px 9.5%;
    letter-spacing: 1px;
}
.header .gNav.slideNav li {
    margin: 0 0 20px;
    border: none;
    display: block;
    height: auto;
}
.header .gNav.slideNav li:hover {
    border-bottom: none;
}
.header .gNav.slideNav li a {
    padding: 0;
}
.header .gNav.slideNav li figure {
    line-height: 1;
}
.header .gNav.slideNav li figure p {
    display: block;
    font-size: 1.8rem;
    padding-bottom: 6px;
}
.header .gNav.slideNav li figure p::after {
    content: "";
    display: inline-block;
    position: relative;
    background: url(../img/arrow_r.svg) no-repeat;
    background-size: contain;
    top: -3px;
    width: 5px;
    height: 8px;
    margin-left: 10px;
}
.header .gNav.slideNav li.havChild figure::after {
    display: none;
}
.header .gNav.slideNav li.havChild figure p::after {
    background: url(../img/arrow_d.svg) no-repeat;
    background-size: contain;
    top: -1px;
    width: 8px;
    height: 8px;
    -webkit-transition: all .25s ease-in;
    transition: all .25s ease-in;
}
.header .gNav.slideNav li.havChild figure.active p::after {
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}
.header .gNav.slideNav li img {
    display: block;
    padding: 6px 0 0 2px;
    height: 24px;
    width: auto;
}
.header .gNav.slideNav li .childMenu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: none;
    transition: none;
    padding: 24px 6% 10px;
    display: none;
    background: none;
    box-shadow: none;
    margin: 0;
}
.header .gNav.slideNav li .childMenu li {
    margin: 0 0 20px;
}
.header .gNav.slideNav li .childMenu li:last-child {
    margin: 0;
}
.header .gNav.slideNav li .childMenu li a {
    font-weight: normal;
    font-size: 1.4rem;
    padding: 0;
}
.header .gNav.slideNav li .childMenu li a::after {
    top: -1px;
    width: 8px;
    height: 5px;
    margin-left: 8px;
}
.header .gNav li.entry {
    display: block;
    margin: 0 0 15px;
    width: 90%;
    opacity: 1;
}
.header .gNav li.entry a {
    display: block;
    text-align: center;
    background: linear-gradient(to right,  #4b7ebf 1%,#6cbdc6 100%);
    padding: 20px 0;
}
.header .gNav li.entry.entry2 a {
    background: linear-gradient(to right,  #6cbdc6 1%,#d3d95f 100%);
}
.header .gNav li.entry a img {
    max-width: none;
    max-width: 100px;
    width: 100%;
    margin: 0 auto;
    height: auto;
}
@media only screen and (max-width: 979px) {
    .header .navBlock .jbLogo {
        width: 153px;
    }
    .header .gNav.headNav {
        display: none;
    }
    .header .trigger {
        width: 100px;
    }
    .header .entry li {
        width: 200px;
    }
}
@media only screen and (max-width:749px) {
    .header .navBlock {
        height: 82px;
    }
    .header .navBlock .jbLogo {
        width: 90px;
        margin: 0 4% 0 5%;
    }
    .header .gNav.slideNav {
        max-width: none;
        width: 68%;
    }
    .header .gNav.slideNav .close {
        width: 4.8vw;
    }
    .header .gNav.slideNav ul {
        padding: 36% 0 1% 9.5%;
    }
    .header .gNav.slideNav li {
        margin: 0 0 9%;
    }
    .header .gNav.slideNav li figure p {
        font-size: 4vw;
    }
    .header .gNav.slideNav li figure p::after {
        width: 1.46vw;
        height: 2.26vw;
        margin-left: 4%;
    }
    .header .gNav.slideNav li.havChild figure p::after {
        width: 2.26vw;
        height: 2.26vw;
    }
    .header .gNav.slideNav li img {
        height: 6.5vw;
    }
    .header .gNav.slideNav li.havChild {
        padding: 0;
    }
    .header .gNav.slideNav li .childMenu {
        padding: 7% 0 1% 6%;
    }
    .header .gNav.slideNav li .childMenu li {
        margin: 0 0 6%;
    }
    .header .gNav.slideNav li .childMenu li a {
        font-size: 3.33vw;;
    }
    .header .gNav.slideNav li .childMenu li a::after {
        width: 1.2vw;
        height: 1.86vw;
        margin-left: 4%;
    }
    .header .gNav.slideNav li.entry a {
        padding: 10% 0;
    }
    .header .entry {
        width: 40vw;
    }
    .header .entry a {
        height: 100%;
    }
    .header .entry a figure {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        margin: auto;
    }
    .header .entry img {
        max-width: none;
    }
    .header .trigger {
        width: 27vw;
        padding: 0;
    }
    .header .trigger img {
        width: 62%;
        max-width: none;
    }
    .header h2 {
        margin: 0 3%;
        text-align: center;
    }
    .header h2 img {
        max-width: none;
    }
    .header .about {
        margin: 8% 7% 0;
    }
    .header .about a {
        max-width: none;
    }
    .header .copy {
        left: 6.5%;
        bottom: 24.3%;
        max-width: none;
        width: 2.66vw;
    }
}
/* =========================================================
Breadcrumb
========================================================= */
.breadcrumb {
    padding: 14px 3%;
}
.breadcrumb ul {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
}
.breadcrumb li {
    font-size: 1rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    color: #999;
}
.breadcrumb li::after {
    content: "";
    width: 3.25px;
    height: 5.56px;
    background: url(../img/arrow_g.svg) no-repeat;
    background-size: contain;
    display: block;
    margin: 0 4px;
}
.breadcrumb li:last-child::after {
    display: none;
}
.breadcrumb li a {
    display: block;
}
@media only screen and (max-width:749px) {
    .breadcrumb {
        padding: 3.5% 4%;
    }
    .breadcrumb ul {
        max-width: none;
    }
    .breadcrumb li {
        letter-spacing: 0;
    }
}
/* =========================================================
Main Contents
========================================================= */
.mainContents {
    display: block;
}
.mainContents .innerHead {
    padding-top: 50px;
}
.mainContents .innerTitleWrap {
    padding: 16px 3% 78px;
}
.mainContents .innerTitleWrap h1 {
    max-width: 1040px;
    margin: 0 auto;
    font-size: 3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    letter-spacing: 2.5px;
}
.mainContents .innerTitleWrap h1::before {
    content: "";
    background: url(../img/title_icon.svg) no-repeat;
    background-size: cover;
    width: 120px;
    height: 85px;
    margin-right: 16px;
    display: block;
}
.mainContents .innerTitleWrap h1 img {
    display: block;
}
.mainContents .innerTitleWrap .lead {
    max-width: 1040px;
    margin: 0 auto;
    font-size: 1.6rem;
    padding: 30px 0 0 5%;
    letter-spacing: 1.3px;
}
.mainContents .gradBtn a {
    background-image: -moz-linear-gradient( 0deg, rgb(75,126,191) 0%, rgb(108,189,198) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(75,126,191) 0%, rgb(108,189,198) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(75,126,191) 0%, rgb(108,189,198) 100%);
    color: #fff;
    display: block;
    max-width: 350px;
    width: 100%;
    line-height: 1;
    padding: 18px 0;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-align: center;
}
.mainContents .gradBtn span::after {
    content: "\e901";
    font-family: "arrow";
    display: inline-block;
    margin-left: 8px;
    position: relative;
    top: -1px;
    font-size: 1rem;
}
@media only screen and (max-width:749px) {
    .mainContents .innerHead {
        padding-top: 82px;
    }
    .mainContents .innerTitleWrap {
        padding: 9% 3% 10%;
    }
    .mainContents .innerTitleWrap h1 {
        max-width: none;
        font-size: 5.33vw;
        display: block;
        letter-spacing: 2.5px;
        text-align: center;
    }
    .mainContents .innerTitleWrap h1::before {
        content: "";
        width: 22.4vw;
        height: 15.73vw;
        margin: 0 auto 5%;
    }
    .mainContents .innerTitleWrap h1 img {
        margin: 0 auto 7%;
    }
    .mainContents .innerTitleWrap .lead {
        max-width: none;
        margin: 0 auto;
        font-size: 3.46vw;
        padding: 7.5% 4%;
        letter-spacing: 1px;
        line-height: 1.7;
    }
    .mainContents .gradBtn a {
        max-width: none;
        padding: 6.7% 0;
        font-size: 3.46vw;
    }
    .mainContents .gradBtn span::after {
        margin-left: 2%;
        font-size: 2.66vw;
    }
}
/* =========================================================
Footer
========================================================= */
footer {
    background: #4b7ebf;
    padding: 18px 0;
    line-height: 1;
}
footer .copy {
    max-width: 180px;
    margin: 0 auto;
}
@media only screen and (max-width:749px) {
    footer {
        padding: 2.2% 0;
    }
    footer .copy {
        max-width: none;
        width: 52.26vw;
    }
}