/******
font-family: 'Lato', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Zen Kaku Gothic New', sans-serif;
*******/

.ft-lato {
    font-family: 'Lato', sans-serif;
}
.ft-montserrat {
    font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
a:hover,
a:hover img,
button:hover {
    opacity: .8;
    transition-duration: .2s;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
.containers {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* header */
.header {
    background: none;
    margin: auto;
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 92%;
    z-index: 5;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-left {
    display: inline-block;
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.nav-list li:not(:last-child) {
    margin: 0 45px 0 0;
}
.nav-list li.btn {
    margin-right: 10px;
}
.nav-list li a {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}
.nav-list li.login a::before {
    background: url(../images/icon-login.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 25px;
    margin-right: 8px;
    width: 23px;
}
.nav-list li.btn a {
    border: 1px solid #fff;
    border-radius: 50px;
    display: inline-block;
    font-size: 13px;
    overflow: hidden;
    padding: 5px 20px;
    position: relative;
}
.nav-list li.btn a::after {
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    opacity: .1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
.header-menu,
.hamburger-panel {
    display: none;
}
@media screen and (max-width: 1260px) {
    .header {
        background: #f1f1f1;
        padding: 20px 0;
        width: 100%;
    }
    .header-inner {
        margin: 0 auto;
        width: 92%;
    }
    .nav {
        background: #fff;
        height: 100%;
        padding: 75px 20px 50px;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 80%;
        z-index: 8;
    }
    .nav.open {
        right: 0;
    }
    .nav-list {
        display: block;
    }
    .nav-list li {
        display: block;
    }
    .nav-list li:not(:last-child) {
        margin: 0 0 15px 0;
    }
    .nav-list li.login {
        margin: 0 0 25px;
    }
    .nav-list li a {
        color: #333;
    }
    .nav-list li.login a::before {
        background: url(../images/icon-login-b.svg) no-repeat;
        height: 16px;
        margin-right: 0;
    }
    .nav-list li.btn a {
        border: 1px solid #333;
        padding: 15px 20px;
        text-align: center;
        width: 100%;
    }
    /* hamberger */
    .header-menu {
        display: inline-block;
        margin: 0 0 0 15px;
        position: relative;
        text-align: center;
        width: 28px;
        z-index: 9;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 28px;
        height: 23px;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #333;
        border-radius: 4px;
    }
    .header-menu___trigger.active span {
        background-color: #333;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 1px;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 12px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        bottom: -2px;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: -7px;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        bottom: -12px;
    }
    .header-menu___trigger span:nth-of-type(1) {
        animation: header-menu__bar01 .75s forwards;
    }
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .header-menu___trigger span:nth-of-type(3) {
        animation: header-menu__bar03 .75s forwards;
    }
    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        animation: active-header-menu__bar01 .75s forwards;
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        animation: active-header-menu__bar03 .75s forwards;
    }
    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
    .nav-bg {
        background: rgb(0 0 0 / 65%);
        display: none;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 7;
    }
}


/* footer */
.footer {
    background: #333;
    padding: 80px 0;
}
.footer-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1200px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 35px;
    padding-left: 88px;
    position: relative;
    width: 60%;
}
.footer-left::after {
    background: #fff;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
}
.footer-logo {
    width: 25%;
}
.login-btn {
    margin: 25px 0 0;
}
.login-btn a {
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    padding: 5px 25px;
}
.login-btn a::before {
    background: url(../images/icon-login.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 25px;
    margin-right: 8px;
    width: 23px;
}

.footer-links {
    width: 75%;
}
.footer-links__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.footer-links__list li:not(:last-child) {
    margin-right: 35px;
}
.footer-links__list li a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 35px 0 0;
}
.footer-social a {
    display: inline-block;
}
.footer-social a:not(:last-child) {
    margin: 0 25px 0 0;
}

.footer-right {
    padding-left: 35px;
    text-align: center;
    width: 40%;
}
.footer-right p {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 15px;
}
.footer-right p::before,
.footer-right p::after {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 20px;
    width: 24px;
}
.footer-right p::before {
    background-image: url(../images/icon-fukidashi-l-w.svg);
    margin-right: 10px;
}
.footer-right p::after {
    background-image: url(../images/icon-fukidashi-r-w.svg);
    margin-left: 10px;
}
.footer-applications {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-applications a {
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    padding: 10px 25px;
    position: relative;
    text-align: center;
    width: 49.5%;
}
.footer-applications a:first-child {
    margin-right: 10px;
}
.footer-applications a::after {
    background: #fff;
    content: "";
    height: 100%;
    opacity: .1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.copyright {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    margin: 25px 0 0;
    text-align: right;
}

@media screen and (max-width: 1260px) {
    .footer-left {
        margin: 0 0 25px;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 25px;
        width: 100%;
    }
    .footer-left::after {
        height: 1px;
        right: inherit;
        left: 0;
        bottom: 0;
        top: inherit;
        width: 100%;
    }
    .footer-right {
        padding-left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .footer {
        padding: 50px 0;
    }
    .footer-left {
        flex-wrap: wrap;
    }
    .footer-logo {
        margin: 0 0 20px;
        text-align: center;
        width: 100%;
    }
    .login-btn a {
        width: 100%;
    }
    
    .footer-links {
        width: 100%;
    }
    .footer-links__list {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .footer-links__list li {
        margin: 0 0 15px;
        width: 49%;
    }
    .footer-links__list li:not(:last-child) {
        margin-right: 0;
    }
    
    .footer-social {
        margin: 25px 0 0;
    }
    
    .footer-applications {
        flex-wrap: wrap;
    }
    .footer-applications a {
        padding: 10px 0;
        width: 100%;
    }
    .footer-applications a:first-child {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

.header-after {
    /*background: #f1f1f1;*/
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid #333;
    padding: 15px 0;
    position: fixed;
    top: -500px;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header-after.fixed {
    top: 0;
}
.header-after__inner {
    margin: 0 auto;
    width: 96%;
}
.header-after__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.header-after__left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 35px;
    padding-left: 50px;
    position: relative;
    width: 60%;
}
.header-after__left::after {
    background: #333;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
}
.header-after__logo {
    width: 250px;
}
.header-after__logo p {
    color: #333;
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 12px;
}
.header-after__login-btn a {
    border: 1px solid #333;
    border-radius: 50px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 10px auto;
    padding: 3px 25px;
    max-width: max-content;
}
.header-after__login-btn a::before {
    background: url(../images/icon-login-b.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 25px;
    margin-right: 8px;
    width: 23px;
}

.header-after__links {
    width: calc(100% - 250px);
}
.header-after__links-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-after__links-list li:not(:last-child) {
    margin-right: 25px;
}
.header-after__links-list li a {
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

.header-after__right {
    padding-left: 35px;
    text-align: center;
    width: 40%;
}
.header-after__right p {
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
}
.header-after__applications {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-after__applications a {
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    padding: 10px 25px;
    position: relative;
    text-align: center;
    width: 49.5%;
}
.header-after__applications a:first-child {
    background: rgb(252,108,110);
    background: linear-gradient(176deg, rgba(252,108,110,1) 0%, rgba(255,0,108,1) 100%);
    margin-right: 10px;
}
.header-after__applications a:last-child {
    border: 1px solid #FF0E6D;
    color: #FF0E6D;
    margin-right: 10px;
}
.header-after__applications a::after {
    background: #fff;
    content: "";
    height: 100%;
    opacity: .1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
@media screen and (max-width: 1260px) {
    .header-after {
        display: none;
    }
}
.login_explain{
    margin-top: 20px;
}