@charset "UTF-8";
.footer {
    background: #F8F8F8;
    padding: 120px 0;
}
.footer .f_logo {
    text-align: center;
    margin-bottom: 60px;
}
.footer .f_copy {
    text-align: center;
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
}
/*パンくず*/
.c-breadcrumbs{
    border-bottom: 1px solid #F9F9F9;
    border-top: 1px solid #F9F9F9;
    padding: 0 30px;
}
.c-breadcrumbs ul{
    letter-spacing: -.04em;
    font-size: 12px;
    line-height: 1;
    color: #9D9C9B;
    padding: 16px 20px;
}
.c-breadcrumbs li{
    letter-spacing: normal;
    display: inline-block;
    position: relative;
    padding-right: 40px;
}
.c-breadcrumbs li:before {
    content: '|';
    display: block;
    position: absolute;
    top: 0;
    right: 16px;
    color: #3B3A38;
}
.c-breadcrumbs li:last-child{
    padding-right: 0;
}
.c-breadcrumbs li:last-child:before {
    content: none;
}
.c-breadcrumbs li a{
    display: block;
    color: #3B3A38;
    text-decoration: underline;
}
/*ボタン*/
.c-btn {
    width: 100%;
    max-width: 408px;
    height: 90px;
    margin: 0;
    background: #fff;
    border-radius: 100vh;
    overflow: hidden;
}
.c-btn a {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    color: #fff;
    background: #02B381;
    overflow: hidden;
}
.c-btn a:after {
    content: '';
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: all .2s ease-out;
    z-index: 1;
    border-radius: 100vh;
}
.c-btn a:before {
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff url(../svg/icn_arw_r.svg) no-repeat center / auto 10px;
    z-index: 2;
}
.c-btn a span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #02B381;
    border-radius: 100vh;
    position: relative;
    z-index: 3;
}
.c-lnk a {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .02em;
    text-decoration-line: underline;
    color: #006CAF;
    position: relative;
    padding-right: 34px;
}
.c-lnk a:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background:#032F4A url(../svg/icn_arw_r_w.svg) no-repeat center / auto 8px;
    border-radius: 50%;
    z-index: 1;
}
.c-lnk.is-window a {
    padding-right: 24px;
}
.c-lnk.is-window a:before {
    width: 16px;
    height: 16px;
    background: url(../svg/icn_window.svg) no-repeat center / 100% auto;
    border-radius: 0;
}
@media (min-width: 767px) {
    .c-btn a:hover {
        color: #02B381;
    }
    .c-btn a:hover:before {
        background: #02B381 url(../svg/icn_arw_r_w.svg) no-repeat center / auto 10px;
    }
    .c-btn a:hover::after {
        transform: scale(1, 1);
    }
    .c-lnk a:hover {
        text-decoration: none;
    }
    .floating_box {
        display: none;
    }
}
@media (min-width: 767px) {}
@media only screen and (max-width:1320px) {
    .pageLnk_box li .ttl {
        font-size: 20px;
    }
}
/*tab*/
@media only screen and (max-width:1024px) {}
/*sp*/
@media only screen and (max-width:767px) {
    .footer {
        padding: 60px 0;
    }
    .footer .f_logo {
        margin-bottom: 40px;
    }
    .footer .f_copy {
        font-size: 10px;
    }
    .floating_box {
        opacity: 0;
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
        padding: 20px;
        position: fixed;
        background: rgba(34, 34, 34, .2);
        transition: all .2s ease-out;
        z-index: 99;
        box-sizing: border-box;
    }
    .floating-btn {
        margin: 0 auto;
    }
    .floating_box.is-active {
        opacity: 1;
        animation: slideinBottom .2s forwards;
    }
    .floating_box.is-disappear {
        animation: slideoutBottom .2s forwards;
    }

    /*パンくず*/
    .c-breadcrumbs{
        padding: 0 13px;
        overflow-x: auto;
        white-space: nowrap;
    }
    .c-breadcrumbs ul{
        padding: 8px 10px;
        font-size: 10px;
    }
    .c-breadcrumbs li {
        padding-right: 20px;
    }
    .c-breadcrumbs li:before {
        right: 6px;
    }
    /*ボタン*/
    .c-btn {
        max-width: 335px;
        height: 52px;
    }
    .c-btn a {
        font-size: 16px;
    }
    .c-btn a:before {
        width: 20px;
        height: 20px;
        right: 16px;
        background: #fff url(../svg/icn_arw_r.svg) no-repeat center / auto 8px;
    }
    .c-lnk a {
        font-size: 14px;
        letter-spacing: normal;
        padding-right: 25px;
    }
    .c-lnk a:before {
        width: 20px;
        height: 20px;
        background:#032F4A url(../svg/icn_arw_r_w.svg) no-repeat center / auto 6px;
    }
}
@media only screen and (max-width:374px) {
}