@charset "utf-8";

/* ===== style.css ===== */
/* -- body -- */
body {
    color: #25387C;
    font: 16px/29px "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    background: #9BF0FF;
}
@media screen and ( max-width: 900px ) {
    body {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* -- inner -- */
.inner {
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}
@media screen and ( max-width: 900px ) {
    .inner {
        margin: 0 30px;
        width: auto;
        max-width: none;
    }
}


/*
    tag
*/
p {
    margin: 27px 0;
}
@media screen and ( max-width: 900px ) {
    p {
        margin: 25px 0;
    }
}

a {
    color: #0000EE;
    text-decoration: none;
    transition: opacity 0.3s;
}
@media screen and ( min-width: 901px ) {
    a:hover {
        opacity: 0.7;
    }
}

img {
    max-width: 100%;
    height: auto;
}
@media screen and ( max-width: 900px ) {
    img {
        width: 100%;
    }
}


/*
    common
*/
/* -- hide -- */
@media screen and ( min-width: 901px ) {
    .pc_hide { display: none!important; }
}
@media screen and ( max-width: 900px ) {
    .sp_hide { display: none!important; }
}


/*
    header
*/
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    padding-bottom: 30px;
    z-index: 1000;
    transition: background .3s;
}
/* on */
header.on {
    background: #9BF0FF;
}
/* -- header_logo -- */
.header_logo {
    padding: 37px 20px 0 30px;
}
.header_logo span {
    font-weight: bold;
    font-size: 13px;
    line-height: 1.5;
    display: inline-block;
    vertical-align: top;
    margin: 11px 0 0 30px;
}
/* -- gnav_outer -- */
#gnav_outer {
    padding: 30px 46px 0 0;
}
/* - gnavBtn - */
#gnavBtn {
    position: relative;
    z-index: 20;
}
#gnavBtn a {
    display: block;
    position: relative;
    overflow: hidden;
    width: 28px;
    padding-top: 142.9%;
}
#gnavBtn span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 3px;
    background: #25387C;
    transform: translate(-50%, -50%) rotate(-30deg);
    transition: margin .3s, background .3s, transform .3s;
}
#gnavBtn span:nth-child(1) {
    margin-top: -10px;
}
#gnavBtn span:nth-child(3) {
    margin-top: 10px;
}
/* open */
header.open #gnavBtn span:nth-child(1),
header.open #gnavBtn span:nth-child(3) {
    margin-top: 0;
    transform: translate(-50%, -50%) rotate(30deg);
}
/* - gnav - */
#gnav {
    display: flex;
    flex-wrap: wrap;
}
.gnav_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 41px 1px 0;
}
.gnav_list > li:not(:last-child) {
    margin-right: 36px;
}
.gnav_list > li > a {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    color: #25387C;
    transition: color .3s;
}
.gnav_list > li .arrow svg {
    vertical-align: middle;
    margin: 0 2px 0 8px;
    fill: #25387c;
    transition: fill .3s;
}
.gnav_btn {
    width: 168px;
}
.gnav_btn a {
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    color: #25387c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 54px;
    padding-bottom: 2px;
    border: 2px solid #25387C;
    border-radius: 5px;
    transition: color .3s, border .3s;
}
.gnav_btn svg {
    margin-right: 11px;
    fill: #25387c;
    transition: fill .3s;
}
@media screen and ( min-width: 901px ) {
    /* -- gnav_outer -- */
    /* - gnavBtn - */
    #gnavBtn a:hover {
        opacity: 1;
    }
    #gnavBtn a:hover span {
        background: #009DE2;
    }
    /* - gnav - */
    /* hover */
    .gnav_list > li > a:hover {
        color: #009DE2;
        opacity: 1;
    }
    .gnav_list > li a.arrow:hover svg {
        fill: #009DE2;
    }
    .gnav_btn a:hover {
        color: #009DE2;
        border-color: #009DE2;
        opacity: 1;
    }
    .gnav_btn a:hover svg {
        fill: #009DE2;
    }
}
@media screen and ( min-width: 1251px ) {
    /* - gnavBtn - */
    #gnavBtn {
        display: none;
    }
}
@media screen and ( max-width: 1250px ) {
    /* - gnav - */
    #gnav {
        display: block;
        position: absolute;
        overflow-y: scroll;
        top: 0;
        right: -100vw;
        padding: 116px 60px 40px;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        transition: right .5s;
    }
    #gnav::-webkit-scrollbar {
      display: none;
    }
    .gnav_list {
        display: block;
        margin: auto;
    }
    .gnav_list > li:not(:last-child) {
        margin: 0 0 29px;
    }
    .gnav_list > li > a {
        font-size: 18px;
    }
    .gnav_list > li .arrow svg {
        position: relative;
        top: -2px;
        margin: 0 0 0 10px;
    }
    .gnav_btn {
        margin-top: 43px;
    }
    /* open */
    header.open #gnav {
        right: 0;
    }
}
@media screen and ( max-width: 900px ) {
    header {
        padding-bottom: 18px;
    }
    /* -- header_logo -- */
    .header_logo {
        padding: 16px 10px 0 16px;
    }
    .header_logo img {
        max-width: 160px;
    }
    .header_logo span {
        font-size: 10px;
        display: block;
        margin: 5px 0 0;
    }
    /* -- gnav_outer -- */
    #gnav_outer {
        padding: 20px 20px 0 0;
    }
}


/*
    footer
*/
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 168px;
}
.footer_logo {
    margin-right: 30px;
    padding: 2px 0 0 81px;
}
.footer_logo span {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    display: block;
    margin-top: 16px;
}
.footer_gnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-right: 79px;
}
.footer_gnav > :not(:last-child) {
    margin-right: 50px;
}
.footer_gnav a {
    font-weight: bold;
    line-height: 1.5;
    color: #25387C;
    transition: color .3s;
}
.copyright {
    text-align: right;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 48px;
    padding: 0 79px;
    width: 100%;
}
/* -- footerBox01 -- */
.footerBox01 {
    margin-top: 97px;
    padding: 40px 81px 42px;
    width: 100%;
    background: #fff;
}
.footerBox01_gnav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footerBox01_gnav > :not(:last-child) {
    margin-right: 40px;
}
.footerBox01_gnav a {
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    color: #25387C;
    transition: color .3s;
}
@media screen and ( min-width: 901px ) {
    /* hover */
    .footer_gnav a:hover {
        color: #009DE2;
        opacity: 1;
    }
    /* hover */
    /* -- footerBox01 -- */
    .footerBox01_gnav a:hover {
        color: #009DE2;
        opacity: 1;
    }
}
@media screen and ( max-width: 1250px ) {
    footer {
        display: block;
    }
    .footer_gnav {
        justify-content: flex-start;
        margin-top: 71px;
        padding: 0 79px;
    }
    .copyright {
        text-align: left;
        margin-top: 40px;
        padding: 0 79px;
    }
}
@media screen and ( max-width: 900px ) {
    footer {
        padding-top: 162px;
    }
    .footer_logo {
        margin-right: 0;
        padding: 0 30px;
    }
    .footer_logo img {
        max-width: 224px;
    }
    .footer_logo span {
        font-size: 16px;
        margin-top: 14px;
    }
    .footer_gnav {
        display: block;
        padding: 0 30px;
    }
    .footer_gnav > :not(:last-child) {
        margin: 0 0 29px;
    }
    .copyright {
        padding: 0 30px;
    }
    /* -- footerBox01 -- */
    .footerBox01 {
        margin-top: 78px;
        padding: 42px 30px 43px;
    }
    .footerBox01_gnav {
        display: block;
    }
    .footerBox01_gnav > :not(:last-child) {
        margin: 0 0 15px;
    }
    .footerBox01_gnav a {
        font-size: 10px;
    }
}


/*
    pageTit
*/
#pageTit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0;
    min-height: 144px;
}
#pageTit h1 {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s, transform 0.6s;
}
/* on */
#pageTit h1.on {
    transform: translateY(0); 
    opacity: 1;
}
/* - icon - */
.icon#pageTit {
    position: relative;
}
.icon#pageTit .inner {
    position: relative;
    z-index: 20;
}
.icon#pageTit::after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0 0 0 1px;
    max-width: 460px;
    width: 100%;
    height: 330px;
    background: url(../img/common/bg_circle.svg) no-repeat center / contain;
    content: "";
    opacity: 0;
    transform: translate(-50%, -50%) scale(.8);
    transition: opacity 0.6s, transform 0.6s;
}
.icon#pageTit h1 {
    text-align: center;
}
/* on */
.on.icon#pageTit::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
@media screen and ( max-width: 900px ) {
    #pageTit {
        padding: 20px 0 10px 0;
        min-height: 130px;
    }
    #pageTit h1 {
        font-size: 20px;
    }
    /* - icon - */
    .icon#pageTit {
        justify-content: center;
    }
    .icon#pageTit::after {
        margin: -12px 0 0 0px;
        padding-top: 61%;
        height: 0;
        max-width: 316px;
    }
}


/*
    contents
*/
#contents {
    padding: 74px 0 93px;
    background: #fff;
}
#contents > .inner:first-child > :first-child {
    margin-top: 0;
}
#contents > .inner:first-child > :last-child {
    margin-bottom: 0;
}
/* - bgNone - */
.bgNone#contents {
    position: relative;
    padding: 12px 0 0;
    background: none;
    z-index: 20;
}
@media screen and ( max-width: 900px ) {
    #contents {
        padding: 57px 0 75px;
    }
    /* - bgNone - */
    .bgNone#contents {
        padding: 0;
    }
}

/* -- bgWhite -- */
.bgWhite {
    margin-bottom: 152px;
    padding: 152px 0 160px;
    background: #fff;
}
@media screen and ( max-width: 900px ) {
    .bgWhite {
        margin-bottom: 113px;
        padding: 113px 0 120px;
    }
}

/* -- h -- */
/* - h3 - */
h3 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    margin: 68px 0 29px;
}
@media screen and ( max-width: 900px ) {
    h3 {
        font-size: 18px;
        margin: 50px 0 30px;
    }
}

/* - h4 - */
h4 {
    margin-top: 28px;
    font-weight: bold;
}
@media screen and ( max-width: 900px ) {
    h4 {
        margin-top: 25px;
    }
}

/* -- list --*/
.list > li {
    text-indent: -1em;
    padding-left: 1em;
}
/* listNum */
.listNum > li {
    text-indent: -1.5em;
    padding-left: 1.5em;
}
.listNum > li > span {
    text-align: right;
    display: inline-block;
    width: 1.5em;
}

/* -- btn --*/
.btn {
    margin: 0 auto 0;
    max-width: 208px;
}
.btn a {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
    color: #25387c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 68px;
    padding: 0 15px 2px;
    border: 2px solid #25387C;
    border-radius: 5px;
    transition: color .6s, border .6s;
}
.btn a svg {
    margin-left: 10px;
    fill: #25387c;
    transition: fill .3s;
}
/* mail */
.btn.mail a svg {
    margin: 0 10px 0 0;
}
@media screen and ( min-width: 901px ) {
    /* hover */
    .btn a:hover {
        color: #009DE2;
        border-color: #009DE2;
        opacity: 1;
    }
    .btn a:hover svg {
        fill: #009DE2;
    }
}

/* -- faqBox -- */
.faqBox dl {
    border: 2px solid #25387C;
    border-radius: 5px;
    background: #fff;
}
.faqBox dl:not(:last-child) {
    margin-bottom: 10px;
}
.faqBox dt a {
    font-weight: bold;
    line-height: 1.5;
    color: #25387C;
    display: block;
    position: relative;
    padding: 34px 55px 34px 39px;
    transition: color .3s, padding .3s, background .3s;
}
.faqBox dt a svg {
    position: absolute;
    top: 50%;
    right: 37px;
    fill: #25387C;
    transform: translateY(-50%);
    transition: margin .3s, fill .3s, transform .3s;
}
.faqBox dd {
    display: none;
    padding: 34px 40px 30px 40px;
}
/* open */
.faqBox dt.open a {
    padding-bottom: 36px;
    background: #FFF500;
}
.faqBox dt.open svg {
    margin-top: -1px;
    transform: translateY(-50%) scale(1,-1);
}
@media screen and ( min-width: 901px ) {
    /* hover */
    .faqBox dt a:hover {
        color: #009DE2;
        opacity: 1;
    }
    .faqBox dt a:hover  svg {
        fill: #009DE2;
    }
}
@media screen and ( max-width: 900px ) {
    .faqBox dt a {
        padding: 25px 61px 26px 28px;
    }
    .faqBox dt a svg {
        right: 28px;
    }
    .faqBox dd {
        padding: 26px 28px 23px;
    }
    /* open */
    .faqBox dt.open a {
        padding-bottom: 25px;
    }
}

/* -- whiteCntBox -- */
.whiteCntBox {
    overflow: hidden;
    background: #FFF;
    border-radius: 20px;
}
.whiteCntBox_inner {
    padding: 75px 66px 73px;
}
.whiteCntBox_inner > :first-child {
    margin-top: 0;
}
/* - whiteCntBox_contect - */
.whiteCntBox_contect {
    padding: 51px 66px 60px;
    background: #FFF500;
}
.whiteCntBox_contect .tit {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
}
.whiteCntBox_contect .btn {
    margin-top: 21px;
    max-width: 520px;
}
.whiteCntBox_contect .btn a {
    padding-bottom: 0;
    height: 94px;
    border: 2px solid #25387C;
    border-radius: 5px;
    transition: color .3s, border .3s;
}
.whiteCntBox_contect .btn span {
    display: none;
}
@media screen and ( min-width: 901px ) {
    /* hover */
    .whiteCntBox_contect .btn a:hover {
        border-color: #009DE2;
    }
}
@media screen and ( max-width: 900px ) {
    .whiteCntBox {
        border-radius: 12px;
    }
    .whiteCntBox_inner {
        padding: 40px 30px;
    }
    /* - whiteCntBox_contect - */
    .whiteCntBox_contect {
        padding: 51px 30px 60px;
    }
    .whiteCntBox_contect .tit {
        font-size: 16px;
    }
    .whiteCntBox_contect .btn {
        margin-top: 25px;
    }
    .whiteCntBox_contect .btn a {
        height: 68px;
    }
}

/* -- tableBox -- */
.tableBox > {
    margin-top: 35px;
}
.tableBox > table {
    font-size: 14px;
    width: 100%;
}
.tableBox > table > * > tr > th,
.tableBox > table > * > tr > td{
    border-top: 1px solid #DEDEDE;
    border-bottom: 1px solid #DEDEDE;
}
.tableBox > table > * > tr > th {
    font-weight: bold;
    line-height: 1.5;
    width: 210px;
    padding: 37px 20px 0;
}
.tableBox > table > * > tr > td > table th {
    font-weight: normal;
}
.tableBox > table > * > tr > td {
    line-height: 2;
    padding: 33px 20px 33px 0;
}
.tableBox > table > * > tr > td > :first-child {
    margin-top: 0;
}
.tableBox > table > * > tr > td > :last-child {
    margin-bottom: 0;
}
@media screen and ( max-width: 900px ) {
    .tableBox > {
        margin-top: 30px;
    }
    .tableBox > table {
        font-size: 13px;
    }
    .tableBox > table > * > tr > th {
        width: 90px;
        padding: 23px 10px 0 0;
    }
    .tableBox > table > * > tr > td {
        padding: 20px 0;
    }
}


/*
    js
*/
/* -- 'inview' フェードプラグイン -- */
/* フェードアップ */
.fadeUp {   
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 0.6s, transform 0.6s;
}
.on.fadeUp {
    transform: translateY(0); 
    opacity: 1;
}
/* 子要素 */
.fadeUpItem > * {   
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 0.6s, transform 0.6s;
}
.fadeUpItem > *.on {
    transform: translateY(0); 
    opacity: 1;
}
/* fadeUp_late */
.fadeUp_late {   
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 0.6s, transform 0.6s;
}
.on.fadeUp_late {
    transform: translateY(0); 
    opacity: 1;
}